project.pbxproj
296.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 55;
objects = {
/* Begin PBXBuildFile section */
02D5000445A4FBEBCD27BE7A48F0829C /* YTKNetworkConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = A0DF11B9B90D68D17CFD79E0C0840170 /* YTKNetworkConfig.h */; settings = {ATTRIBUTES = (Public, ); }; };
03AF2A93F5B7519A33E3A4677CDE4F80 /* LOTShapeGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = C73C633D2D1D231087507229F4DAB08C /* LOTShapeGroup.m */; };
04037A19BB275F2FB4DC9F3C666C35CC /* LOTAnimationView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B25FD6E412EB223E19EFE47E59F3D4C /* LOTAnimationView.h */; settings = {ATTRIBUTES = (Public, ); }; };
046E83953D783D49245523D90B98CA6E /* LOTValueDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 24AD303229F864285706532BCCA40D30 /* LOTValueDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; };
04E242ED3B8C861226107AB8E68E737D /* DKDeallocBlockExecutor.m in Sources */ = {isa = PBXBuildFile; fileRef = 602CA2316962D466C4C5A35ABB54B102 /* DKDeallocBlockExecutor.m */; };
0657D4DC83217DC0615F294A221A4F65 /* UICollectionViewLayout+MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E0879CEF70A330E06035EA9A35E8399 /* UICollectionViewLayout+MJRefresh.h */; settings = {ATTRIBUTES = (Public, ); }; };
0803D9CF7CD8FC91FDDC39FA623C6B7F /* YTKRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = A3D6B2BDFDB40AE097E5E5893BD38503 /* YTKRequest.h */; settings = {ATTRIBUTES = (Public, ); }; };
081DA827362980D6F4A4602BEF0EF22F /* LOTCircleAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = 43F7F99119D1D6D61A0D9B875C598CCE /* LOTCircleAnimator.h */; settings = {ATTRIBUTES = (Project, ); }; };
0896BA0FC3113D8D3567543842AD4577 /* LOTNumberInterpolator.m in Sources */ = {isa = PBXBuildFile; fileRef = 784448F449C5717E29CBDD8190BE451A /* LOTNumberInterpolator.m */; };
098015716DECD51327A865F29D796FDC /* LOTCacheProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = E55F952FDE6D41A2F9197F5078267F97 /* LOTCacheProvider.h */; settings = {ATTRIBUTES = (Public, ); }; };
0A6CEE3ED9385F8B66335312779F815A /* LOTTransformInterpolator.m in Sources */ = {isa = PBXBuildFile; fileRef = B347BE1D1529C9E7BF073F6E5C2BE554 /* LOTTransformInterpolator.m */; };
0ABF5D1A2685BE8F02A0487420CDE8AD /* AFNetworkReachabilityManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DF7C35E0CDB0FDBF14749EE9592A107E /* AFNetworkReachabilityManager.m */; };
0C2B982E13439C810B851631AB967B0F /* UICollectionViewLayout+MJRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = 201EFE15B37924EB2402B078443E946B /* UICollectionViewLayout+MJRefresh.m */; };
0DFEE1F5C97FB5B6D46D36F2E42C1FF4 /* LOTBlockCallback.m in Sources */ = {isa = PBXBuildFile; fileRef = D59913EE7F81B153BD9A0A041C21D378 /* LOTBlockCallback.m */; };
0EC6337259A69E07948F88DB414C525D /* LOTBlockCallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F6C38BCF12484784188EC7CE37EA4BC /* LOTBlockCallback.h */; settings = {ATTRIBUTES = (Public, ); }; };
0F72ED315E833DCB3097A6318C84AE90 /* LOTPlatformCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = E8F5EC2664AA0308A7A2D8DFD0CD6FF8 /* LOTPlatformCompat.h */; settings = {ATTRIBUTES = (Project, ); }; };
1153C1B712629437689DCD04EFFB7D94 /* DOUAudioAnalyzer_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A3FE285E20C260DD490DD148F38B21C /* DOUAudioAnalyzer_Private.h */; settings = {ATTRIBUTES = (Public, ); }; };
11A5B17DB2BD565785D41F676BC53454 /* LOTPolystarAnimator.m in Sources */ = {isa = PBXBuildFile; fileRef = 10AE3CC9C1C22576B34BE9422AF6824F /* LOTPolystarAnimator.m */; };
12F5065A2306C56B4D600B72844D4969 /* UITextView+Keyboard.m in Sources */ = {isa = PBXBuildFile; fileRef = 6FBE6A405F12ECDA303062D0A964D78C /* UITextView+Keyboard.m */; };
12F64A9D7E5673CECA569A1462B3D1AF /* LOTAnimationView_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E4CC0F7AC78A2003637121F37EDF611 /* LOTAnimationView_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; };
1362879B6EBBDB660FA95A0BCBD83ADB /* YTKNetworkAgent.h in Headers */ = {isa = PBXBuildFile; fileRef = C31D3A26DF0CDC076253740C6924E62C /* YTKNetworkAgent.h */; settings = {ATTRIBUTES = (Public, ); }; };
13ACF311E6BE1C4DEEBBACC7A10D92D0 /* NSLayoutConstraint+MASDebugAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = FB885F6217AE96EB81A8A33BB8502DE1 /* NSLayoutConstraint+MASDebugAdditions.m */; };
145162F0673671280564A7568B9CE946 /* YTKNetworkConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = C25BDB2368273A0425794BF483E40793 /* YTKNetworkConfig.m */; };
156EEB480244352EA696B9ACFBC630B4 /* LOTSizeInterpolator.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C0F96170E49DA074217EE798874CED8 /* LOTSizeInterpolator.m */; };
16108DB654C0BF02C69DA959F0B836F2 /* AFCompatibilityMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = AD901BFAEB4A03B20B73ED487B38F6CB /* AFCompatibilityMacros.h */; settings = {ATTRIBUTES = (Public, ); }; };
161F1F9CD2FA15625ADE4A50A248B8B6 /* LOTPathAnimator.m in Sources */ = {isa = PBXBuildFile; fileRef = 60A132FCD8669BFB528A6F4619E8AF5E /* LOTPathAnimator.m */; };
176ED908B871ED3C4D2039623BC65D26 /* LOTAnimatedSwitch.m in Sources */ = {isa = PBXBuildFile; fileRef = A7875588CD22164AC76D5D5A1BB55E66 /* LOTAnimatedSwitch.m */; };
17E421C98723F6517F7C7A6F053E5446 /* View+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A8921E310DE45E2E874FB6DAB10F17E /* View+MASAdditions.m */; };
183C62707FDA16E5CA6C6298499C9572 /* UIButton+Night.m in Sources */ = {isa = PBXBuildFile; fileRef = 36240E93C019765C4A9FD6F4E8AD6996 /* UIButton+Night.m */; };
1910E085B7C6F606F71FFDB94F00E795 /* YTKNetworkPrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 996381E1369121128D1103589BB918BD /* YTKNetworkPrivate.h */; settings = {ATTRIBUTES = (Private, ); }; };
1A13EBFF81CCAFA921CB77FCDB0B5D71 /* UIImageView+Night.m in Sources */ = {isa = PBXBuildFile; fileRef = 4955544D92C22CB6208729584103A3F5 /* UIImageView+Night.m */; };
1C6FFFDA05385B09348226E01791CCD2 /* MJRefreshHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = B2ADD1145CD107D89FBCAC973273C57E /* MJRefreshHeader.h */; settings = {ATTRIBUTES = (Public, ); }; };
1C8712FFF45A50B4019C3F8633CB0F4B /* NSLayoutConstraint+MASDebugAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = CFBC989B20D135B3A5BD35C3265FF4C8 /* NSLayoutConstraint+MASDebugAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; };
1DBBC7EF53187AE21A076555A67C517F /* UITableView+Night.m in Sources */ = {isa = PBXBuildFile; fileRef = 36AB09707843AF13D7864D98BCBA6C8C /* UITableView+Night.m */; };
1EF6825CB794AB0DE3B9DCF1A883162A /* UITabBar+Night.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DBC92DC3F1D34B8DF7E7E221E09E92F /* UITabBar+Night.m */; };
1F3CF181DF860FD3C9AB3E4A106296B8 /* NSObject+DeallocBlock.m in Sources */ = {isa = PBXBuildFile; fileRef = CD37C86AC1B4AD4870A1D1FA748F3BAA /* NSObject+DeallocBlock.m */; };
1F657AD814056F172645E3C70F2B0797 /* MJRefreshNormalHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 800F86EA6772CF41BA69981379B69D98 /* MJRefreshNormalHeader.m */; };
20B9EF1DA6E590860B6DACEDCF95111E /* MJRefresh.bundle in Resources */ = {isa = PBXBuildFile; fileRef = B0CA88AC42DD1CE1E4CCA088F5C624D4 /* MJRefresh.bundle */; };
21ACF84D3AFC26E51BE6F0DEF5042B3A /* MJRefreshBackFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = C2ACB6289976A8B3F1116083560A0446 /* MJRefreshBackFooter.h */; settings = {ATTRIBUTES = (Public, ); }; };
238963A1E7B6B29A395CA308C36FB5C3 /* UIColor+Expanded.m in Sources */ = {isa = PBXBuildFile; fileRef = 76BD43D94DB949BBB99FF1F04F5F4412 /* UIColor+Expanded.m */; };
24AFF1E1B0760CFD12FFD5A730D6E2E5 /* MJRefreshGifHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E368C24E9D9E4D2BA6890CD8FCF33ED /* MJRefreshGifHeader.m */; };
252FCAFF639706AFE57EF160D2AFFFB9 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 40239DCF733E27443887B5396849AA97 /* Foundation.framework */; };
2543E404B46E3716BA6E62AF20DFE114 /* AFURLRequestSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F1487C4A4E76C82E5A3287CD0BC1533 /* AFURLRequestSerialization.m */; };
25B135B3C48CE9479589AF65659F89F5 /* DOUAudioStreamer-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 466A9FA8C77E9CB0A6C30F4F24ECF234 /* DOUAudioStreamer-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
265CB258B6BA973B771249F03957A3F6 /* YTKBaseRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F0946CA93D8592C4D3CE9DE75A096C3 /* YTKBaseRequest.h */; settings = {ATTRIBUTES = (Public, ); }; };
27410EFA008CAD1451B1B058525A820B /* LOTFillRenderer.m in Sources */ = {isa = PBXBuildFile; fileRef = 11D45238B00A9CFFC97B20A7C931561E /* LOTFillRenderer.m */; };
27953A9F2EF5E713748584C88A6FA090 /* MJRefresh-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DD852E738FA940D1736540B1F83D8E5 /* MJRefresh-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
2798FFC504412F619D3BE6E1741C6C06 /* DKColorTable.m in Sources */ = {isa = PBXBuildFile; fileRef = E899DFA24A5F09D9EA46786CDF1FBFBC /* DKColorTable.m */; };
27CD430AE569BCE091D5DCC5B8356954 /* LOTAssetGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DA3AD85F7E5BB1A45EDF47623C63DB1 /* LOTAssetGroup.h */; settings = {ATTRIBUTES = (Project, ); }; };
293C28D9A9124A73229E21D31C8AE4D2 /* YTKNetworkPrivate.m in Sources */ = {isa = PBXBuildFile; fileRef = 23FC3528B4F7090978D798065DFFD784 /* YTKNetworkPrivate.m */; };
29F203B6D1183F234FDD19D2D1C34711 /* LOTValueInterpolator.m in Sources */ = {isa = PBXBuildFile; fileRef = 19C2B23EFB510F5F8CF5FD64CF0285E3 /* LOTValueInterpolator.m */; };
2A6CD01CFF3243027D4EFEE3C187A4A2 /* DOUAudioStreamer+Options.h in Headers */ = {isa = PBXBuildFile; fileRef = 744A10EC2EA2829494C16CD9C4A4EA6B /* DOUAudioStreamer+Options.h */; settings = {ATTRIBUTES = (Public, ); }; };
2AA8E645D47C517410CB33B074B0FE1D /* DOUAudioFileProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = EC4EB61A12420A3260721120B87C8A17 /* DOUAudioFileProvider.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
2AD7A7F65A1D706D7D23A3C4C9B22981 /* DOUAudioAnalyzer.m in Sources */ = {isa = PBXBuildFile; fileRef = 5992AF29400B9C911020FB23E343774D /* DOUAudioAnalyzer.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
2BC390A79F53DCC85C9EA474204DC0AE /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9064AFA8DB66232749B4424E92986E35 /* AudioToolbox.framework */; };
2C2A591675380BD59160A70596E37405 /* DKColorTable.txt in Resources */ = {isa = PBXBuildFile; fileRef = 7AFC52F98F310F7EC8B55BAC3444B96C /* DKColorTable.txt */; };
2C98045755C0E2AF3CA66E61CDC28C30 /* UIScrollView+MJRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E0ED0C8BFC0CAB759F10D4ED087BA38 /* UIScrollView+MJRefresh.m */; };
2D14774BA94FB6D4D7A95BBDC6306EC1 /* AVFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B84C8C9BEBE7AF686C6FC022B4EB6EDE /* AVFoundation.framework */; };
2F8B76B9E868DB260C4F045E232A71F0 /* LOTKeyframe.h in Headers */ = {isa = PBXBuildFile; fileRef = F32EB0153330F5040AF72815E6176FB7 /* LOTKeyframe.h */; settings = {ATTRIBUTES = (Project, ); }; };
2FADF1885E1D1AEAA0CEFF7B75D856F5 /* YTKRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = BB7002C79FB3BDB39B3C584E921588A9 /* YTKRequest.m */; };
31A97D95846A95A3CDCD89D2E10D537A /* UILabel+Night.h in Headers */ = {isa = PBXBuildFile; fileRef = B84974AD255DDCB2D9471E5CA1B01F06 /* UILabel+Night.h */; settings = {ATTRIBUTES = (Public, ); }; };
31C1A39801DB6AA0A99FFB9D378D3BF5 /* MJRefreshBackStateFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 91F04B77F00D5EDD1BC6C2B3495435D6 /* MJRefreshBackStateFooter.m */; };
32A3B90E1DA5E298CF75DC333F0797DB /* DOUMPMediaLibraryAssetLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = E4CD94A4D745B48F1F69DA1302A2F9A1 /* DOUMPMediaLibraryAssetLoader.h */; settings = {ATTRIBUTES = (Public, ); }; };
3302B437FB0319DB6A707F6EB2489433 /* CALayer+Compat.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FDD571DC1815947E186D0422820CE90 /* CALayer+Compat.h */; settings = {ATTRIBUTES = (Project, ); }; };
342832AC03415E98B954724E102E2460 /* DOUAudioRenderer.h in Headers */ = {isa = PBXBuildFile; fileRef = 66EE8C3A6191688DA4C5575479DE95D8 /* DOUAudioRenderer.h */; settings = {ATTRIBUTES = (Public, ); }; };
343E42E9E5DC25FF8557F7DBA95ACE00 /* LOTShapeGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = 9167ACC5D02210ABACC44C7625293F1C /* LOTShapeGroup.h */; settings = {ATTRIBUTES = (Project, ); }; };
34D4434E77392B76C10D2C74A80BC2AE /* LOTRepeaterRenderer.m in Sources */ = {isa = PBXBuildFile; fileRef = 75DF7A190E94A8C1EE9DCAC9AAB70EAF /* LOTRepeaterRenderer.m */; };
34E0F61A11E3FBA7083F9A22AE9154DE /* UIColor.h in Headers */ = {isa = PBXBuildFile; fileRef = CDDD290395FA4622C9C17DDA5B2D8201 /* UIColor.h */; settings = {ATTRIBUTES = (Project, ); }; };
35EF7B36FB65F624A266CFB28F938071 /* DKNightVersionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E65B48364E74932515716B39797BC88 /* DKNightVersionManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
36279D60EF04C1CE153B7EFD202E59FA /* LOTShapeRectangle.h in Headers */ = {isa = PBXBuildFile; fileRef = 169C768D9FD3DF6902037E43E7DB5F04 /* LOTShapeRectangle.h */; settings = {ATTRIBUTES = (Project, ); }; };
36670AD1898E899C385935E9C29DB90E /* MJRefreshNormalTrailer.m in Sources */ = {isa = PBXBuildFile; fileRef = D1E9EB4575398BBA07631D4059AC9CA6 /* MJRefreshNormalTrailer.m */; };
36D25059495F758FA107CE6584B0CDCA /* LOTBezierPath.h in Headers */ = {isa = PBXBuildFile; fileRef = 7155D86374D8DB1E9BC0D48353BC60C0 /* LOTBezierPath.h */; settings = {ATTRIBUTES = (Project, ); }; };
385A27F1875FC2533785843DB6EF4E9C /* LOTPointInterpolator.m in Sources */ = {isa = PBXBuildFile; fileRef = 09AD15214EEA5C1408DFDE90E117FE5F /* LOTPointInterpolator.m */; };
3947D838F9A713BCCDB9ED0B6A8C06F3 /* Accelerate.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9FC2034AEDC5DCD5C569A6113CB40617 /* Accelerate.framework */; };
39A102466A4B1537232C487A7448621E /* AFURLSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 08D4C2EFADDD476F82A38440680A095D /* AFURLSessionManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
3AC156F7E92F061DC5FFD52630229DF0 /* UINavigationBar+Night.m in Sources */ = {isa = PBXBuildFile; fileRef = 4CB15A09E29AB66E6E4BEB4E774B49D7 /* UINavigationBar+Night.m */; };
3C6F1F26278EC9DF6F6A883DC3734320 /* LOTAnimationCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 777D73BA1E02F055337F002C73AB52C7 /* LOTAnimationCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
3D8428F8DB547200D5BC29AE5F0DF79A /* NSData+DOUAudioMappedFile.m in Sources */ = {isa = PBXBuildFile; fileRef = 21F41C325F87DFB4AAEF0EC3371B793C /* NSData+DOUAudioMappedFile.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
3F0A04DF5A70AF3DA6408108F7E49931 /* MASConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = CCD741B544713327A5D8FE930712A33A /* MASConstraint.m */; };
3F0EAFEB354CBFFC295324A619F9834E /* LOTShapePath.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E156CBB0E5AD1FD6BF282CB32A6F475 /* LOTShapePath.h */; settings = {ATTRIBUTES = (Project, ); }; };
3FE7716F15677833DB9E94FD84135A17 /* LOTLayer.m in Sources */ = {isa = PBXBuildFile; fileRef = 7266C66A1B0F62ED940CE889DDE8F17B /* LOTLayer.m */; };
3FEC4F670C6B70803EE21A0C2AC4FAB6 /* LOTPolygonAnimator.m in Sources */ = {isa = PBXBuildFile; fileRef = 708047F5C44B8110BBF7D726BCC2A9B3 /* LOTPolygonAnimator.m */; };
41476E6284BFFC9E9351332D777EF0D5 /* LOTRadialGradientLayer.m in Sources */ = {isa = PBXBuildFile; fileRef = BB118885A8CB138E63F1E2FC81868730 /* LOTRadialGradientLayer.m */; };
43015BB3E702972D85714D0103C6C3D7 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B29AE21AB4E356640AB7A031CAA89D90 /* UIKit.framework */; };
444828D554CB824DD52A3AC117220BE0 /* UISwitch+Night.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BB5DDEDEDFF4FD937167FD7EB65F92F /* UISwitch+Night.h */; settings = {ATTRIBUTES = (Public, ); }; };
44BA7053E79E7A549399E51E01766BFD /* AFNetworkReachabilityManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B027CC1F4AA182A8E45B537109DCECC2 /* AFNetworkReachabilityManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
4629E91715401FE727212EBFC38B94D7 /* LOTCompositionContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 76EC770CF24EB9D4E250DA8EB20FC735 /* LOTCompositionContainer.m */; };
46901BF37B6B07B6A4F2078A856E69B8 /* AFURLResponseSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B4814608EA6E5717652A9D3F17AF0E9 /* AFURLResponseSerialization.h */; settings = {ATTRIBUTES = (Public, ); }; };
46E703E182D6D4FA13DCC8327EAEFD0E /* UISearchBar+Night.m in Sources */ = {isa = PBXBuildFile; fileRef = EEA7B0DAA3D60180B608E588057E3A49 /* UISearchBar+Night.m */; };
475D94662C1FE687EF23A4757FE1A4A2 /* UIView+Night.m in Sources */ = {isa = PBXBuildFile; fileRef = C39DD83EEA0A4B82B2CDB10C23711C8E /* UIView+Night.m */; };
4766E55AD2ED7461ADB7092090B13712 /* LOTAnimationTransitionController.m in Sources */ = {isa = PBXBuildFile; fileRef = FAD07CD388F19EABA4DAB33A843CCF85 /* LOTAnimationTransitionController.m */; };
487B45678CA1B5EF6D5E2AF02869C154 /* AFSecurityPolicy.h in Headers */ = {isa = PBXBuildFile; fileRef = F0B7EC6D2C3A7C71BE2F81C8A916F25E /* AFSecurityPolicy.h */; settings = {ATTRIBUTES = (Public, ); }; };
49BFC1E6E62CA5276F567DB64E873DE8 /* DOUAudioStreamer.h in Headers */ = {isa = PBXBuildFile; fileRef = 5284F2846ACDB26A89D66FB2791EE999 /* DOUAudioStreamer.h */; settings = {ATTRIBUTES = (Public, ); }; };
4A3984662156041F48EB192AB2FFCBD8 /* UIBezierPath.h in Headers */ = {isa = PBXBuildFile; fileRef = E2C3504119384AB1F5626C6F75B2A687 /* UIBezierPath.h */; settings = {ATTRIBUTES = (Project, ); }; };
4B4D62228F246506C48E4E7F4162D5F0 /* LOTHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = B58014613EDC25BE502C268732F1E255 /* LOTHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; };
4D8AB296B342FE19643BEAEFCB302734 /* LOTRepeaterRenderer.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FF71BFCAD6E6C2B0FF49A95D4A1F35D /* LOTRepeaterRenderer.h */; settings = {ATTRIBUTES = (Project, ); }; };
4E3934273A0DAA2F2E9B679C36060E31 /* DOUAudioVisualizer.h in Headers */ = {isa = PBXBuildFile; fileRef = E51DC641A168177D87153251EF0E1DB5 /* DOUAudioVisualizer.h */; settings = {ATTRIBUTES = (Public, ); }; };
4F0165685E582931FB882B65428CC597 /* DOUAudioDecoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 24F6DD8DABE0E799647744F2ED4DF475 /* DOUAudioDecoder.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
4F58331CE72A14DB358A051715D16332 /* CALayer+Night.m in Sources */ = {isa = PBXBuildFile; fileRef = F618D89CF0B476D70FA909FDC04377BE /* CALayer+Night.m */; };
4F629BD1AA5B58116A777B17E501EBA9 /* CoreAnimation+Night.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B8B6D7E7072E552CA72FDE187E18C6D /* CoreAnimation+Night.h */; settings = {ATTRIBUTES = (Public, ); }; };
4F744D7E7A43E19801C059337D720B6D /* MJRefreshTrailer.m in Sources */ = {isa = PBXBuildFile; fileRef = FCF7F80E41DE974667B4A74CEC3352D4 /* MJRefreshTrailer.m */; };
4F7A4D29F567F70EB554AF053D46DBAB /* MASCompositeConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B3C4280D09E00ACB2565434E5229135 /* MASCompositeConstraint.m */; };
500BD4DC3389E361D838055CC22AA526 /* MASConstraintMaker.h in Headers */ = {isa = PBXBuildFile; fileRef = 18CD35DAEFFDD6B461DF7D619614B5B5 /* MASConstraintMaker.h */; settings = {ATTRIBUTES = (Public, ); }; };
501A31FF697991A128FF7089EF69F71C /* LOTArrayInterpolator.h in Headers */ = {isa = PBXBuildFile; fileRef = EC04551D090E0EE2B81067C4D70F6833 /* LOTArrayInterpolator.h */; settings = {ATTRIBUTES = (Project, ); }; };
50DA3078D5358FB96995A9591F434D9F /* LOTPolygonAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = 90142F0E5BCBAD3CB819B101B03DE2AA /* LOTPolygonAnimator.h */; settings = {ATTRIBUTES = (Project, ); }; };
51EBADC07FB48DAD032EC13144C70023 /* LOTGradientFillRender.m in Sources */ = {isa = PBXBuildFile; fileRef = 567FF3A874D28EBD0F89A512A8D4C480 /* LOTGradientFillRender.m */; };
521A88FF099D4CA69D9DE83EF4A84C26 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A6AF3E29A3D603BE09E494333B8CC1B8 /* CoreAudio.framework */; };
52F9A41D250B132071D6BC693375FBF3 /* NSValue+Compat.m in Sources */ = {isa = PBXBuildFile; fileRef = 773B8FE1B5C8166293E8DC5A37E8FB4A /* NSValue+Compat.m */; };
54C7685F8C3B3C658F0EB16F4FF86CD5 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 40239DCF733E27443887B5396849AA97 /* Foundation.framework */; };
55547A3F48653153E5080A227EBAAB7A /* metamacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 126BB8787CCDB73464481DDE53AC4986 /* metamacros.h */; settings = {ATTRIBUTES = (Public, ); }; };
5585584E49DBB4F5756DCA62A60023B5 /* View+MASShorthandAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 82CCA789264003E10BF25A693DF65D72 /* View+MASShorthandAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; };
55AB6FE8F8BA598B7B0FC0C685DE1454 /* DOUMPMediaLibraryAssetLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = 193914CB6780D49A7C98AC4195C6D031 /* DOUMPMediaLibraryAssetLoader.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
59AA9A4CC65D574D23D309CD1847E01E /* LOTTrimPathNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F285D8F358AE0D31590FD15BD378349 /* LOTTrimPathNode.h */; settings = {ATTRIBUTES = (Project, ); }; };
5A235F94B1E91313BD34C5C9FAF1EE9D /* LOTAsset.h in Headers */ = {isa = PBXBuildFile; fileRef = 51617FC5CC8ACC2E0719A718BAF9CB84 /* LOTAsset.h */; settings = {ATTRIBUTES = (Project, ); }; };
5A6C6AB5E6AB9ACD1E8451F69E7B72E8 /* MediaPlayer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DD571807F88CD734D6B696E966CE85EB /* MediaPlayer.framework */; };
5A7847E142D311F386999B7A0008A9D0 /* CFNetwork.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F0A8D07FB63A5F14AD66B994B5D825D /* CFNetwork.framework */; };
5ABFE502B7BF81FF23AF25002CEDB9F9 /* CALayer+Compat.m in Sources */ = {isa = PBXBuildFile; fileRef = 65A4E843D7541F7D0415C60168283A95 /* CALayer+Compat.m */; };
5B37180BE13A423AE12C3B50890A944B /* MJRefreshBackNormalFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = BABA85DE90D55BAA7158D1A3835D907E /* MJRefreshBackNormalFooter.h */; settings = {ATTRIBUTES = (Public, ); }; };
5BCD165E3D64C11A9AA2FD9D84D90B6A /* UISearchBar+Keyboard.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F37B36EAAD5E1C8F2B119B66E48B5E6 /* UISearchBar+Keyboard.h */; settings = {ATTRIBUTES = (Public, ); }; };
5C2A12CE5AEC662833E00DA9EF76C297 /* UIControl+Night.m in Sources */ = {isa = PBXBuildFile; fileRef = 60877D08910342F8C2C916DA180EEA51 /* UIControl+Night.m */; };
5CC1235E51AD06046E1D72EC118108AC /* UIToolbar+Night.h in Headers */ = {isa = PBXBuildFile; fileRef = 3897DE658B6D903F4D3A4938A65B71AD /* UIToolbar+Night.h */; settings = {ATTRIBUTES = (Public, ); }; };
5D23331D518CE59B37A8C41A2E405DD9 /* LOTValueInterpolator.h in Headers */ = {isa = PBXBuildFile; fileRef = CFC67FADB31FFD4128A65F5C6071741F /* LOTValueInterpolator.h */; settings = {ATTRIBUTES = (Project, ); }; };
5DE3380D5DDFF3091BA7A24953AF1A22 /* YTKChainRequestAgent.h in Headers */ = {isa = PBXBuildFile; fileRef = 361AE60CB5BBC3A7C34F08B1DE755996 /* YTKChainRequestAgent.h */; settings = {ATTRIBUTES = (Public, ); }; };
5DE5D0F36BD8B028870D101D23DA2B5D /* LOTAnimationView_Compat.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D56F0815F496C115CD10B21B0238F29 /* LOTAnimationView_Compat.h */; settings = {ATTRIBUTES = (Public, ); }; };
5F10C24DD0C905B51F550D2BE05DB2BC /* CAShapeLayer+Night.h in Headers */ = {isa = PBXBuildFile; fileRef = E7CD15CAB69CDDDE1A59F4D10B56D145 /* CAShapeLayer+Night.h */; settings = {ATTRIBUTES = (Public, ); }; };
5F58DF119EC4E911E132D6D7585030BF /* NSArray+MASAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 80FF664C4DBC9B7F9090FD21D933ED2D /* NSArray+MASAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; };
5FE2F5EA2B0F22A9469078A26935AC8E /* MJRefreshAutoGifFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D395161AC992A504B27B10DEB1F4F35 /* MJRefreshAutoGifFooter.h */; settings = {ATTRIBUTES = (Public, ); }; };
600C23791956CA47D1DBB7840BE402A6 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 40239DCF733E27443887B5396849AA97 /* Foundation.framework */; };
60589D188772B5D9B154E2B30855F251 /* DOUSimpleHTTPRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 007112B8E007E51F0662A82E24173A2A /* DOUSimpleHTTPRequest.h */; settings = {ATTRIBUTES = (Public, ); }; };
6082516A9FC3FDF2A8C7DF7F08A4A2CA /* LOTShapeTrimPath.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CCACCCD0900270A7B88E53E9215AAE2 /* LOTShapeTrimPath.h */; settings = {ATTRIBUTES = (Project, ); }; };
60F42807F834266817802FA9B06ACB70 /* DOUAudioFilePreprocessor.m in Sources */ = {isa = PBXBuildFile; fileRef = 90599F1CC0564C43B34611D1A1EADD5C /* DOUAudioFilePreprocessor.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
61F4D39C304C95232C11B9AE92D5F38D /* DOUAudioFileProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = D825E201C9C064B75406F3DBA8689A03 /* DOUAudioFileProvider.h */; settings = {ATTRIBUTES = (Public, ); }; };
636033C638168572302DB73AC65768F2 /* UITextView+Night.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EBE227E73654B7E71A69FA5086892ED /* UITextView+Night.h */; settings = {ATTRIBUTES = (Public, ); }; };
63CEBE984A3558F99D2D3E9EB1CE4EAB /* UIBarButtonItem+Night.m in Sources */ = {isa = PBXBuildFile; fileRef = 41F4E72D637E25B4C98E72415C364B52 /* UIBarButtonItem+Night.m */; };
6464DDD84547775F80B9FBF179B10495 /* EXTKeyPathCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A8E17BDC3F49BC6E4C2423FAF712ECC /* EXTKeyPathCoding.h */; settings = {ATTRIBUTES = (Public, ); }; };
65352CD73FACBE20A4CB351B335EE626 /* MJRefreshAutoGifFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 83FDB2D9FCCCDA6E8E10650EAFF24FAF /* MJRefreshAutoGifFooter.m */; };
65C99C6E6854AB021B943AC55A8CE75D /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 40239DCF733E27443887B5396849AA97 /* Foundation.framework */; };
66191AD5B5040B02A189E866E0EE09B0 /* YTKNetwork.h in Headers */ = {isa = PBXBuildFile; fileRef = 573505CC2D55682037E2E204ABF24FC4 /* YTKNetwork.h */; settings = {ATTRIBUTES = (Public, ); }; };
668F28B2532E789C3A1A246FE6EB7340 /* DKNightVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 84C38BC59F69B6E017C8727A2A90319F /* DKNightVersion.h */; settings = {ATTRIBUTES = (Public, ); }; };
6748C9D3146377455E1696C768A75407 /* DKDeallocBlockExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 0781B6C551700F8F309FECCA9C56183B /* DKDeallocBlockExecutor.h */; settings = {ATTRIBUTES = (Public, ); }; };
680C1E9C4B73C0396B5B843AE2F0583F /* Pods-DreamSleep-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A48C755DC564041D0BF299E3121FDC9 /* Pods-DreamSleep-dummy.m */; };
68F14E6AD19EC7FC15743C1899706E10 /* MASViewAttribute.m in Sources */ = {isa = PBXBuildFile; fileRef = 60FDCA37A9CE6F3F4B4E6B4ACBA20C8B /* MASViewAttribute.m */; };
69A7DBF18ACD9627D2F4E82EC742F3A7 /* YTKNetworkAgent.m in Sources */ = {isa = PBXBuildFile; fileRef = BD108548744C7C0DFB36427632B760F4 /* YTKNetworkAgent.m */; };
6A96961D70ADC8DB3C64070583DAB56F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 40239DCF733E27443887B5396849AA97 /* Foundation.framework */; };
6AAFD764B81EB0DAFB9C5E4D6C9ED656 /* AFNetworking-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = CC31489B28DF73F4AB83CACFFCA94C31 /* AFNetworking-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
6B6F5341F78537664CA2A1E89B5C54EA /* NSObject+Night.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B3557C63989F6EE4793DA060355218A /* NSObject+Night.h */; settings = {ATTRIBUTES = (Public, ); }; };
6DC4DDDCA3622966F7111C828137EB15 /* AFURLSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B5E80A3E8E7BEC00CB8D8D086F0D0FFA /* AFURLSessionManager.m */; };
6EACEC963683239305B161A5032B7EF6 /* YTKBaseRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 177B9F09ECC9B92C37422620A4B19385 /* YTKBaseRequest.m */; };
709905E774B1D76DF0767DFCB3C8E632 /* MASConstraint+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E20F2ACB065B6B2B5CDDD493C0B4461 /* MASConstraint+Private.h */; settings = {ATTRIBUTES = (Public, ); }; };
70F7099A60F3FB948894F3115B037FBF /* MJRefresh-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 74339CD86B2AA7944A25D457A602E784 /* MJRefresh-dummy.m */; };
717E4D8FC730D8EA33CAA9D0EA8CD4B8 /* UIScrollView+MJExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 48EC740185C1195E1FD4C0629F98D505 /* UIScrollView+MJExtension.h */; settings = {ATTRIBUTES = (Public, ); }; };
71B8D8EE7E59ECE1B81CF601E9911681 /* YTKChainRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = DE6F7FF2675CE34DD1CC90AA70B68536 /* YTKChainRequest.h */; settings = {ATTRIBUTES = (Public, ); }; };
71C3F8C4391D174FBBA6E788E77CBA79 /* DOUAudioRenderer.m in Sources */ = {isa = PBXBuildFile; fileRef = E2D1205B304D21F7F5AE5B7B5E47E782 /* DOUAudioRenderer.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
7281495FCC10D24DD38192DBB2268022 /* LOTRoundedRectAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = 51377F1C00DBCB333745F740A9C278D0 /* LOTRoundedRectAnimator.h */; settings = {ATTRIBUTES = (Project, ); }; };
74AC9C65ACB43466AC627436BAECFB52 /* DOUAudioLPCM.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FC77E9071580DBCC0F7045ADF00042F /* DOUAudioLPCM.h */; settings = {ATTRIBUTES = (Public, ); }; };
76340B67F76A71FB52C666423EFB885D /* MJRefreshAutoStateFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 7903E21876E0700E9AD13F9CB9C4B754 /* MJRefreshAutoStateFooter.m */; };
76A26368B59D75647A3A785508455CE3 /* UITextView+Keyboard.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D26CDE6993C5FB6484BA271D11AD765 /* UITextView+Keyboard.h */; settings = {ATTRIBUTES = (Public, ); }; };
774CA3A311BECA6FAA68E945749E8A63 /* MJRefreshBackGifFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = A66E9F2F138A5819A623C8F76D228904 /* MJRefreshBackGifFooter.h */; settings = {ATTRIBUTES = (Public, ); }; };
77754A08B4850CB72B151FB08699FB8B /* DOUAudioAnalyzer+Default.m in Sources */ = {isa = PBXBuildFile; fileRef = 5BBEB44913C149647E0C37627E8A8EB8 /* DOUAudioAnalyzer+Default.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
777C62B3E32489BE7D74159C7C5BA53B /* LOTLayer.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F5E929FCC4EA55FEA25F1C3AB027599 /* LOTLayer.h */; settings = {ATTRIBUTES = (Project, ); }; };
782C3DB6B6BDBEC626338B299AA1E5FE /* LOTShapeStroke.h in Headers */ = {isa = PBXBuildFile; fileRef = 5748308DEA2723C323CBC44EDE3D4F8B /* LOTShapeStroke.h */; settings = {ATTRIBUTES = (Project, ); }; };
7944C7FDA637646E33A9774327D4BBC1 /* CGGeometry+LOTAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 54B14D1C0DC60F7978DBD8E40A156E0C /* CGGeometry+LOTAdditions.m */; };
798E55B10C39A13C3C95E3BE78A4905E /* UITabBar+Night.h in Headers */ = {isa = PBXBuildFile; fileRef = 70029D17C6BAE503E327A02129214170 /* UITabBar+Night.h */; settings = {ATTRIBUTES = (Public, ); }; };
7A90DBDC2560667FF769E61EEB099A37 /* LOTShapeRepeater.h in Headers */ = {isa = PBXBuildFile; fileRef = CC372E9573395968BF138BC55CB3D052 /* LOTShapeRepeater.h */; settings = {ATTRIBUTES = (Project, ); }; };
7B6E5CE38B2D56023F0C053425FEB087 /* DOUAudioFile.h in Headers */ = {isa = PBXBuildFile; fileRef = C6A39349F1ECD7AEAA19F734A2E760D5 /* DOUAudioFile.h */; settings = {ATTRIBUTES = (Public, ); }; };
7C60C060128131E0303FCBF5D23C80B6 /* YTKBatchRequestAgent.m in Sources */ = {isa = PBXBuildFile; fileRef = AAE579CD73422C15C2786408ACA11BF8 /* YTKBatchRequestAgent.m */; };
7CD0411D3CFF4930E2B80E582D212C57 /* YTKNetwork-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 80F292E035E92248BB78EA440F764D5B /* YTKNetwork-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
7E34AB92C474F79C935A5C5281C0275D /* MJRefreshHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 9659812BE2E83EA4EA58F7F18D066C08 /* MJRefreshHeader.m */; };
7E87048099B3EADB965FED6141B4E3BA /* LOTShapePath.m in Sources */ = {isa = PBXBuildFile; fileRef = EE81AC45E5A29C1EDDFC6C429FDE54AD /* LOTShapePath.m */; };
7F571401F80340E1F555F6B830A9384E /* LOTAnimatedControl.h in Headers */ = {isa = PBXBuildFile; fileRef = 994A3BF9CFF2DF944FFFBAD9623F4E12 /* LOTAnimatedControl.h */; settings = {ATTRIBUTES = (Public, ); }; };
7FA700F573DE38B8CAE2399E2338A982 /* DOUAudioEventLoop.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E7796708667AB9A5FF920F6728FFA09 /* DOUAudioEventLoop.h */; settings = {ATTRIBUTES = (Public, ); }; };
7FB341922B5FD3302E6208A91A694568 /* LOTColorInterpolator.m in Sources */ = {isa = PBXBuildFile; fileRef = BA97921C8F041A61721662724E85EEF5 /* LOTColorInterpolator.m */; };
7FC3F9641BD28F2A091FB02C83231320 /* MJRefreshStateHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 983999D88CE1EF77A604991D3CBBFC7E /* MJRefreshStateHeader.m */; };
7FD00E591F96028A72861818F1934341 /* UINavigationBar+Night.h in Headers */ = {isa = PBXBuildFile; fileRef = A8FCE61B24E1E9FE036F5E2FC3DFA328 /* UINavigationBar+Night.h */; settings = {ATTRIBUTES = (Public, ); }; };
7FFE645F4E4A1C265D6B02EF6DEDE0A6 /* YTKBatchRequestAgent.h in Headers */ = {isa = PBXBuildFile; fileRef = DF53BFE961B95FA111AD2D987F368D96 /* YTKBatchRequestAgent.h */; settings = {ATTRIBUTES = (Public, ); }; };
8021EA4FB0F5EC5479B56E62C9CD0AF1 /* UIView+MJExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = FFFAC61C3B18BBF5B92710F10AE21401 /* UIView+MJExtension.m */; };
8089D85490976DE75DD107976AAB81C9 /* LOTNumberInterpolator.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FF64BFC0D60A749B42EF46F13319098 /* LOTNumberInterpolator.h */; settings = {ATTRIBUTES = (Project, ); }; };
80D28602DF762C86F47DBB9D337BA0FC /* LOTShapeRepeater.m in Sources */ = {isa = PBXBuildFile; fileRef = A09AAEE52FCD8A6F655DB3C05E334BA2 /* LOTShapeRepeater.m */; };
80E362A0C82067CB0A45E3CC2BB5A1A2 /* DKColorTable.h in Headers */ = {isa = PBXBuildFile; fileRef = 57DC7A922F4091DCA5F040ABC5D1D4BC /* DKColorTable.h */; settings = {ATTRIBUTES = (Public, ); }; };
80FA6BC95D517487F702F394C94EE801 /* LOTAsset.m in Sources */ = {isa = PBXBuildFile; fileRef = A0089BE48A622B9AAAB7C9A8A4331323 /* LOTAsset.m */; };
81DCF44F782B70A4027BA4367753E5D3 /* LOTRadialGradientLayer.h in Headers */ = {isa = PBXBuildFile; fileRef = B44FE26E50E0DAC351D2EBD05BA32A86 /* LOTRadialGradientLayer.h */; settings = {ATTRIBUTES = (Project, ); }; };
82069E8A34A8BD52C8809F61C9B93CF0 /* LOTShapeFill.m in Sources */ = {isa = PBXBuildFile; fileRef = 238096AFEBBF24F18135758E1CCE9D89 /* LOTShapeFill.m */; };
826BF14E0AE52BA8D9A95A63F4AF4C1E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 40239DCF733E27443887B5396849AA97 /* Foundation.framework */; };
82937E6535D33D4C3D143FEBECA18EFC /* DOUAudioVisualizer.m in Sources */ = {isa = PBXBuildFile; fileRef = 71ECA894BFD7462E5F684057392FA0BB /* DOUAudioVisualizer.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
82E4A0B5FBB5C7F2EABC7985187211D1 /* DOUAudioStreamer-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E8D1437B40B455B1119E9044007D413 /* DOUAudioStreamer-dummy.m */; };
8378B61E79B23C9ED4D25BF9C7493C24 /* DOUEAGLView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A6A57277E016E6E5D35518C6240A059 /* DOUEAGLView.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
845BFE42F64A5F0734E9AE76CEA22F0D /* MASUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 97DFCEB67B0583F7FE08DE27B736C4EF /* MASUtilities.h */; settings = {ATTRIBUTES = (Public, ); }; };
846DE65FC723D8E07D922D0AEB8BDF6E /* LOTInterpolatorCallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 997A3EBEEC068C7A7981850CA57CDB04 /* LOTInterpolatorCallback.h */; settings = {ATTRIBUTES = (Public, ); }; };
8593967CB78942AC9A72A70BC300239A /* LOTModels.h in Headers */ = {isa = PBXBuildFile; fileRef = 73D59BA1E88ECEE8C5D31FFE86E23039 /* LOTModels.h */; settings = {ATTRIBUTES = (Project, ); }; };
86BD829EC1CAE0520DCC33C1D2204180 /* MJRefreshStateTrailer.h in Headers */ = {isa = PBXBuildFile; fileRef = A8B5F2693581E7ADE9BA85F4D253FB6E /* MJRefreshStateTrailer.h */; settings = {ATTRIBUTES = (Public, ); }; };
875F4E1418DDEBBB82C043E0F2C2595F /* DKImage.h in Headers */ = {isa = PBXBuildFile; fileRef = AF11679892B0D6EE490026F1260A3B87 /* DKImage.h */; settings = {ATTRIBUTES = (Public, ); }; };
8777D98DA4FA970E872331E6E28DD91E /* MJRefreshBackFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = F20A3082BE7AB38C750BB6B026C0194C /* MJRefreshBackFooter.m */; };
878D271747A20417C72715B3843D6372 /* CGGeometry+LOTAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D3A984F94ACC80D4E4B8F31B89D5512 /* CGGeometry+LOTAdditions.h */; settings = {ATTRIBUTES = (Project, ); }; };
888FE7ADF440A902FC2EC582BEC36215 /* UIToolbar+Night.m in Sources */ = {isa = PBXBuildFile; fileRef = DCAB581382B7E7CB9A07F760BC9F9BCE /* UIToolbar+Night.m */; };
8999F5C08EADE22B7464C43912C5BE08 /* LOTValueCallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 33A5BFCE733FB981B9B4D0F19A928A4D /* LOTValueCallback.h */; settings = {ATTRIBUTES = (Public, ); }; };
89D1315CA78CBB110186630BE1403B30 /* LOTKeypath.m in Sources */ = {isa = PBXBuildFile; fileRef = 27BFDD5BCE6B98D0147E0C6799AB7484 /* LOTKeypath.m */; };
8BC2BB7DF1B45AEA81FC933EE29B946C /* ViewController+MASAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 5805A9FC58E5AF0D2235711328F0300C /* ViewController+MASAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; };
8CCEAD462123711BA4D045C037F89AC4 /* LOTKeyframe.m in Sources */ = {isa = PBXBuildFile; fileRef = 185B9A6BC18ECB7AF24E5A92787025C8 /* LOTKeyframe.m */; };
8DDA4DFBBCE0EAC89304B0943811E308 /* LOTInterpolatorCallback.m in Sources */ = {isa = PBXBuildFile; fileRef = 344E9521A1475717E473919D94B503C4 /* LOTInterpolatorCallback.m */; };
8E3DB486A46538620F8B978B7B04FF21 /* UIPageControl+Night.m in Sources */ = {isa = PBXBuildFile; fileRef = E5092F0AAE3167C49BBA60533F0DCF9D /* UIPageControl+Night.m */; };
90BB5C3EF49226A2589421754D08A4B6 /* UIColor+Expanded.h in Headers */ = {isa = PBXBuildFile; fileRef = B081193556554CB602679B2A9B82A5F0 /* UIColor+Expanded.h */; settings = {ATTRIBUTES = (Project, ); }; };
90C3B3A12A7DC2CC00E0893B0DC055D2 /* DOUAudioSpatialAnalyzer.m in Sources */ = {isa = PBXBuildFile; fileRef = D82E59CD67549FE4E9027EEC22B28CE6 /* DOUAudioSpatialAnalyzer.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
917C7145B7BCC145605F35B094423E4B /* DOUAudioPlaybackItem.m in Sources */ = {isa = PBXBuildFile; fileRef = C3AB519539E71F1F0A615D5E9F29937D /* DOUAudioPlaybackItem.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
91DA6B429B8F113DBAE4BE7B5A029544 /* NSArray+MASShorthandAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = E4B1440463672D77ACEEDD1E97285281 /* NSArray+MASShorthandAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; };
9275C117E099A185B76B6A14978A1B72 /* AFNetworking-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6FED8C3D34575EA1AAB407E36B5754C0 /* AFNetworking-dummy.m */; };
92A98B1EE7156E122768CA5C01912A67 /* DOUAudioAnalyzer.h in Headers */ = {isa = PBXBuildFile; fileRef = BB8CB815050173EDA7E2228B5F9B6961 /* DOUAudioAnalyzer.h */; settings = {ATTRIBUTES = (Public, ); }; };
92AF4CF4922B5BD2C8BD425BE61570C2 /* Masonry-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 56B2CA642C2BA7E453FAC9D036EA10A8 /* Masonry-dummy.m */; };
9427F282086AD57887156FAA9AD210DF /* NSObject+Night.m in Sources */ = {isa = PBXBuildFile; fileRef = F1222FEF935B236F4E29866756CCD0FE /* NSObject+Night.m */; };
9429FC6B443418ECFD4217C2DE26D01C /* CAShapeLayer+Night.m in Sources */ = {isa = PBXBuildFile; fileRef = 5346A061179634196424B6EEDDC3F774 /* CAShapeLayer+Night.m */; };
949E1F9E765EC2FD7FC5E503C977D91C /* UITextView+Night.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C7BC0532095ADD0A5A06EEB83D8516C /* UITextView+Night.m */; };
94E1DF2A39A3C59359AA6CCBBD0B2EB6 /* LOTMask.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E92910C3C0DEC9A08E0EF265AFC7BCB /* LOTMask.m */; };
94FBC205739F8D2F316CBD9ECA22A592 /* DKImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 6414242B66D474672B2BAB04F4ADE328 /* DKImage.m */; };
95149DE76A67F2EB8D0FF8AFEA82E12C /* MJRefreshBackGifFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F12E3D1EE2FE3282F85AEBC51974135 /* MJRefreshBackGifFooter.m */; };
9529D5CF7783F64F4C6E9C80FE4A5AF2 /* LOTGradientFillRender.h in Headers */ = {isa = PBXBuildFile; fileRef = 3873B4DF6669A34B61E909B5E9478FA1 /* LOTGradientFillRender.h */; settings = {ATTRIBUTES = (Project, ); }; };
954BC9B9AD7750A927B80FE16995A59A /* UIProgressView+Night.m in Sources */ = {isa = PBXBuildFile; fileRef = BA3F4B205FBEA28CB6A3CDE45A6A559D /* UIProgressView+Night.m */; };
972854857D5A906E3F3987222E661FB1 /* YTKChainRequestAgent.m in Sources */ = {isa = PBXBuildFile; fileRef = 8157FBFA81DB3D5A73A24FEE9B545E91 /* YTKChainRequestAgent.m */; };
993AC6C27E8CD50AB5589EC021E67498 /* lottie-ios-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = A61A944A21C1A31EF748C6EA9AEC2580 /* lottie-ios-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
9980C628115436A469AEFA51EE62A802 /* LOTShapeGradientFill.h in Headers */ = {isa = PBXBuildFile; fileRef = 07427B6C9223F8C2EBF9AF3D6F22B18E /* LOTShapeGradientFill.h */; settings = {ATTRIBUTES = (Project, ); }; };
99FC418AC88815176BB4BA09870E774A /* MJRefreshAutoNormalFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 02005FB7CAF692B56B590897B7ADDD8B /* MJRefreshAutoNormalFooter.m */; };
9A84347D017C4CF4540F6C5D72B279E4 /* LOTMaskContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 160C3AF2A711BDB81277486231E83E5C /* LOTMaskContainer.m */; };
9B21485294819E30B46EDBD1EFC68A55 /* UIButton+Night.h in Headers */ = {isa = PBXBuildFile; fileRef = 328AB583A43943CE9B5F5E3694C100BF /* UIButton+Night.h */; settings = {ATTRIBUTES = (Public, ); }; };
9B7D54881239E407E69D6A56DB92236C /* LOTLayerGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = F7E318929EF87442F8DD9CE970EF084F /* LOTLayerGroup.h */; settings = {ATTRIBUTES = (Project, ); }; };
9C7A2F6B98103C6F2E01D1C19C87D78D /* DKAlpha.m in Sources */ = {isa = PBXBuildFile; fileRef = DEA0B30E03D14BF13B5D36D5BA5A9C93 /* DKAlpha.m */; };
9D2F04CCC07FEB346F3DBBFAA33B0642 /* MASLayoutConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DB81AF83ED22E8C11B6291528AF73C9 /* MASLayoutConstraint.h */; settings = {ATTRIBUTES = (Public, ); }; };
9E21AA2EC996E70AD863FBCC5546CC65 /* MJRefreshConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 01D77EFB1EC4F1E1C97D988BA71DAE6E /* MJRefreshConfig.m */; };
9E5F9EB0050A41350DA8DFD1DA9A40B2 /* LOTComposition.m in Sources */ = {isa = PBXBuildFile; fileRef = FFF59BF7963DA25A03BE9E41F1FAEEFC /* LOTComposition.m */; };
9EB02F89E1E1A28B6F1A9FF7AE49BF51 /* NSArray+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = AFDFE98DCC854809CEEAB3E63F5B10C3 /* NSArray+MASAdditions.m */; };
9EC565A573F15464FC02427FF1C17D21 /* AFURLResponseSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = 599AFCF575431C906C906A8FD5289463 /* AFURLResponseSerialization.m */; };
9F0B4F7B01C8FD7389CCC625B21431A6 /* LOTAssetGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = FEEDD2C17EB95554A3FBD89E1BE25FF6 /* LOTAssetGroup.m */; };
A0EB7D4A8085772590C199F7E1118A04 /* MJRefreshConst.h in Headers */ = {isa = PBXBuildFile; fileRef = DE67CCEA9DD29E1D3F4A2E69C731AEFA /* MJRefreshConst.h */; settings = {ATTRIBUTES = (Public, ); }; };
A174A6C0ABE1091F0AD0C09B9461CF01 /* UIBarButtonItem+Night.h in Headers */ = {isa = PBXBuildFile; fileRef = B8E122478645A87FFBEB3BCC4D1B596D /* UIBarButtonItem+Night.h */; settings = {ATTRIBUTES = (Public, ); }; };
A1FADBEBEBD7DEED952843F653928FEF /* DKAlpha.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E4955A5ED68051E9ED70B9FB755E5A9 /* DKAlpha.h */; settings = {ATTRIBUTES = (Public, ); }; };
A2B0D06975AC503FFAF178C006150F23 /* YTKChainRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C34CF56A6475EB4CF09FDE4584A94B7 /* YTKChainRequest.m */; };
A349CC1F71D345C60CBEF0BBA7281680 /* NSData+DOUAudioMappedFile.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CEFD5D467F855A29778C82B0CAD9FBC /* NSData+DOUAudioMappedFile.h */; settings = {ATTRIBUTES = (Public, ); }; };
A34A9C75814A149CB65555739AB06F7F /* DOUAudioStreamer_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = A42A60881A8A580D998AE0CE08F7ADDC /* DOUAudioStreamer_Private.h */; settings = {ATTRIBUTES = (Public, ); }; };
A458539F0BC46AB3A998C440B3118B7B /* MJRefreshNormalTrailer.h in Headers */ = {isa = PBXBuildFile; fileRef = 853073D6C09C58415D86A7B75087C673 /* MJRefreshNormalTrailer.h */; settings = {ATTRIBUTES = (Public, ); }; };
A46C8E96716C8351C770010CE1BFD8BB /* DOUAudioPlaybackItem.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D5D02912B8E97725E76F13BF2E4B15 /* DOUAudioPlaybackItem.h */; settings = {ATTRIBUTES = (Public, ); }; };
A5BB75FC486E0B06FFB44FD90E60002A /* MASLayoutConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B6D1D04155C8E0815A30D2190ABE564 /* MASLayoutConstraint.m */; };
A7FFA91D1752C0783FA29408D06F37E7 /* Masonry-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A664C11751FF9EA40E76F92B713CF36 /* Masonry-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
A825C33C26CFFCE6F016FD985541D2A5 /* NSBundle+MJRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B5F545C96526605B9802F66AB79140D /* NSBundle+MJRefresh.m */; };
A8CD6354FB9683A303227318C66B4098 /* UITableView+Night.h in Headers */ = {isa = PBXBuildFile; fileRef = 979A35C4AC49E3F62D0C6D5D63B3FDF3 /* UITableView+Night.h */; settings = {ATTRIBUTES = (Public, ); }; };
A8FAB3ECF4801B9731D3FA8E0237D16C /* Pods-DreamSleep-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = CE6DF0D74F2FC70C3A1FC07E1635D211 /* Pods-DreamSleep-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
A932C18576F30D6A250AA4CCD06EAC7E /* LOTRoundedRectAnimator.m in Sources */ = {isa = PBXBuildFile; fileRef = 96F65AFC266289C03368D894ABE44B4A /* LOTRoundedRectAnimator.m */; };
A96C51B945426CE699044CB974BA2429 /* LOTShapeRectangle.m in Sources */ = {isa = PBXBuildFile; fileRef = 86C619B59F91E64C1C0BFD2F81D89A03 /* LOTShapeRectangle.m */; };
A9A8070DB3E58E025A404638BFA7456B /* LOTAnimatedControl.m in Sources */ = {isa = PBXBuildFile; fileRef = F4250AB6B1F700B0B25CC7E29FF59706 /* LOTAnimatedControl.m */; };
AAA699A6523F4FBD720D904BB9D72894 /* UIScrollView+MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = B722C83E8542A8E73B486BCA4E9C7D07 /* UIScrollView+MJRefresh.h */; settings = {ATTRIBUTES = (Public, ); }; };
AADA4442F3F1B6A22C1ACF73E43AB62E /* LOTAnimationCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 674C023EC3504605F329399A0E15C291 /* LOTAnimationCache.m */; };
AB49F4C11D446F4972A9B971677EE712 /* MJRefreshNormalHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = C360C836D0D01B5D07173BD0DA0B41E0 /* MJRefreshNormalHeader.h */; settings = {ATTRIBUTES = (Public, ); }; };
AB74D9DAFB9BD0400EAD04ABDD8F138D /* DKNightVersion-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DD9EA26FF163823FEEEFAE58FE3E24E /* DKNightVersion-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
AC0468E701A13E3E102C83A03893F2D2 /* LOTArrayInterpolator.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C6FC00E62C246D94306D2A9932B237F /* LOTArrayInterpolator.m */; };
AC69B41D7AF525143A5DCB471A20A770 /* LOTRenderNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 8836CF55EB5868758F9EFF8D07AB1A16 /* LOTRenderNode.m */; };
AD06579BA7C9D6EDC88A5961FCDBBE91 /* DOUAudioFrequencyAnalyzer.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A84D3E2EFD9B3D614DAC6D41A8E07E6 /* DOUAudioFrequencyAnalyzer.h */; settings = {ATTRIBUTES = (Public, ); }; };
ADC62FBE73D69E96C136A490F2469E06 /* LOTShapeStroke.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E0B409FB4377D1597E53219FBB638D8 /* LOTShapeStroke.m */; };
AE5BE2F039B4802A3950F5C7E4F0AF17 /* DOUAudioSpatialAnalyzer.h in Headers */ = {isa = PBXBuildFile; fileRef = 95D9C13ACFB8C5D018970B6A19834A2A /* DOUAudioSpatialAnalyzer.h */; settings = {ATTRIBUTES = (Public, ); }; };
AF05E0F2790D37F8EC1BDE93AF41507D /* UISearchBar+Night.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A1786C4243A2C4DA28808FB52B12B04 /* UISearchBar+Night.h */; settings = {ATTRIBUTES = (Public, ); }; };
AF19D8899FD3B72A2A354675CF0B4B4B /* ViewController+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 85D54CE2DA206845FCD0783E2A9D9B28 /* ViewController+MASAdditions.m */; };
AF59BE2E7458CE93C434E883514DDB6C /* UIView+Night.h in Headers */ = {isa = PBXBuildFile; fileRef = 6557EF7C9C63B75BD3E767C3BB29359D /* UIView+Night.h */; settings = {ATTRIBUTES = (Public, ); }; };
AF5A48467C25600884558909711FD062 /* MJRefreshBackNormalFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = CF9A8C77D1269B2FCEF0002252025D53 /* MJRefreshBackNormalFooter.m */; };
B0591652F2947212E5B3422AB82161DD /* MJRefreshAutoFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 563CE7A65CD2BEF9B6FF4E652DBAF382 /* MJRefreshAutoFooter.m */; };
B1A3ACB85457491656534B64EEB5781A /* LOTPathInterpolator.h in Headers */ = {isa = PBXBuildFile; fileRef = A7ED459281A6037872BB9907465DA8E6 /* LOTPathInterpolator.h */; settings = {ATTRIBUTES = (Project, ); }; };
B272F05D3DE14A790E6CECA7CD4E2125 /* LOTShapeStar.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A0E62162168780ECDD551F957AD230E /* LOTShapeStar.h */; settings = {ATTRIBUTES = (Project, ); }; };
B2950850D387507FF7C91D5DD1EB6074 /* MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = CDB356329E7A866577E036A7328BE528 /* MJRefresh.h */; settings = {ATTRIBUTES = (Public, ); }; };
B2B9EFBB8274117214CA5482B4412248 /* Masonry.h in Headers */ = {isa = PBXBuildFile; fileRef = 33686DFE5DD4AC94CFFDC1CA3536040B /* Masonry.h */; settings = {ATTRIBUTES = (Public, ); }; };
B302184B9FC265E1DDF19DCB36CD0F45 /* MASConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A546D2E5703921847888DE867F63AE3 /* MASConstraint.h */; settings = {ATTRIBUTES = (Public, ); }; };
B44111DB08DE0F8CB0B1C22043079567 /* LOTCompositionContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = F9A549F9347004D8F896A97D60A7CBB2 /* LOTCompositionContainer.h */; settings = {ATTRIBUTES = (Project, ); }; };
B549700BFE0D2FDCE066730BC32BEC79 /* LOTMask.h in Headers */ = {isa = PBXBuildFile; fileRef = 659F1465ED42942FE944092703E20D49 /* LOTMask.h */; settings = {ATTRIBUTES = (Project, ); }; };
B5F96E16BF868DAD7C5B0D0AD9191370 /* LOTCacheProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C4287CEBA7E6752AF4F342868E5DB54 /* LOTCacheProvider.m */; };
B63E3C523140AF100C42A9DD05D70EA5 /* DKColor.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F22ABA944D96250EE668709D29010FA /* DKColor.h */; settings = {ATTRIBUTES = (Public, ); }; };
B7EDF27FC13D95266FE8DB6A1B557C86 /* NSObject+DeallocBlock.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A7377A515C464F0423722F840ACBF65 /* NSObject+DeallocBlock.h */; settings = {ATTRIBUTES = (Public, ); }; };
B8722D3FFA2E63CFE914D74AEA712312 /* MASConstraintMaker.m in Sources */ = {isa = PBXBuildFile; fileRef = 00709207E4FDC0ED9396F40A7FF3EDE4 /* MASConstraintMaker.m */; };
BB915E71E44E36CF0CC03DA190C0CBC5 /* LOTShapeTransform.m in Sources */ = {isa = PBXBuildFile; fileRef = B4200C5DF7BC0AAE59C7A446C2EF7405 /* LOTShapeTransform.m */; };
BBCCB98CCF10E0FC578E8D2AE58B1219 /* LOTRenderNode.h in Headers */ = {isa = PBXBuildFile; fileRef = E943966498BF86956775A7B8A4F4B9ED /* LOTRenderNode.h */; settings = {ATTRIBUTES = (Project, ); }; };
BC150F87A8A96FFEC698A5434BB4E758 /* LOTRenderGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A92427F9E7800F7AB755F693BFC6529 /* LOTRenderGroup.m */; };
BC2E5D686E3C8185D4E859CD2D1929BA /* LOTStrokeRenderer.m in Sources */ = {isa = PBXBuildFile; fileRef = B4A4581CEB8EFB276353203EE56F3946 /* LOTStrokeRenderer.m */; };
BD042B87CA186BEA415DE8F6FC8ECB09 /* LOTBezierData.h in Headers */ = {isa = PBXBuildFile; fileRef = DB5BD4673DADD19240DB2006B4E10BD2 /* LOTBezierData.h */; settings = {ATTRIBUTES = (Project, ); }; };
BD952A2920AAA6C2F4A9376CA93EB5B9 /* LOTShapeTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = F78D365277CD2CF37D9985315E9289C4 /* LOTShapeTransform.h */; settings = {ATTRIBUTES = (Project, ); }; };
BE0AD960F7C64B92ECBA7CACEDE5EF3A /* UIBezierPath.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C83127FFEB4862AEFA71571FDB53463 /* UIBezierPath.m */; };
BEF5AC784B027F67FB808CE919DF7F7C /* YTKRequestEventAccessory.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FB97DD2ABEFC6AEE47F32ADE09A1083 /* YTKRequestEventAccessory.h */; settings = {ATTRIBUTES = (Public, ); }; };
C048F4453504FCC29C4579CD441FE79D /* MJRefreshTrailer.h in Headers */ = {isa = PBXBuildFile; fileRef = C68CB20EC8C119DA89154F8D65BC7AE7 /* MJRefreshTrailer.h */; settings = {ATTRIBUTES = (Public, ); }; };
C0B21FD807C9B4F3C4F66C6B6D1EDB95 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 40239DCF733E27443887B5396849AA97 /* Foundation.framework */; };
C1EB599C9E914514947C060C2EE2AD31 /* UIProgressView+Night.h in Headers */ = {isa = PBXBuildFile; fileRef = 58235547B9706A8835B2BD1A291394A0 /* UIProgressView+Night.h */; settings = {ATTRIBUTES = (Public, ); }; };
C2E0D9BB18F6148B20621271FA0D69E4 /* UIColor.m in Sources */ = {isa = PBXBuildFile; fileRef = 53144645EA22B9B4D4F607AC2CCEA3D4 /* UIColor.m */; };
C371CD7CFF2D48BAB5B845D805D5640D /* LOTLayerContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 671B21C79E8A962B673C5D41F4B10DE0 /* LOTLayerContainer.h */; settings = {ATTRIBUTES = (Project, ); }; };
C441A193DFE25A8CDD81BC035C3B02B3 /* MASCompositeConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = 14856DFE64B741A8307F779F90ED0285 /* MASCompositeConstraint.h */; settings = {ATTRIBUTES = (Public, ); }; };
C487C3767519D35DA2E8B9846474BF71 /* DKNightVersion-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 724DEB37C028691E4AEE44D8F9281752 /* DKNightVersion-dummy.m */; };
C622E91D61B094484128B20426842D62 /* MASViewConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = E76A15833179B4041831770400ADDEC5 /* MASViewConstraint.m */; };
C66FC8C7255B92388E5481FC4766EB66 /* MJRefreshComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 66B5A08E849E81725799AAD64FD9448F /* MJRefreshComponent.m */; };
C7BC2F5F0EDA19084857D1BAEEC27B43 /* LOTBezierPath.m in Sources */ = {isa = PBXBuildFile; fileRef = 877A385C0935F40DC898B5E7E2765E0D /* LOTBezierPath.m */; };
C7BF2873E0D84EB617B4EC742DA3F063 /* LOTShapeCircle.h in Headers */ = {isa = PBXBuildFile; fileRef = BB45AE3658EFBB04CC32F1A773CDE3B0 /* LOTShapeCircle.h */; settings = {ATTRIBUTES = (Project, ); }; };
C80470B9FA84AD5E92D48A8AABF7E6F9 /* UIImageView+Night.h in Headers */ = {isa = PBXBuildFile; fileRef = D4BECB77D71D8B948BF94FE97E1FDFF3 /* UIImageView+Night.h */; settings = {ATTRIBUTES = (Public, ); }; };
C868301DC1C926FE5F14BA1EB3B1F306 /* CFNetwork.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F0A8D07FB63A5F14AD66B994B5D825D /* CFNetwork.framework */; };
C97EB2F0F0E6FE9B71FB7BF986222BF1 /* LOTBezierData.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C68C8F7C91EF9EEF79E15788CB46A9B /* LOTBezierData.m */; };
CA6DEB80DC2C89BCE7FF82C86816504A /* UIScrollView+MJExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = FB72499DBFD4281B4585E60186054D15 /* UIScrollView+MJExtension.m */; };
CB23DD194082C1148E900A6A71D776A8 /* DOUAudioStreamer+Options.m in Sources */ = {isa = PBXBuildFile; fileRef = B2B4A4BCAD525150F75DD309797D5C10 /* DOUAudioStreamer+Options.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
CC64C3CC09243BD689ACBC27A1008CAD /* DOUEAGLView.h in Headers */ = {isa = PBXBuildFile; fileRef = C72EF8EDBD7C25B6A8D298EB5D3E0A11 /* DOUEAGLView.h */; settings = {ATTRIBUTES = (Public, ); }; };
CC6B894A8148066DA0726EE8332CCD5E /* LOTAnimationView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6131708A72A94C4FC07AB1ABD49610B9 /* LOTAnimationView.m */; };
CCCC26F7637425E021939F00165F4C55 /* MJRefreshAutoFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = B4DBFED092C92E6A1CE4C5470C24EC65 /* MJRefreshAutoFooter.h */; settings = {ATTRIBUTES = (Public, ); }; };
CCDA8288061F12AFA336BB09C55BFF1D /* MJRefreshComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = F23803A319BAAB40617272A301AA26ED /* MJRefreshComponent.h */; settings = {ATTRIBUTES = (Public, ); }; };
CD3038C5352EA8F805978F6BDE6CD90D /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B29AE21AB4E356640AB7A031CAA89D90 /* UIKit.framework */; };
CD97E9C1ACCDCAD4D5634533AF1EA63D /* LOTPathAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = B2A47FFADCA34F0DFA781694F2F939F8 /* LOTPathAnimator.h */; settings = {ATTRIBUTES = (Project, ); }; };
CDE4D22198DE0504E213B95C1B08E6BF /* LOTTransformInterpolator.h in Headers */ = {isa = PBXBuildFile; fileRef = 770BA968072EF26E73EF408721770E49 /* LOTTransformInterpolator.h */; settings = {ATTRIBUTES = (Project, ); }; };
CE7A622B4E3BC0F1751C6B1FA919857E /* UITextField+Keyboard.m in Sources */ = {isa = PBXBuildFile; fileRef = 3729B2CE5713A34BDFD13F2ACD3399BA /* UITextField+Keyboard.m */; };
CE8758BC47E6FA48209C4EC758E3C4DB /* MJRefreshFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = CE6735EAB5090F2AD3E670F87F6FC037 /* MJRefreshFooter.m */; };
CE9D5A2C73FD2E1E7B262B1103D8380F /* LOTPathInterpolator.m in Sources */ = {isa = PBXBuildFile; fileRef = DDFC740B104018628742FD24DC873F5C /* LOTPathInterpolator.m */; };
CEA9D7F2DAC326E877544C91CB643379 /* DOUAudioFilePreprocessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 84336DC02BC104C5149239017C5060C0 /* DOUAudioFilePreprocessor.h */; settings = {ATTRIBUTES = (Public, ); }; };
CFA6FC9E01EC8F6A5ACA702339850515 /* LOTCircleAnimator.m in Sources */ = {isa = PBXBuildFile; fileRef = EFEE324B18EA1B985C9F30CA0952A18B /* LOTCircleAnimator.m */; };
CFDA4B704D39E1436FC8CC9D40E51532 /* LOTFillRenderer.h in Headers */ = {isa = PBXBuildFile; fileRef = B3CB7DE69756A6EE3B65110DA9A5479F /* LOTFillRenderer.h */; settings = {ATTRIBUTES = (Project, ); }; };
D0E345F80E74FEF9A86B519CF671675C /* lottie-ios-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 75135CC7DC7E76CE64A43892E7995AD5 /* lottie-ios-dummy.m */; };
D119D5048094FEA909FF578E8B5326B5 /* UITextField+Night.m in Sources */ = {isa = PBXBuildFile; fileRef = 8FBD8F08C6680B0A346FF6A3AAED838F /* UITextField+Night.m */; };
D2127799FF85142D8A4BD5DA67DA639D /* AFHTTPSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DEADC5052A5D5D8DA277F47BBDC4CB1A /* AFHTTPSessionManager.m */; };
D29F7C1B5CCB17B2065411FB2AAC96D4 /* AFURLRequestSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 30185487D0A68D3B51CC512A43F4AF18 /* AFURLRequestSerialization.h */; settings = {ATTRIBUTES = (Public, ); }; };
D38C9D8CE2A7F06E7376FB15FD39192D /* UIView+MJExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = C3A29BF3F668FFBF047AEA7DA642B83C /* UIView+MJExtension.h */; settings = {ATTRIBUTES = (Public, ); }; };
D4249C15EEB84C0886B25B4871684041 /* UISlider+Night.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EEC26472F3A40DC6B75EF338FBA82C5 /* UISlider+Night.h */; settings = {ATTRIBUTES = (Public, ); }; };
D573558775BEF199A0BFBE5C50D31E1E /* LOTShapeFill.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BAFDEF98193AC1E08A5890F32FA3C03 /* LOTShapeFill.h */; settings = {ATTRIBUTES = (Project, ); }; };
D5BB7E08E9F64E9F4565E6965D794F2E /* LOTShapeGradientFill.m in Sources */ = {isa = PBXBuildFile; fileRef = AFBE6B06160A5A3DC3F70CADF1B4B8B8 /* LOTShapeGradientFill.m */; };
D5E12C913BF5EA6DEA1EE6F557CCF5B6 /* DOUAudioDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 92F3480D6959032BCE6FA76D4B2C5A0C /* DOUAudioDecoder.h */; settings = {ATTRIBUTES = (Public, ); }; };
D6AB00041E017FC7E2AD80BC4305FC62 /* LOTColorInterpolator.h in Headers */ = {isa = PBXBuildFile; fileRef = 87B2392350ED7A67F74B5472C7F75A78 /* LOTColorInterpolator.h */; settings = {ATTRIBUTES = (Project, ); }; };
D7A082267C561D6385F049144F49DCC9 /* YTKBatchRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 4EF9FADD5A5F2CC70F172995F3C337F1 /* YTKBatchRequest.m */; };
D8229283D5A8497A58B1365DA6B9343E /* LOTValueCallback.m in Sources */ = {isa = PBXBuildFile; fileRef = 7119975FAEAC84FAB7BB5E8139E56ED2 /* LOTValueCallback.m */; };
D868DB53B92E82F3E8CEFAF4D17B28BC /* LOTLayerGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = 71F01E9EBC9BC1AF40CE394AAD0F0539 /* LOTLayerGroup.m */; };
D87CBCB25978A2CC3C985FE69A462EB0 /* NSBundle+MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = 576DD77D914C44B9D57CAA0B5455DB95 /* NSBundle+MJRefresh.h */; settings = {ATTRIBUTES = (Public, ); }; };
D9B19D99F158CE4FD06034A31E4B07E4 /* LOTPointInterpolator.h in Headers */ = {isa = PBXBuildFile; fileRef = AB6FF2F91C72B2C669E055721AA8CBA6 /* LOTPointInterpolator.h */; settings = {ATTRIBUTES = (Project, ); }; };
DC2BCCD31CC00E83FF504F126506813A /* MJRefreshBackStateFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = F53C575227EA7A8DFC16EB13077B537C /* MJRefreshBackStateFooter.h */; settings = {ATTRIBUTES = (Public, ); }; };
DC79DD6A5D45BED435A7572EE1F7507D /* YTKBatchRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 909CC0749CCDB69A767CA9C51C42017E /* YTKBatchRequest.h */; settings = {ATTRIBUTES = (Public, ); }; };
DD073235E8CDD081038663E9801E95ED /* LOTRenderGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BC23806E0EF7E1FB9A077DDDF8636A4 /* LOTRenderGroup.h */; settings = {ATTRIBUTES = (Project, ); }; };
DDBE19A30BB8F740B1F75CCFBA3CF20F /* LOTTrimPathNode.m in Sources */ = {isa = PBXBuildFile; fileRef = ED44FE645093AB9B602A789191486E56 /* LOTTrimPathNode.m */; };
DE0EACF14B32E2D421ED4464EA03B47F /* UINavigationBar+Animation.m in Sources */ = {isa = PBXBuildFile; fileRef = 03A5ADA51C97428E56B824F23F885D4A /* UINavigationBar+Animation.m */; };
DEA792809D8B47C17551B08F026FC7AE /* YTKRequestEventAccessory.m in Sources */ = {isa = PBXBuildFile; fileRef = 0ED8595649058B4E5B5F6CD412B28358 /* YTKRequestEventAccessory.m */; };
DEC12E1A6A3555D9B88120A325B41DEA /* YTKNetwork-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B8101E6DD214CED0F9B1DF3E0519F61F /* YTKNetwork-dummy.m */; };
DEC364F1EDC9D2AFC5849780E1169701 /* UISearchBar+Keyboard.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F104F2D2004CC1D7003A0E3947F99E3 /* UISearchBar+Keyboard.m */; };
DF98D488AB3724289D1C385669A3E8AA /* NSValue+Compat.h in Headers */ = {isa = PBXBuildFile; fileRef = B72CB3FF7CF34210E824D3EBCD619792 /* NSValue+Compat.h */; settings = {ATTRIBUTES = (Project, ); }; };
DFF7195C2AB94D2CF165B25B89B42C1E /* View+MASAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = D19AFA5B0631D347EA4B4C8BC4E06877 /* View+MASAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; };
E01EA0E10892D98F08A910EDA71FB443 /* MJRefreshStateHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = FB8D1C5BBF80DCC558FE967C0E27013A /* MJRefreshStateHeader.h */; settings = {ATTRIBUTES = (Public, ); }; };
E17671B015273174485D400B59BC1C59 /* CALayer+Night.h in Headers */ = {isa = PBXBuildFile; fileRef = F2C03C782BFEC12B93C60C131EF23332 /* CALayer+Night.h */; settings = {ATTRIBUTES = (Public, ); }; };
E1986A96EB7906DFA58BE7569ACCFC97 /* LOTShapeTrimPath.m in Sources */ = {isa = PBXBuildFile; fileRef = 958EECCD4B99966FDA106B71AAE22F71 /* LOTShapeTrimPath.m */; };
E1EBE8193D362D5441991CE2EB426E0E /* UISwitch+Night.m in Sources */ = {isa = PBXBuildFile; fileRef = 363F9F4986A8BBB2045C8F27DCF5715A /* UISwitch+Night.m */; };
E229D39515478EAAED96869B93375ACB /* DOUAudioStreamer.m in Sources */ = {isa = PBXBuildFile; fileRef = 929B1EE23846CF7676A04EA7F890D2CB /* DOUAudioStreamer.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
E23AD2FA650F1435C25EA40AB6B72E7A /* AFHTTPSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6582921FB78B1A04F2AA0EF2153DAC80 /* AFHTTPSessionManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
E24B3954FA6CFA3F84C76D97C81BF562 /* MASViewConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = 30F9EBE0083BF3919B7BE71850B8C302 /* MASViewConstraint.h */; settings = {ATTRIBUTES = (Public, ); }; };
E2DF342DE862282E3F459CD9476B9B71 /* MASViewAttribute.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A816F7730E3DB55C4197D032CF13F14 /* MASViewAttribute.h */; settings = {ATTRIBUTES = (Public, ); }; };
E3300222893F44A0514E6AE1A303AFAA /* LOTAnimationTransitionController.h in Headers */ = {isa = PBXBuildFile; fileRef = 11B989EF0ED244CD369A517ECF42E591 /* LOTAnimationTransitionController.h */; settings = {ATTRIBUTES = (Public, ); }; };
E378B85D174E658B58A2764FE8731E9D /* UISlider+Night.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A402CA48FFA3B0DCB84A834FBA2E79B /* UISlider+Night.m */; };
E39D0D38DDD60B00BC1F0884ED28ADF4 /* UITextField+Keyboard.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D18B8695415DDBFE8AFF86200C3977B /* UITextField+Keyboard.h */; settings = {ATTRIBUTES = (Public, ); }; };
E40E48874A7475AE63E4CDCE1D6988B1 /* LOTMaskContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = C77FE7015321359DE4E5E4F014C45D25 /* LOTMaskContainer.h */; settings = {ATTRIBUTES = (Project, ); }; };
E506A9136613A8F447486984F3D3E944 /* DKNightVersionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DB4AE61D5F335D48974787282B38235E /* DKNightVersionManager.m */; };
E56EBDE8B4EC8C20A7E20E93398361BB /* DOUAudioAnalyzer+Default.h in Headers */ = {isa = PBXBuildFile; fileRef = D030F50513D58EBF080BED6207DFAE11 /* DOUAudioAnalyzer+Default.h */; settings = {ATTRIBUTES = (Public, ); }; };
E7BB7A2B4314D02FBFE313C0BB395815 /* UIControl+Night.h in Headers */ = {isa = PBXBuildFile; fileRef = 317182BCA5BB4132551919F394FD69DA /* UIControl+Night.h */; settings = {ATTRIBUTES = (Public, ); }; };
E810322AD3FE0A578AFF5CB620AD15C9 /* Lottie.h in Headers */ = {isa = PBXBuildFile; fileRef = 2184B97C1D4400449CE82A49240190DE /* Lottie.h */; settings = {ATTRIBUTES = (Public, ); }; };
E89D5D85B92B4543C9C3BC1264C3FC26 /* MJRefreshConst.m in Sources */ = {isa = PBXBuildFile; fileRef = 1DEED1E49E5EEA56C5BDB86CAA25B224 /* MJRefreshConst.m */; };
E9D9E958B857E0A177ED449F2FA6E87C /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DC07C6175B1E2AD14C544CBC093833E9 /* QuartzCore.framework */; };
EA4339023A6234E32422672379562EFC /* MJRefreshStateTrailer.m in Sources */ = {isa = PBXBuildFile; fileRef = CEA8B3AEDAF0B855AC704767818716CA /* MJRefreshStateTrailer.m */; };
EA4D58D8AA1AAD35BE09BEEDEAEF55D2 /* MJRefreshGifHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = A2A1F9A2C68F2AC10DC0E8802101B19A /* MJRefreshGifHeader.h */; settings = {ATTRIBUTES = (Public, ); }; };
EAA5E957F2B481F81AFA4289F813FC32 /* LOTKeypath.h in Headers */ = {isa = PBXBuildFile; fileRef = 113FB00B89AEB72E092CC0EABBE3540A /* LOTKeypath.h */; settings = {ATTRIBUTES = (Public, ); }; };
EBBE232DA0F5DBDF5CBCCAF2B504A16A /* MJRefreshAutoNormalFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CEDC4DE584EA99DADBB31FF7014BAA0 /* MJRefreshAutoNormalFooter.h */; settings = {ATTRIBUTES = (Public, ); }; };
ECBA0A728DDD7BA5F9CB65C2C80950A1 /* LOTSizeInterpolator.h in Headers */ = {isa = PBXBuildFile; fileRef = 13E58A0755C0958D811445642E95688D /* LOTSizeInterpolator.h */; settings = {ATTRIBUTES = (Project, ); }; };
ECE242EEB0E82FBEE115812BF973E9F5 /* DOUAudioBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 28854960AE98F568D116BA7B6599AA8C /* DOUAudioBase.h */; settings = {ATTRIBUTES = (Public, ); }; };
ED15A5CF2185C0CDD54580A8899EFF3F /* AFSecurityPolicy.m in Sources */ = {isa = PBXBuildFile; fileRef = D48F4622D78FB5A3746FF07837A7D86D /* AFSecurityPolicy.m */; };
EDFB74A884F5486FBB6D84878A47467C /* LOTAnimatorNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 4516EE2E4DFF655626DCCD28B4BD6065 /* LOTAnimatorNode.m */; };
EF6CF7ED2624C016079017B4AF5B5500 /* LOTShapeCircle.m in Sources */ = {isa = PBXBuildFile; fileRef = 70FEB4F98E6E7BF356EE8344F439BB0B /* LOTShapeCircle.m */; };
F0B15996EC6CE21FAD73B0EBE2475436 /* DOUAudioEventLoop.m in Sources */ = {isa = PBXBuildFile; fileRef = 91427D37710BFE04E39CBA060E71D650 /* DOUAudioEventLoop.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
F0C593C48C3832EA2FB363B28DDB858D /* MJRefreshFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 9246269C24709EF0A1BB6AA935033476 /* MJRefreshFooter.h */; settings = {ATTRIBUTES = (Public, ); }; };
F17D14AA419610A24C438010925D5285 /* LOTStrokeRenderer.h in Headers */ = {isa = PBXBuildFile; fileRef = 53830A52C8772A1ACF7C4F974479E9F1 /* LOTStrokeRenderer.h */; settings = {ATTRIBUTES = (Project, ); }; };
F1F6BE8022B15AF502F605F354CEA770 /* LOTAnimatorNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C549168423072CDE39A9D805A9118BD2 /* LOTAnimatorNode.h */; settings = {ATTRIBUTES = (Project, ); }; };
F21EB1AFFEDB5DABC2CEE81C56057E00 /* LOTPolystarAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = 10DCB59F7FCCB8DA2FF55D07F3F26B8A /* LOTPolystarAnimator.h */; settings = {ATTRIBUTES = (Project, ); }; };
F409514460B49909252092F89D7815B3 /* DKColor.m in Sources */ = {isa = PBXBuildFile; fileRef = 524325BE1192FF9AF99B9BEA5F6E9609 /* DKColor.m */; };
F4BBEA8767BE16B7CCDE554617CEC182 /* DOUAudioFrequencyAnalyzer.m in Sources */ = {isa = PBXBuildFile; fileRef = 2925A3577F7A9473B9E776B553916BC4 /* DOUAudioFrequencyAnalyzer.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
F5B05B01C09A9C2687930E80C2F723BB /* MJRefreshConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = A15E6D7A429BE39D3C02011B0951E75C /* MJRefreshConfig.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5FB18BD7101E61588E1B1F81B27E93E /* LOTComposition.h in Headers */ = {isa = PBXBuildFile; fileRef = 51A9455DA127D75D95A5FA384C9889E4 /* LOTComposition.h */; settings = {ATTRIBUTES = (Public, ); }; };
F66F0A974BA100F86E791CC5D4D71BF7 /* LOTLayerContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = E12B473EAC11C086B90F8636345D580D /* LOTLayerContainer.m */; };
F6EF1A0FF54545EC905960F2692530F2 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 40239DCF733E27443887B5396849AA97 /* Foundation.framework */; };
F7382EB9CC48DA918F32E899D2957FEF /* UINavigationBar+Animation.h in Headers */ = {isa = PBXBuildFile; fileRef = 92E03F831CA098764FC0BE1A9C64B65B /* UINavigationBar+Animation.h */; settings = {ATTRIBUTES = (Public, ); }; };
F846A595257F217CD9BBE376FC9462B7 /* UILabel+Night.m in Sources */ = {isa = PBXBuildFile; fileRef = 0145CEF36ED588E97CE4B5E597DD85AA /* UILabel+Night.m */; };
F8ADF77FAE104732A909BF9AB189FCA2 /* UIPageControl+Night.h in Headers */ = {isa = PBXBuildFile; fileRef = 2111368AFEF2F7559057BD4DD062129B /* UIPageControl+Night.h */; settings = {ATTRIBUTES = (Public, ); }; };
FA0A1AFF81F2407ED7E6DE9085368EF5 /* MJRefreshAutoStateFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46652F7BCE37BD652DC82E59152EE207 /* MJRefreshAutoStateFooter.h */; settings = {ATTRIBUTES = (Public, ); }; };
FA240085C778553BBDCD702041559F89 /* LOTShapeStar.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B1FD86A85E822F226C0AB7EEAEB0223 /* LOTShapeStar.m */; };
FA57A77C0681A62E0EBE4BB346730FA1 /* UITextField+Night.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D145CEF16536EF73E2C07BD0A0F8B9D /* UITextField+Night.h */; settings = {ATTRIBUTES = (Public, ); }; };
FC4ECD413998DE0044417F932FEC3064 /* DOUSimpleHTTPRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 57E270873C7FC1B547132F92042E5F05 /* DOUSimpleHTTPRequest.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
FDB8ED70DC886757EF54491A0CE9E913 /* DOUAudioLPCM.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B22A3562A9E3CE9F121E1CBA7EF8CBD /* DOUAudioLPCM.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
FF0881948A7142742503C0A954750E78 /* LOTAnimatedSwitch.h in Headers */ = {isa = PBXBuildFile; fileRef = D14D5F8B01899D75A425D9CCE532D34E /* LOTAnimatedSwitch.h */; settings = {ATTRIBUTES = (Public, ); }; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
36C5F564E89035AA8AAEF634262DD825 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 6868056D761E163D10FDAF8CF1C4D9B8;
remoteInfo = MJRefresh;
};
44D4B15CAC7920EE7AE3974F2F79EC1C /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 0130B3724283586C0E9D2A112D4F2AA1;
remoteInfo = AFNetworking;
};
49C891CCFECEECC520B87106FB8B5F9F /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
proxyType = 1;
remoteGlobalIDString = A10D306FBCE61B6A00F5D9E74036D1E9;
remoteInfo = DKNightVersion;
};
6912A432B30ED6562AC05B96C96393D0 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 0B967D7F8561D42493EE289EC8D450D1;
remoteInfo = "lottie-ios";
};
AAB6D2B7E054565667E7CF9329FA3A7E /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 0130B3724283586C0E9D2A112D4F2AA1;
remoteInfo = AFNetworking;
};
CD11884E7E921F73178EB28F6F9EEA14 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 5CEB6950CD05DCBC58038F439D626086;
remoteInfo = DOUAudioStreamer;
};
E1593C57B244E5564A60E80106933D76 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
proxyType = 1;
remoteGlobalIDString = AC51EA5BE1682F8277BE5F13677E147C;
remoteInfo = YTKNetwork;
};
EED82D05853B32000D2C2C9E41045E63 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 55AF53E6C77A10ED4985E04D74A8878E;
remoteInfo = Masonry;
};
/* End PBXContainerItemProxy section */
/* Begin PBXFileReference section */
00709207E4FDC0ED9396F40A7FF3EDE4 /* MASConstraintMaker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASConstraintMaker.m; path = Masonry/MASConstraintMaker.m; sourceTree = "<group>"; };
007112B8E007E51F0662A82E24173A2A /* DOUSimpleHTTPRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DOUSimpleHTTPRequest.h; path = src/DOUSimpleHTTPRequest.h; sourceTree = "<group>"; };
0145CEF36ED588E97CE4B5E597DD85AA /* UILabel+Night.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UILabel+Night.m"; path = "DKNightVersion/UIKit/UILabel+Night.m"; sourceTree = "<group>"; };
01D77EFB1EC4F1E1C97D988BA71DAE6E /* MJRefreshConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshConfig.m; path = MJRefresh/MJRefreshConfig.m; sourceTree = "<group>"; };
02005FB7CAF692B56B590897B7ADDD8B /* MJRefreshAutoNormalFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoNormalFooter.m; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.m; sourceTree = "<group>"; };
03A5ADA51C97428E56B824F23F885D4A /* UINavigationBar+Animation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UINavigationBar+Animation.m"; path = "DKNightVersion/Manual/UINavigationBar+Animation.m"; sourceTree = "<group>"; };
04B380B6648264692DA26C32040918AF /* DOUAudioStreamer.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = DOUAudioStreamer.framework; sourceTree = BUILT_PRODUCTS_DIR; };
07427B6C9223F8C2EBF9AF3D6F22B18E /* LOTShapeGradientFill.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTShapeGradientFill.h; path = "lottie-ios/Classes/Models/LOTShapeGradientFill.h"; sourceTree = "<group>"; };
0781B6C551700F8F309FECCA9C56183B /* DKDeallocBlockExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DKDeallocBlockExecutor.h; path = DKNightVersion/DeallocBlockExecutor/DKDeallocBlockExecutor.h; sourceTree = "<group>"; };
08D4C2EFADDD476F82A38440680A095D /* AFURLSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFURLSessionManager.h; path = AFNetworking/AFURLSessionManager.h; sourceTree = "<group>"; };
09AD15214EEA5C1408DFDE90E117FE5F /* LOTPointInterpolator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTPointInterpolator.m; path = "lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTPointInterpolator.m"; sourceTree = "<group>"; };
0CEFD5D467F855A29778C82B0CAD9FBC /* NSData+DOUAudioMappedFile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+DOUAudioMappedFile.h"; path = "src/NSData+DOUAudioMappedFile.h"; sourceTree = "<group>"; };
0D26CDE6993C5FB6484BA271D11AD765 /* UITextView+Keyboard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UITextView+Keyboard.h"; path = "DKNightVersion/Manual/UITextView+Keyboard.h"; sourceTree = "<group>"; };
0D2FC32F499BA1768662B137D46AC0A9 /* DOUAudioStreamer-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "DOUAudioStreamer-Info.plist"; sourceTree = "<group>"; };
0D395161AC992A504B27B10DEB1F4F35 /* MJRefreshAutoGifFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoGifFooter.h; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.h; sourceTree = "<group>"; };
0E20F2ACB065B6B2B5CDDD493C0B4461 /* MASConstraint+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "MASConstraint+Private.h"; path = "Masonry/MASConstraint+Private.h"; sourceTree = "<group>"; };
0ED8595649058B4E5B5F6CD412B28358 /* YTKRequestEventAccessory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YTKRequestEventAccessory.m; path = YTKNetwork/YTKRequestEventAccessory.m; sourceTree = "<group>"; };
0F0946CA93D8592C4D3CE9DE75A096C3 /* YTKBaseRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YTKBaseRequest.h; path = YTKNetwork/YTKBaseRequest.h; sourceTree = "<group>"; };
0F285D8F358AE0D31590FD15BD378349 /* LOTTrimPathNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTTrimPathNode.h; path = "lottie-ios/Classes/RenderSystem/ManipulatorNodes/LOTTrimPathNode.h"; sourceTree = "<group>"; };
0F31368E972AEC0CA565CABBA49F2D81 /* Masonry.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Masonry.release.xcconfig; sourceTree = "<group>"; };
0FDD571DC1815947E186D0422820CE90 /* CALayer+Compat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "CALayer+Compat.h"; path = "lottie-ios/Classes/MacCompatibility/CALayer+Compat.h"; sourceTree = "<group>"; };
0FF64BFC0D60A749B42EF46F13319098 /* LOTNumberInterpolator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTNumberInterpolator.h; path = "lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTNumberInterpolator.h"; sourceTree = "<group>"; };
10AE3CC9C1C22576B34BE9422AF6824F /* LOTPolystarAnimator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTPolystarAnimator.m; path = "lottie-ios/Classes/RenderSystem/AnimatorNodes/LOTPolystarAnimator.m"; sourceTree = "<group>"; };
10DCB59F7FCCB8DA2FF55D07F3F26B8A /* LOTPolystarAnimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTPolystarAnimator.h; path = "lottie-ios/Classes/RenderSystem/AnimatorNodes/LOTPolystarAnimator.h"; sourceTree = "<group>"; };
113FB00B89AEB72E092CC0EABBE3540A /* LOTKeypath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTKeypath.h; path = "lottie-ios/Classes/PublicHeaders/LOTKeypath.h"; sourceTree = "<group>"; };
11B989EF0ED244CD369A517ECF42E591 /* LOTAnimationTransitionController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTAnimationTransitionController.h; path = "lottie-ios/Classes/PublicHeaders/LOTAnimationTransitionController.h"; sourceTree = "<group>"; };
11D45238B00A9CFFC97B20A7C931561E /* LOTFillRenderer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTFillRenderer.m; path = "lottie-ios/Classes/RenderSystem/RenderNodes/LOTFillRenderer.m"; sourceTree = "<group>"; };
126BB8787CCDB73464481DDE53AC4986 /* metamacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metamacros.h; path = DKNightVersion/extobjc/metamacros.h; sourceTree = "<group>"; };
13E58A0755C0958D811445642E95688D /* LOTSizeInterpolator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTSizeInterpolator.h; path = "lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTSizeInterpolator.h"; sourceTree = "<group>"; };
14856DFE64B741A8307F779F90ED0285 /* MASCompositeConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASCompositeConstraint.h; path = Masonry/MASCompositeConstraint.h; sourceTree = "<group>"; };
160C3AF2A711BDB81277486231E83E5C /* LOTMaskContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTMaskContainer.m; path = "lottie-ios/Classes/AnimatableLayers/LOTMaskContainer.m"; sourceTree = "<group>"; };
169C768D9FD3DF6902037E43E7DB5F04 /* LOTShapeRectangle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTShapeRectangle.h; path = "lottie-ios/Classes/Models/LOTShapeRectangle.h"; sourceTree = "<group>"; };
177B9F09ECC9B92C37422620A4B19385 /* YTKBaseRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YTKBaseRequest.m; path = YTKNetwork/YTKBaseRequest.m; sourceTree = "<group>"; };
185B9A6BC18ECB7AF24E5A92787025C8 /* LOTKeyframe.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTKeyframe.m; path = "lottie-ios/Classes/AnimatableProperties/LOTKeyframe.m"; sourceTree = "<group>"; };
18CD35DAEFFDD6B461DF7D619614B5B5 /* MASConstraintMaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASConstraintMaker.h; path = Masonry/MASConstraintMaker.h; sourceTree = "<group>"; };
193914CB6780D49A7C98AC4195C6D031 /* DOUMPMediaLibraryAssetLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DOUMPMediaLibraryAssetLoader.m; path = src/DOUMPMediaLibraryAssetLoader.m; sourceTree = "<group>"; };
19C2B23EFB510F5F8CF5FD64CF0285E3 /* LOTValueInterpolator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTValueInterpolator.m; path = "lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTValueInterpolator.m"; sourceTree = "<group>"; };
1A48C755DC564041D0BF299E3121FDC9 /* Pods-DreamSleep-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-DreamSleep-dummy.m"; sourceTree = "<group>"; };
1A664C11751FF9EA40E76F92B713CF36 /* Masonry-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Masonry-umbrella.h"; sourceTree = "<group>"; };
1A816F7730E3DB55C4197D032CF13F14 /* MASViewAttribute.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASViewAttribute.h; path = Masonry/MASViewAttribute.h; sourceTree = "<group>"; };
1B22A3562A9E3CE9F121E1CBA7EF8CBD /* DOUAudioLPCM.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DOUAudioLPCM.m; path = src/DOUAudioLPCM.m; sourceTree = "<group>"; };
1BC23806E0EF7E1FB9A077DDDF8636A4 /* LOTRenderGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTRenderGroup.h; path = "lottie-ios/Classes/RenderSystem/RenderNodes/LOTRenderGroup.h"; sourceTree = "<group>"; };
1C34CF56A6475EB4CF09FDE4584A94B7 /* YTKChainRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YTKChainRequest.m; path = YTKNetwork/YTKChainRequest.m; sourceTree = "<group>"; };
1C4287CEBA7E6752AF4F342868E5DB54 /* LOTCacheProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTCacheProvider.m; path = "lottie-ios/Classes/Private/LOTCacheProvider.m"; sourceTree = "<group>"; };
1CEDC4DE584EA99DADBB31FF7014BAA0 /* MJRefreshAutoNormalFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoNormalFooter.h; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.h; sourceTree = "<group>"; };
1D6F46AA0B22BCF108BE8206EC8A8996 /* Pods-DreamSleep.beta.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-DreamSleep.beta.xcconfig"; sourceTree = "<group>"; };
1DEED1E49E5EEA56C5BDB86CAA25B224 /* MJRefreshConst.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshConst.m; path = MJRefresh/MJRefreshConst.m; sourceTree = "<group>"; };
1F104F2D2004CC1D7003A0E3947F99E3 /* UISearchBar+Keyboard.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UISearchBar+Keyboard.m"; path = "DKNightVersion/Manual/UISearchBar+Keyboard.m"; sourceTree = "<group>"; };
1FFED36A657123030ABB700256D73F15 /* Masonry.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Masonry.framework; sourceTree = BUILT_PRODUCTS_DIR; };
201EFE15B37924EB2402B078443E946B /* UICollectionViewLayout+MJRefresh.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UICollectionViewLayout+MJRefresh.m"; path = "MJRefresh/UICollectionViewLayout+MJRefresh.m"; sourceTree = "<group>"; };
2111368AFEF2F7559057BD4DD062129B /* UIPageControl+Night.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIPageControl+Night.h"; path = "DKNightVersion/UIKit/UIPageControl+Night.h"; sourceTree = "<group>"; };
2184B97C1D4400449CE82A49240190DE /* Lottie.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Lottie.h; path = "lottie-ios/Classes/PublicHeaders/Lottie.h"; sourceTree = "<group>"; };
21E78AA314A7B7BD41B74F839B74E664 /* AFNetworking.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = AFNetworking.modulemap; sourceTree = "<group>"; };
21F41C325F87DFB4AAEF0EC3371B793C /* NSData+DOUAudioMappedFile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+DOUAudioMappedFile.m"; path = "src/NSData+DOUAudioMappedFile.m"; sourceTree = "<group>"; };
238096AFEBBF24F18135758E1CCE9D89 /* LOTShapeFill.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTShapeFill.m; path = "lottie-ios/Classes/Models/LOTShapeFill.m"; sourceTree = "<group>"; };
23FC3528B4F7090978D798065DFFD784 /* YTKNetworkPrivate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YTKNetworkPrivate.m; path = YTKNetwork/YTKNetworkPrivate.m; sourceTree = "<group>"; };
24AD303229F864285706532BCCA40D30 /* LOTValueDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTValueDelegate.h; path = "lottie-ios/Classes/PublicHeaders/LOTValueDelegate.h"; sourceTree = "<group>"; };
24F6DD8DABE0E799647744F2ED4DF475 /* DOUAudioDecoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DOUAudioDecoder.m; path = src/DOUAudioDecoder.m; sourceTree = "<group>"; };
27BFDD5BCE6B98D0147E0C6799AB7484 /* LOTKeypath.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTKeypath.m; path = "lottie-ios/Classes/Private/LOTKeypath.m"; sourceTree = "<group>"; };
28854960AE98F568D116BA7B6599AA8C /* DOUAudioBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DOUAudioBase.h; path = src/DOUAudioBase.h; sourceTree = "<group>"; };
2925A3577F7A9473B9E776B553916BC4 /* DOUAudioFrequencyAnalyzer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DOUAudioFrequencyAnalyzer.m; path = src/DOUAudioFrequencyAnalyzer.m; sourceTree = "<group>"; };
2A14C5151D1F6A23C85C83AFDEFD8E27 /* lottie-ios.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "lottie-ios.debug.xcconfig"; sourceTree = "<group>"; };
2A3FE285E20C260DD490DD148F38B21C /* DOUAudioAnalyzer_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DOUAudioAnalyzer_Private.h; path = src/DOUAudioAnalyzer_Private.h; sourceTree = "<group>"; };
2A546D2E5703921847888DE867F63AE3 /* MASConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASConstraint.h; path = Masonry/MASConstraint.h; sourceTree = "<group>"; };
2C68C8F7C91EF9EEF79E15788CB46A9B /* LOTBezierData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTBezierData.m; path = "lottie-ios/Classes/AnimatableProperties/LOTBezierData.m"; sourceTree = "<group>"; };
2C7BC0532095ADD0A5A06EEB83D8516C /* UITextView+Night.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UITextView+Night.m"; path = "DKNightVersion/UIKit/UITextView+Night.m"; sourceTree = "<group>"; };
2D18B8695415DDBFE8AFF86200C3977B /* UITextField+Keyboard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UITextField+Keyboard.h"; path = "DKNightVersion/Manual/UITextField+Keyboard.h"; sourceTree = "<group>"; };
2E0879CEF70A330E06035EA9A35E8399 /* UICollectionViewLayout+MJRefresh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UICollectionViewLayout+MJRefresh.h"; path = "MJRefresh/UICollectionViewLayout+MJRefresh.h"; sourceTree = "<group>"; };
2F1487C4A4E76C82E5A3287CD0BC1533 /* AFURLRequestSerialization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFURLRequestSerialization.m; path = AFNetworking/AFURLRequestSerialization.m; sourceTree = "<group>"; };
2F37B36EAAD5E1C8F2B119B66E48B5E6 /* UISearchBar+Keyboard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UISearchBar+Keyboard.h"; path = "DKNightVersion/Manual/UISearchBar+Keyboard.h"; sourceTree = "<group>"; };
2FB97DD2ABEFC6AEE47F32ADE09A1083 /* YTKRequestEventAccessory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YTKRequestEventAccessory.h; path = YTKNetwork/YTKRequestEventAccessory.h; sourceTree = "<group>"; };
2FF71BFCAD6E6C2B0FF49A95D4A1F35D /* LOTRepeaterRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTRepeaterRenderer.h; path = "lottie-ios/Classes/RenderSystem/RenderNodes/LOTRepeaterRenderer.h"; sourceTree = "<group>"; };
30185487D0A68D3B51CC512A43F4AF18 /* AFURLRequestSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFURLRequestSerialization.h; path = AFNetworking/AFURLRequestSerialization.h; sourceTree = "<group>"; };
30F9EBE0083BF3919B7BE71850B8C302 /* MASViewConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASViewConstraint.h; path = Masonry/MASViewConstraint.h; sourceTree = "<group>"; };
31672F6B4D711C30719B8F128B21DA0E /* Pods-DreamSleep-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-DreamSleep-frameworks.sh"; sourceTree = "<group>"; };
317182BCA5BB4132551919F394FD69DA /* UIControl+Night.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIControl+Night.h"; path = "DKNightVersion/UIKit/UIControl+Night.h"; sourceTree = "<group>"; };
31E0377CF0710DF72C9982DC25B43B54 /* Masonry.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Masonry.debug.xcconfig; sourceTree = "<group>"; };
32294663F55781BA085499654683917D /* AFNetworking.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AFNetworking.debug.xcconfig; sourceTree = "<group>"; };
328AB583A43943CE9B5F5E3694C100BF /* UIButton+Night.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIButton+Night.h"; path = "DKNightVersion/Manual/UIButton+Night.h"; sourceTree = "<group>"; };
33686DFE5DD4AC94CFFDC1CA3536040B /* Masonry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Masonry.h; path = Masonry/Masonry.h; sourceTree = "<group>"; };
33A5BFCE733FB981B9B4D0F19A928A4D /* LOTValueCallback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTValueCallback.h; path = "lottie-ios/Classes/PublicHeaders/LOTValueCallback.h"; sourceTree = "<group>"; };
344E9521A1475717E473919D94B503C4 /* LOTInterpolatorCallback.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTInterpolatorCallback.m; path = "lottie-ios/Classes/Private/LOTInterpolatorCallback.m"; sourceTree = "<group>"; };
36109B3F5E4F643BBCB526DB22C1FB71 /* DKNightVersion-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DKNightVersion-prefix.pch"; sourceTree = "<group>"; };
361AE60CB5BBC3A7C34F08B1DE755996 /* YTKChainRequestAgent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YTKChainRequestAgent.h; path = YTKNetwork/YTKChainRequestAgent.h; sourceTree = "<group>"; };
36240E93C019765C4A9FD6F4E8AD6996 /* UIButton+Night.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIButton+Night.m"; path = "DKNightVersion/Manual/UIButton+Night.m"; sourceTree = "<group>"; };
363F9F4986A8BBB2045C8F27DCF5715A /* UISwitch+Night.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UISwitch+Night.m"; path = "DKNightVersion/UIKit/UISwitch+Night.m"; sourceTree = "<group>"; };
36AB09707843AF13D7864D98BCBA6C8C /* UITableView+Night.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UITableView+Night.m"; path = "DKNightVersion/UIKit/UITableView+Night.m"; sourceTree = "<group>"; };
3729B2CE5713A34BDFD13F2ACD3399BA /* UITextField+Keyboard.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UITextField+Keyboard.m"; path = "DKNightVersion/Manual/UITextField+Keyboard.m"; sourceTree = "<group>"; };
3873B4DF6669A34B61E909B5E9478FA1 /* LOTGradientFillRender.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTGradientFillRender.h; path = "lottie-ios/Classes/RenderSystem/RenderNodes/LOTGradientFillRender.h"; sourceTree = "<group>"; };
3897DE658B6D903F4D3A4938A65B71AD /* UIToolbar+Night.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIToolbar+Night.h"; path = "DKNightVersion/UIKit/UIToolbar+Night.h"; sourceTree = "<group>"; };
3A0E62162168780ECDD551F957AD230E /* LOTShapeStar.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTShapeStar.h; path = "lottie-ios/Classes/Models/LOTShapeStar.h"; sourceTree = "<group>"; };
3A1786C4243A2C4DA28808FB52B12B04 /* UISearchBar+Night.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UISearchBar+Night.h"; path = "DKNightVersion/UIKit/UISearchBar+Night.h"; sourceTree = "<group>"; };
3B25FD6E412EB223E19EFE47E59F3D4C /* LOTAnimationView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTAnimationView.h; path = "lottie-ios/Classes/PublicHeaders/LOTAnimationView.h"; sourceTree = "<group>"; };
3B5F545C96526605B9802F66AB79140D /* NSBundle+MJRefresh.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSBundle+MJRefresh.m"; path = "MJRefresh/NSBundle+MJRefresh.m"; sourceTree = "<group>"; };
3B6D1D04155C8E0815A30D2190ABE564 /* MASLayoutConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASLayoutConstraint.m; path = Masonry/MASLayoutConstraint.m; sourceTree = "<group>"; };
3C1410C33A341C053F000BD44F42F4C6 /* MJRefresh.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = MJRefresh.modulemap; sourceTree = "<group>"; };
3DA3AD85F7E5BB1A45EDF47623C63DB1 /* LOTAssetGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTAssetGroup.h; path = "lottie-ios/Classes/Models/LOTAssetGroup.h"; sourceTree = "<group>"; };
3E65B48364E74932515716B39797BC88 /* DKNightVersionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DKNightVersionManager.h; path = DKNightVersion/Core/DKNightVersionManager.h; sourceTree = "<group>"; };
3EA3FE9514517DAB2D1F47ED84C89318 /* Pods-DreamSleep-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-DreamSleep-acknowledgements.plist"; sourceTree = "<group>"; };
3F22ABA944D96250EE668709D29010FA /* DKColor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DKColor.h; path = DKNightVersion/Core/DKColor.h; sourceTree = "<group>"; };
3F6C38BCF12484784188EC7CE37EA4BC /* LOTBlockCallback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTBlockCallback.h; path = "lottie-ios/Classes/PublicHeaders/LOTBlockCallback.h"; sourceTree = "<group>"; };
40239DCF733E27443887B5396849AA97 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; };
41F4E72D637E25B4C98E72415C364B52 /* UIBarButtonItem+Night.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIBarButtonItem+Night.m"; path = "DKNightVersion/UIKit/UIBarButtonItem+Night.m"; sourceTree = "<group>"; };
43F7F99119D1D6D61A0D9B875C598CCE /* LOTCircleAnimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTCircleAnimator.h; path = "lottie-ios/Classes/RenderSystem/AnimatorNodes/LOTCircleAnimator.h"; sourceTree = "<group>"; };
4516EE2E4DFF655626DCCD28B4BD6065 /* LOTAnimatorNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTAnimatorNode.m; path = "lottie-ios/Classes/RenderSystem/LOTAnimatorNode.m"; sourceTree = "<group>"; };
46652F7BCE37BD652DC82E59152EE207 /* MJRefreshAutoStateFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoStateFooter.h; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.h; sourceTree = "<group>"; };
466A9FA8C77E9CB0A6C30F4F24ECF234 /* DOUAudioStreamer-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DOUAudioStreamer-umbrella.h"; sourceTree = "<group>"; };
48EC740185C1195E1FD4C0629F98D505 /* UIScrollView+MJExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIScrollView+MJExtension.h"; path = "MJRefresh/UIScrollView+MJExtension.h"; sourceTree = "<group>"; };
4955544D92C22CB6208729584103A3F5 /* UIImageView+Night.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+Night.m"; path = "DKNightVersion/Manual/UIImageView+Night.m"; sourceTree = "<group>"; };
4A6A57277E016E6E5D35518C6240A059 /* DOUEAGLView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DOUEAGLView.m; path = src/DOUEAGLView.m; sourceTree = "<group>"; };
4B3557C63989F6EE4793DA060355218A /* NSObject+Night.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+Night.h"; path = "DKNightVersion/Core/NSObject+Night.h"; sourceTree = "<group>"; };
4CB15A09E29AB66E6E4BEB4E774B49D7 /* UINavigationBar+Night.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UINavigationBar+Night.m"; path = "DKNightVersion/UIKit/UINavigationBar+Night.m"; sourceTree = "<group>"; };
4CCACCCD0900270A7B88E53E9215AAE2 /* LOTShapeTrimPath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTShapeTrimPath.h; path = "lottie-ios/Classes/Models/LOTShapeTrimPath.h"; sourceTree = "<group>"; };
4D56F0815F496C115CD10B21B0238F29 /* LOTAnimationView_Compat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTAnimationView_Compat.h; path = "lottie-ios/Classes/PublicHeaders/LOTAnimationView_Compat.h"; sourceTree = "<group>"; };
4DD852E738FA940D1736540B1F83D8E5 /* MJRefresh-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MJRefresh-umbrella.h"; sourceTree = "<group>"; };
4E4CC0F7AC78A2003637121F37EDF611 /* LOTAnimationView_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTAnimationView_Internal.h; path = "lottie-ios/Classes/Private/LOTAnimationView_Internal.h"; sourceTree = "<group>"; };
4E7796708667AB9A5FF920F6728FFA09 /* DOUAudioEventLoop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DOUAudioEventLoop.h; path = src/DOUAudioEventLoop.h; sourceTree = "<group>"; };
4EF9FADD5A5F2CC70F172995F3C337F1 /* YTKBatchRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YTKBatchRequest.m; path = YTKNetwork/YTKBatchRequest.m; sourceTree = "<group>"; };
4F12E3D1EE2FE3282F85AEBC51974135 /* MJRefreshBackGifFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackGifFooter.m; path = MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.m; sourceTree = "<group>"; };
51377F1C00DBCB333745F740A9C278D0 /* LOTRoundedRectAnimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTRoundedRectAnimator.h; path = "lottie-ios/Classes/RenderSystem/AnimatorNodes/LOTRoundedRectAnimator.h"; sourceTree = "<group>"; };
51617FC5CC8ACC2E0719A718BAF9CB84 /* LOTAsset.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTAsset.h; path = "lottie-ios/Classes/Models/LOTAsset.h"; sourceTree = "<group>"; };
51A9455DA127D75D95A5FA384C9889E4 /* LOTComposition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTComposition.h; path = "lottie-ios/Classes/PublicHeaders/LOTComposition.h"; sourceTree = "<group>"; };
51BA97E8B5085EFFB47BC9C0B785CEA7 /* Lottie.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Lottie.framework; sourceTree = BUILT_PRODUCTS_DIR; };
524325BE1192FF9AF99B9BEA5F6E9609 /* DKColor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DKColor.m; path = DKNightVersion/Core/DKColor.m; sourceTree = "<group>"; };
5284F2846ACDB26A89D66FB2791EE999 /* DOUAudioStreamer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DOUAudioStreamer.h; path = src/DOUAudioStreamer.h; sourceTree = "<group>"; };
52FE7CE8C302AF38C8C4B6F9DB342E24 /* YTKNetwork.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = YTKNetwork.release.xcconfig; sourceTree = "<group>"; };
53144645EA22B9B4D4F607AC2CCEA3D4 /* UIColor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UIColor.m; path = "lottie-ios/Classes/MacCompatibility/UIColor.m"; sourceTree = "<group>"; };
5346A061179634196424B6EEDDC3F774 /* CAShapeLayer+Night.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "CAShapeLayer+Night.m"; path = "DKNightVersion/CoreAnimation/CAShapeLayer+Night.m"; sourceTree = "<group>"; };
53830A52C8772A1ACF7C4F974479E9F1 /* LOTStrokeRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTStrokeRenderer.h; path = "lottie-ios/Classes/RenderSystem/RenderNodes/LOTStrokeRenderer.h"; sourceTree = "<group>"; };
547195BD3B8436206503A69DA21D349F /* DOUAudioStreamer.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DOUAudioStreamer.modulemap; sourceTree = "<group>"; };
54B14D1C0DC60F7978DBD8E40A156E0C /* CGGeometry+LOTAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "CGGeometry+LOTAdditions.m"; path = "lottie-ios/Classes/Extensions/CGGeometry+LOTAdditions.m"; sourceTree = "<group>"; };
563CE7A65CD2BEF9B6FF4E652DBAF382 /* MJRefreshAutoFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoFooter.m; path = MJRefresh/Base/MJRefreshAutoFooter.m; sourceTree = "<group>"; };
567FF3A874D28EBD0F89A512A8D4C480 /* LOTGradientFillRender.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTGradientFillRender.m; path = "lottie-ios/Classes/RenderSystem/RenderNodes/LOTGradientFillRender.m"; sourceTree = "<group>"; };
56B2CA642C2BA7E453FAC9D036EA10A8 /* Masonry-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Masonry-dummy.m"; sourceTree = "<group>"; };
573505CC2D55682037E2E204ABF24FC4 /* YTKNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YTKNetwork.h; path = YTKNetwork/YTKNetwork.h; sourceTree = "<group>"; };
5748308DEA2723C323CBC44EDE3D4F8B /* LOTShapeStroke.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTShapeStroke.h; path = "lottie-ios/Classes/Models/LOTShapeStroke.h"; sourceTree = "<group>"; };
576DD77D914C44B9D57CAA0B5455DB95 /* NSBundle+MJRefresh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSBundle+MJRefresh.h"; path = "MJRefresh/NSBundle+MJRefresh.h"; sourceTree = "<group>"; };
57DC7A922F4091DCA5F040ABC5D1D4BC /* DKColorTable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DKColorTable.h; path = DKNightVersion/ColorTable/DKColorTable.h; sourceTree = "<group>"; };
57E270873C7FC1B547132F92042E5F05 /* DOUSimpleHTTPRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DOUSimpleHTTPRequest.m; path = src/DOUSimpleHTTPRequest.m; sourceTree = "<group>"; };
5805A9FC58E5AF0D2235711328F0300C /* ViewController+MASAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ViewController+MASAdditions.h"; path = "Masonry/ViewController+MASAdditions.h"; sourceTree = "<group>"; };
58235547B9706A8835B2BD1A291394A0 /* UIProgressView+Night.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIProgressView+Night.h"; path = "DKNightVersion/UIKit/UIProgressView+Night.h"; sourceTree = "<group>"; };
5992AF29400B9C911020FB23E343774D /* DOUAudioAnalyzer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DOUAudioAnalyzer.m; path = src/DOUAudioAnalyzer.m; sourceTree = "<group>"; };
599AFCF575431C906C906A8FD5289463 /* AFURLResponseSerialization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFURLResponseSerialization.m; path = AFNetworking/AFURLResponseSerialization.m; sourceTree = "<group>"; };
5B1FD86A85E822F226C0AB7EEAEB0223 /* LOTShapeStar.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTShapeStar.m; path = "lottie-ios/Classes/Models/LOTShapeStar.m"; sourceTree = "<group>"; };
5B3C4280D09E00ACB2565434E5229135 /* MASCompositeConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASCompositeConstraint.m; path = Masonry/MASCompositeConstraint.m; sourceTree = "<group>"; };
5BB5DDEDEDFF4FD937167FD7EB65F92F /* UISwitch+Night.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UISwitch+Night.h"; path = "DKNightVersion/UIKit/UISwitch+Night.h"; sourceTree = "<group>"; };
5BBEB44913C149647E0C37627E8A8EB8 /* DOUAudioAnalyzer+Default.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "DOUAudioAnalyzer+Default.m"; path = "src/DOUAudioAnalyzer+Default.m"; sourceTree = "<group>"; };
5C0F96170E49DA074217EE798874CED8 /* LOTSizeInterpolator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTSizeInterpolator.m; path = "lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTSizeInterpolator.m"; sourceTree = "<group>"; };
5C585D99A4920501D7A31F2930B1503D /* DKNightVersion-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "DKNightVersion-Info.plist"; sourceTree = "<group>"; };
5D3A984F94ACC80D4E4B8F31B89D5512 /* CGGeometry+LOTAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "CGGeometry+LOTAdditions.h"; path = "lottie-ios/Classes/Extensions/CGGeometry+LOTAdditions.h"; sourceTree = "<group>"; };
5DBC92DC3F1D34B8DF7E7E221E09E92F /* UITabBar+Night.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UITabBar+Night.m"; path = "DKNightVersion/UIKit/UITabBar+Night.m"; sourceTree = "<group>"; };
5E32248877F9FAF43DF3C58EAD186D2F /* Pods-DreamSleep-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-DreamSleep-acknowledgements.markdown"; sourceTree = "<group>"; };
601EEA66C9A6080A11C1ADE5E2A91AE1 /* YTKNetwork */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = YTKNetwork; path = YTKNetwork.framework; sourceTree = BUILT_PRODUCTS_DIR; };
602CA2316962D466C4C5A35ABB54B102 /* DKDeallocBlockExecutor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DKDeallocBlockExecutor.m; path = DKNightVersion/DeallocBlockExecutor/DKDeallocBlockExecutor.m; sourceTree = "<group>"; };
60877D08910342F8C2C916DA180EEA51 /* UIControl+Night.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIControl+Night.m"; path = "DKNightVersion/UIKit/UIControl+Night.m"; sourceTree = "<group>"; };
60A132FCD8669BFB528A6F4619E8AF5E /* LOTPathAnimator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTPathAnimator.m; path = "lottie-ios/Classes/RenderSystem/AnimatorNodes/LOTPathAnimator.m"; sourceTree = "<group>"; };
60FDCA37A9CE6F3F4B4E6B4ACBA20C8B /* MASViewAttribute.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASViewAttribute.m; path = Masonry/MASViewAttribute.m; sourceTree = "<group>"; };
6131708A72A94C4FC07AB1ABD49610B9 /* LOTAnimationView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTAnimationView.m; path = "lottie-ios/Classes/Private/LOTAnimationView.m"; sourceTree = "<group>"; };
61C70E3B53EDAABF24185D8FB67B6DE1 /* DKNightVersion.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DKNightVersion.release.xcconfig; sourceTree = "<group>"; };
6414242B66D474672B2BAB04F4ADE328 /* DKImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DKImage.m; path = DKNightVersion/Core/DKImage.m; sourceTree = "<group>"; };
6557EF7C9C63B75BD3E767C3BB29359D /* UIView+Night.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+Night.h"; path = "DKNightVersion/UIKit/UIView+Night.h"; sourceTree = "<group>"; };
6582921FB78B1A04F2AA0EF2153DAC80 /* AFHTTPSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFHTTPSessionManager.h; path = AFNetworking/AFHTTPSessionManager.h; sourceTree = "<group>"; };
659F1465ED42942FE944092703E20D49 /* LOTMask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTMask.h; path = "lottie-ios/Classes/Models/LOTMask.h"; sourceTree = "<group>"; };
65A4E843D7541F7D0415C60168283A95 /* CALayer+Compat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "CALayer+Compat.m"; path = "lottie-ios/Classes/MacCompatibility/CALayer+Compat.m"; sourceTree = "<group>"; };
66B5A08E849E81725799AAD64FD9448F /* MJRefreshComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshComponent.m; path = MJRefresh/Base/MJRefreshComponent.m; sourceTree = "<group>"; };
66EE8C3A6191688DA4C5575479DE95D8 /* DOUAudioRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DOUAudioRenderer.h; path = src/DOUAudioRenderer.h; sourceTree = "<group>"; };
671B21C79E8A962B673C5D41F4B10DE0 /* LOTLayerContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTLayerContainer.h; path = "lottie-ios/Classes/AnimatableLayers/LOTLayerContainer.h"; sourceTree = "<group>"; };
674C023EC3504605F329399A0E15C291 /* LOTAnimationCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTAnimationCache.m; path = "lottie-ios/Classes/Private/LOTAnimationCache.m"; sourceTree = "<group>"; };
68F034394A9197A08BC51EB02D9F343A /* Pods-DreamSleep.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-DreamSleep.debug.xcconfig"; sourceTree = "<group>"; };
6A8921E310DE45E2E874FB6DAB10F17E /* View+MASAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "View+MASAdditions.m"; path = "Masonry/View+MASAdditions.m"; sourceTree = "<group>"; };
6A8E17BDC3F49BC6E4C2423FAF712ECC /* EXTKeyPathCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXTKeyPathCoding.h; path = DKNightVersion/extobjc/EXTKeyPathCoding.h; sourceTree = "<group>"; };
6C6FC00E62C246D94306D2A9932B237F /* LOTArrayInterpolator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTArrayInterpolator.m; path = "lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTArrayInterpolator.m"; sourceTree = "<group>"; };
6D145CEF16536EF73E2C07BD0A0F8B9D /* UITextField+Night.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UITextField+Night.h"; path = "DKNightVersion/UIKit/UITextField+Night.h"; sourceTree = "<group>"; };
6DD9EA26FF163823FEEEFAE58FE3E24E /* DKNightVersion-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DKNightVersion-umbrella.h"; sourceTree = "<group>"; };
6E156CBB0E5AD1FD6BF282CB32A6F475 /* LOTShapePath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTShapePath.h; path = "lottie-ios/Classes/Models/LOTShapePath.h"; sourceTree = "<group>"; };
6EBE227E73654B7E71A69FA5086892ED /* UITextView+Night.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UITextView+Night.h"; path = "DKNightVersion/UIKit/UITextView+Night.h"; sourceTree = "<group>"; };
6FBE6A405F12ECDA303062D0A964D78C /* UITextView+Keyboard.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UITextView+Keyboard.m"; path = "DKNightVersion/Manual/UITextView+Keyboard.m"; sourceTree = "<group>"; };
6FED8C3D34575EA1AAB407E36B5754C0 /* AFNetworking-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AFNetworking-dummy.m"; sourceTree = "<group>"; };
70029D17C6BAE503E327A02129214170 /* UITabBar+Night.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UITabBar+Night.h"; path = "DKNightVersion/UIKit/UITabBar+Night.h"; sourceTree = "<group>"; };
708047F5C44B8110BBF7D726BCC2A9B3 /* LOTPolygonAnimator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTPolygonAnimator.m; path = "lottie-ios/Classes/RenderSystem/AnimatorNodes/LOTPolygonAnimator.m"; sourceTree = "<group>"; };
70FEB4F98E6E7BF356EE8344F439BB0B /* LOTShapeCircle.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTShapeCircle.m; path = "lottie-ios/Classes/Models/LOTShapeCircle.m"; sourceTree = "<group>"; };
7119975FAEAC84FAB7BB5E8139E56ED2 /* LOTValueCallback.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTValueCallback.m; path = "lottie-ios/Classes/Private/LOTValueCallback.m"; sourceTree = "<group>"; };
7155D86374D8DB1E9BC0D48353BC60C0 /* LOTBezierPath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTBezierPath.h; path = "lottie-ios/Classes/Extensions/LOTBezierPath.h"; sourceTree = "<group>"; };
71ECA894BFD7462E5F684057392FA0BB /* DOUAudioVisualizer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DOUAudioVisualizer.m; path = src/DOUAudioVisualizer.m; sourceTree = "<group>"; };
71F01E9EBC9BC1AF40CE394AAD0F0539 /* LOTLayerGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTLayerGroup.m; path = "lottie-ios/Classes/Models/LOTLayerGroup.m"; sourceTree = "<group>"; };
71F90A9AE6E5BC668387D9593CC9EB2F /* MJRefresh.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MJRefresh.debug.xcconfig; sourceTree = "<group>"; };
724DEB37C028691E4AEE44D8F9281752 /* DKNightVersion-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DKNightVersion-dummy.m"; sourceTree = "<group>"; };
7266C66A1B0F62ED940CE889DDE8F17B /* LOTLayer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTLayer.m; path = "lottie-ios/Classes/Models/LOTLayer.m"; sourceTree = "<group>"; };
7393E94FC0BC7BEAD5E135CF4E0EA5FF /* YTKNetwork.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = YTKNetwork.debug.xcconfig; sourceTree = "<group>"; };
73D59BA1E88ECEE8C5D31FFE86E23039 /* LOTModels.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTModels.h; path = "lottie-ios/Classes/Models/LOTModels.h"; sourceTree = "<group>"; };
74339CD86B2AA7944A25D457A602E784 /* MJRefresh-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "MJRefresh-dummy.m"; sourceTree = "<group>"; };
744A10EC2EA2829494C16CD9C4A4EA6B /* DOUAudioStreamer+Options.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "DOUAudioStreamer+Options.h"; path = "src/DOUAudioStreamer+Options.h"; sourceTree = "<group>"; };
75135CC7DC7E76CE64A43892E7995AD5 /* lottie-ios-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "lottie-ios-dummy.m"; sourceTree = "<group>"; };
75DF7A190E94A8C1EE9DCAC9AAB70EAF /* LOTRepeaterRenderer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTRepeaterRenderer.m; path = "lottie-ios/Classes/RenderSystem/RenderNodes/LOTRepeaterRenderer.m"; sourceTree = "<group>"; };
76BD43D94DB949BBB99FF1F04F5F4412 /* UIColor+Expanded.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIColor+Expanded.m"; path = "lottie-ios/Classes/Extensions/UIColor+Expanded.m"; sourceTree = "<group>"; };
76EC770CF24EB9D4E250DA8EB20FC735 /* LOTCompositionContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTCompositionContainer.m; path = "lottie-ios/Classes/AnimatableLayers/LOTCompositionContainer.m"; sourceTree = "<group>"; };
770BA968072EF26E73EF408721770E49 /* LOTTransformInterpolator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTTransformInterpolator.h; path = "lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTTransformInterpolator.h"; sourceTree = "<group>"; };
773B8FE1B5C8166293E8DC5A37E8FB4A /* NSValue+Compat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSValue+Compat.m"; path = "lottie-ios/Classes/MacCompatibility/NSValue+Compat.m"; sourceTree = "<group>"; };
777D73BA1E02F055337F002C73AB52C7 /* LOTAnimationCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTAnimationCache.h; path = "lottie-ios/Classes/PublicHeaders/LOTAnimationCache.h"; sourceTree = "<group>"; };
784448F449C5717E29CBDD8190BE451A /* LOTNumberInterpolator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTNumberInterpolator.m; path = "lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTNumberInterpolator.m"; sourceTree = "<group>"; };
78990F6F1F6EAB4C80C33CAA4DCF76DA /* DKNightVersion.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DKNightVersion.debug.xcconfig; sourceTree = "<group>"; };
7903E21876E0700E9AD13F9CB9C4B754 /* MJRefreshAutoStateFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoStateFooter.m; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.m; sourceTree = "<group>"; };
7A7377A515C464F0423722F840ACBF65 /* NSObject+DeallocBlock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+DeallocBlock.h"; path = "DKNightVersion/DeallocBlockExecutor/NSObject+DeallocBlock.h"; sourceTree = "<group>"; };
7AFC52F98F310F7EC8B55BAC3444B96C /* DKColorTable.txt */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = DKColorTable.txt; path = DKNightVersion/ColorTable/DKColorTable.txt; sourceTree = "<group>"; };
7B4814608EA6E5717652A9D3F17AF0E9 /* AFURLResponseSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFURLResponseSerialization.h; path = AFNetworking/AFURLResponseSerialization.h; sourceTree = "<group>"; };
7B8B6D7E7072E552CA72FDE187E18C6D /* CoreAnimation+Night.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "CoreAnimation+Night.h"; path = "DKNightVersion/CoreAnimation/CoreAnimation+Night.h"; sourceTree = "<group>"; };
7E0ED0C8BFC0CAB759F10D4ED087BA38 /* UIScrollView+MJRefresh.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIScrollView+MJRefresh.m"; path = "MJRefresh/UIScrollView+MJRefresh.m"; sourceTree = "<group>"; };
7E368C24E9D9E4D2BA6890CD8FCF33ED /* MJRefreshGifHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshGifHeader.m; path = MJRefresh/Custom/Header/MJRefreshGifHeader.m; sourceTree = "<group>"; };
7E8D1437B40B455B1119E9044007D413 /* DOUAudioStreamer-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DOUAudioStreamer-dummy.m"; sourceTree = "<group>"; };
800F86EA6772CF41BA69981379B69D98 /* MJRefreshNormalHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshNormalHeader.m; path = MJRefresh/Custom/Header/MJRefreshNormalHeader.m; sourceTree = "<group>"; };
80F292E035E92248BB78EA440F764D5B /* YTKNetwork-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "YTKNetwork-umbrella.h"; sourceTree = "<group>"; };
80FF664C4DBC9B7F9090FD21D933ED2D /* NSArray+MASAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSArray+MASAdditions.h"; path = "Masonry/NSArray+MASAdditions.h"; sourceTree = "<group>"; };
8157FBFA81DB3D5A73A24FEE9B545E91 /* YTKChainRequestAgent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YTKChainRequestAgent.m; path = YTKNetwork/YTKChainRequestAgent.m; sourceTree = "<group>"; };
82A69F2BF6B36A6DAC5EF6CC3169937F /* DKNightVersion.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DKNightVersion.modulemap; sourceTree = "<group>"; };
82CCA789264003E10BF25A693DF65D72 /* View+MASShorthandAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "View+MASShorthandAdditions.h"; path = "Masonry/View+MASShorthandAdditions.h"; sourceTree = "<group>"; };
83FDB2D9FCCCDA6E8E10650EAFF24FAF /* MJRefreshAutoGifFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoGifFooter.m; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.m; sourceTree = "<group>"; };
84336DC02BC104C5149239017C5060C0 /* DOUAudioFilePreprocessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DOUAudioFilePreprocessor.h; path = src/DOUAudioFilePreprocessor.h; sourceTree = "<group>"; };
84C38BC59F69B6E017C8727A2A90319F /* DKNightVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DKNightVersion.h; path = DKNightVersion/DKNightVersion.h; sourceTree = "<group>"; };
853073D6C09C58415D86A7B75087C673 /* MJRefreshNormalTrailer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshNormalTrailer.h; path = MJRefresh/Custom/Trailer/MJRefreshNormalTrailer.h; sourceTree = "<group>"; };
85D54CE2DA206845FCD0783E2A9D9B28 /* ViewController+MASAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "ViewController+MASAdditions.m"; path = "Masonry/ViewController+MASAdditions.m"; sourceTree = "<group>"; };
86C619B59F91E64C1C0BFD2F81D89A03 /* LOTShapeRectangle.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTShapeRectangle.m; path = "lottie-ios/Classes/Models/LOTShapeRectangle.m"; sourceTree = "<group>"; };
877A385C0935F40DC898B5E7E2765E0D /* LOTBezierPath.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTBezierPath.m; path = "lottie-ios/Classes/Extensions/LOTBezierPath.m"; sourceTree = "<group>"; };
87B2392350ED7A67F74B5472C7F75A78 /* LOTColorInterpolator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTColorInterpolator.h; path = "lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTColorInterpolator.h"; sourceTree = "<group>"; };
8836CF55EB5868758F9EFF8D07AB1A16 /* LOTRenderNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTRenderNode.m; path = "lottie-ios/Classes/RenderSystem/LOTRenderNode.m"; sourceTree = "<group>"; };
884A2233314F84F50BC3138ABA0B72D1 /* OpenGLES.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGLES.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/OpenGLES.framework; sourceTree = DEVELOPER_DIR; };
8A402CA48FFA3B0DCB84A834FBA2E79B /* UISlider+Night.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UISlider+Night.m"; path = "DKNightVersion/UIKit/UISlider+Night.m"; sourceTree = "<group>"; };
8A5AC121203D5FCC6E8F97B028818019 /* DOUAudioStreamer.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DOUAudioStreamer.debug.xcconfig; sourceTree = "<group>"; };
8A84D3E2EFD9B3D614DAC6D41A8E07E6 /* DOUAudioFrequencyAnalyzer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DOUAudioFrequencyAnalyzer.h; path = src/DOUAudioFrequencyAnalyzer.h; sourceTree = "<group>"; };
8A92427F9E7800F7AB755F693BFC6529 /* LOTRenderGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTRenderGroup.m; path = "lottie-ios/Classes/RenderSystem/RenderNodes/LOTRenderGroup.m"; sourceTree = "<group>"; };
8BAFDEF98193AC1E08A5890F32FA3C03 /* LOTShapeFill.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTShapeFill.h; path = "lottie-ios/Classes/Models/LOTShapeFill.h"; sourceTree = "<group>"; };
8C83127FFEB4862AEFA71571FDB53463 /* UIBezierPath.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UIBezierPath.m; path = "lottie-ios/Classes/MacCompatibility/UIBezierPath.m"; sourceTree = "<group>"; };
8D7596AA9A5CA5C9A64C05DA8EDC77D5 /* MJRefresh-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "MJRefresh-Info.plist"; sourceTree = "<group>"; };
8DB81AF83ED22E8C11B6291528AF73C9 /* MASLayoutConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASLayoutConstraint.h; path = Masonry/MASLayoutConstraint.h; sourceTree = "<group>"; };
8E4955A5ED68051E9ED70B9FB755E5A9 /* DKAlpha.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DKAlpha.h; path = DKNightVersion/Core/DKAlpha.h; sourceTree = "<group>"; };
8E7B6F0D83472F40A6DC6870FA04699C /* Masonry.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Masonry.modulemap; sourceTree = "<group>"; };
8EE7F63F421F98AFE4555130333F2648 /* YTKNetwork.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = YTKNetwork.modulemap; sourceTree = "<group>"; };
8FBD8F08C6680B0A346FF6A3AAED838F /* UITextField+Night.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UITextField+Night.m"; path = "DKNightVersion/UIKit/UITextField+Night.m"; sourceTree = "<group>"; };
8FC77E9071580DBCC0F7045ADF00042F /* DOUAudioLPCM.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DOUAudioLPCM.h; path = src/DOUAudioLPCM.h; sourceTree = "<group>"; };
90142F0E5BCBAD3CB819B101B03DE2AA /* LOTPolygonAnimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTPolygonAnimator.h; path = "lottie-ios/Classes/RenderSystem/AnimatorNodes/LOTPolygonAnimator.h"; sourceTree = "<group>"; };
90599F1CC0564C43B34611D1A1EADD5C /* DOUAudioFilePreprocessor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DOUAudioFilePreprocessor.m; path = src/DOUAudioFilePreprocessor.m; sourceTree = "<group>"; };
9064AFA8DB66232749B4424E92986E35 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/AudioToolbox.framework; sourceTree = DEVELOPER_DIR; };
909CC0749CCDB69A767CA9C51C42017E /* YTKBatchRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YTKBatchRequest.h; path = YTKNetwork/YTKBatchRequest.h; sourceTree = "<group>"; };
91427D37710BFE04E39CBA060E71D650 /* DOUAudioEventLoop.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DOUAudioEventLoop.m; path = src/DOUAudioEventLoop.m; sourceTree = "<group>"; };
9167ACC5D02210ABACC44C7625293F1C /* LOTShapeGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTShapeGroup.h; path = "lottie-ios/Classes/Models/LOTShapeGroup.h"; sourceTree = "<group>"; };
91F04B77F00D5EDD1BC6C2B3495435D6 /* MJRefreshBackStateFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackStateFooter.m; path = MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.m; sourceTree = "<group>"; };
9246269C24709EF0A1BB6AA935033476 /* MJRefreshFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshFooter.h; path = MJRefresh/Base/MJRefreshFooter.h; sourceTree = "<group>"; };
929B1EE23846CF7676A04EA7F890D2CB /* DOUAudioStreamer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DOUAudioStreamer.m; path = src/DOUAudioStreamer.m; sourceTree = "<group>"; };
92E03F831CA098764FC0BE1A9C64B65B /* UINavigationBar+Animation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UINavigationBar+Animation.h"; path = "DKNightVersion/Manual/UINavigationBar+Animation.h"; sourceTree = "<group>"; };
92F3480D6959032BCE6FA76D4B2C5A0C /* DOUAudioDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DOUAudioDecoder.h; path = src/DOUAudioDecoder.h; sourceTree = "<group>"; };
932AA11A72616C49841A2BE46B98D4AF /* lottie-ios.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "lottie-ios.modulemap"; sourceTree = "<group>"; };
94D89884B26D59C350AAA12F917A2916 /* DOUAudioStreamer-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DOUAudioStreamer-prefix.pch"; sourceTree = "<group>"; };
958EECCD4B99966FDA106B71AAE22F71 /* LOTShapeTrimPath.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTShapeTrimPath.m; path = "lottie-ios/Classes/Models/LOTShapeTrimPath.m"; sourceTree = "<group>"; };
95D2583F038E863664FC11706DC3F480 /* lottie-ios-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "lottie-ios-Info.plist"; sourceTree = "<group>"; };
95D9C13ACFB8C5D018970B6A19834A2A /* DOUAudioSpatialAnalyzer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DOUAudioSpatialAnalyzer.h; path = src/DOUAudioSpatialAnalyzer.h; sourceTree = "<group>"; };
9659812BE2E83EA4EA58F7F18D066C08 /* MJRefreshHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshHeader.m; path = MJRefresh/Base/MJRefreshHeader.m; sourceTree = "<group>"; };
96F65AFC266289C03368D894ABE44B4A /* LOTRoundedRectAnimator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTRoundedRectAnimator.m; path = "lottie-ios/Classes/RenderSystem/AnimatorNodes/LOTRoundedRectAnimator.m"; sourceTree = "<group>"; };
979A35C4AC49E3F62D0C6D5D63B3FDF3 /* UITableView+Night.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UITableView+Night.h"; path = "DKNightVersion/UIKit/UITableView+Night.h"; sourceTree = "<group>"; };
97DFCEB67B0583F7FE08DE27B736C4EF /* MASUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASUtilities.h; path = Masonry/MASUtilities.h; sourceTree = "<group>"; };
983999D88CE1EF77A604991D3CBBFC7E /* MJRefreshStateHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshStateHeader.m; path = MJRefresh/Custom/Header/MJRefreshStateHeader.m; sourceTree = "<group>"; };
994A3BF9CFF2DF944FFFBAD9623F4E12 /* LOTAnimatedControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTAnimatedControl.h; path = "lottie-ios/Classes/PublicHeaders/LOTAnimatedControl.h"; sourceTree = "<group>"; };
996381E1369121128D1103589BB918BD /* YTKNetworkPrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YTKNetworkPrivate.h; path = YTKNetwork/YTKNetworkPrivate.h; sourceTree = "<group>"; };
997A3EBEEC068C7A7981850CA57CDB04 /* LOTInterpolatorCallback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTInterpolatorCallback.h; path = "lottie-ios/Classes/PublicHeaders/LOTInterpolatorCallback.h"; sourceTree = "<group>"; };
9BD6F0B21CDAE9FA26016DC870A83047 /* Pods-DreamSleep */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-DreamSleep"; path = Pods_DreamSleep.framework; sourceTree = BUILT_PRODUCTS_DIR; };
9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
9E0B409FB4377D1597E53219FBB638D8 /* LOTShapeStroke.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTShapeStroke.m; path = "lottie-ios/Classes/Models/LOTShapeStroke.m"; sourceTree = "<group>"; };
9E92910C3C0DEC9A08E0EF265AFC7BCB /* LOTMask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTMask.m; path = "lottie-ios/Classes/Models/LOTMask.m"; sourceTree = "<group>"; };
9EEC26472F3A40DC6B75EF338FBA82C5 /* UISlider+Night.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UISlider+Night.h"; path = "DKNightVersion/UIKit/UISlider+Night.h"; sourceTree = "<group>"; };
9F0A8D07FB63A5F14AD66B994B5D825D /* CFNetwork.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CFNetwork.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/CFNetwork.framework; sourceTree = DEVELOPER_DIR; };
9F5E929FCC4EA55FEA25F1C3AB027599 /* LOTLayer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTLayer.h; path = "lottie-ios/Classes/Models/LOTLayer.h"; sourceTree = "<group>"; };
9FC2034AEDC5DCD5C569A6113CB40617 /* Accelerate.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Accelerate.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/Accelerate.framework; sourceTree = DEVELOPER_DIR; };
A0089BE48A622B9AAAB7C9A8A4331323 /* LOTAsset.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTAsset.m; path = "lottie-ios/Classes/Models/LOTAsset.m"; sourceTree = "<group>"; };
A09AAEE52FCD8A6F655DB3C05E334BA2 /* LOTShapeRepeater.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTShapeRepeater.m; path = "lottie-ios/Classes/Models/LOTShapeRepeater.m"; sourceTree = "<group>"; };
A0DF11B9B90D68D17CFD79E0C0840170 /* YTKNetworkConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YTKNetworkConfig.h; path = YTKNetwork/YTKNetworkConfig.h; sourceTree = "<group>"; };
A15E6D7A429BE39D3C02011B0951E75C /* MJRefreshConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshConfig.h; path = MJRefresh/MJRefreshConfig.h; sourceTree = "<group>"; };
A2A1F9A2C68F2AC10DC0E8802101B19A /* MJRefreshGifHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshGifHeader.h; path = MJRefresh/Custom/Header/MJRefreshGifHeader.h; sourceTree = "<group>"; };
A3D6B2BDFDB40AE097E5E5893BD38503 /* YTKRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YTKRequest.h; path = YTKNetwork/YTKRequest.h; sourceTree = "<group>"; };
A42A60881A8A580D998AE0CE08F7ADDC /* DOUAudioStreamer_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DOUAudioStreamer_Private.h; path = src/DOUAudioStreamer_Private.h; sourceTree = "<group>"; };
A4FA15D44DF6BAC7550EDEED10862AA3 /* AFNetworking */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = AFNetworking; path = AFNetworking.framework; sourceTree = BUILT_PRODUCTS_DIR; };
A609163574B2A5AAF6E31D135A396242 /* YTKNetwork-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "YTKNetwork-prefix.pch"; sourceTree = "<group>"; };
A61A944A21C1A31EF748C6EA9AEC2580 /* lottie-ios-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "lottie-ios-umbrella.h"; sourceTree = "<group>"; };
A66E9F2F138A5819A623C8F76D228904 /* MJRefreshBackGifFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackGifFooter.h; path = MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.h; sourceTree = "<group>"; };
A6AF3E29A3D603BE09E494333B8CC1B8 /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreAudio.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/CoreAudio.framework; sourceTree = DEVELOPER_DIR; };
A7875588CD22164AC76D5D5A1BB55E66 /* LOTAnimatedSwitch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTAnimatedSwitch.m; path = "lottie-ios/Classes/Private/LOTAnimatedSwitch.m"; sourceTree = "<group>"; };
A7D5D02912B8E97725E76F13BF2E4B15 /* DOUAudioPlaybackItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DOUAudioPlaybackItem.h; path = src/DOUAudioPlaybackItem.h; sourceTree = "<group>"; };
A7DE1FAA4D6A2756E5D201D3B8470344 /* lottie-ios.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "lottie-ios.release.xcconfig"; sourceTree = "<group>"; };
A7ED459281A6037872BB9907465DA8E6 /* LOTPathInterpolator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTPathInterpolator.h; path = "lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTPathInterpolator.h"; sourceTree = "<group>"; };
A8B5F2693581E7ADE9BA85F4D253FB6E /* MJRefreshStateTrailer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshStateTrailer.h; path = MJRefresh/Custom/Trailer/MJRefreshStateTrailer.h; sourceTree = "<group>"; };
A8FCE61B24E1E9FE036F5E2FC3DFA328 /* UINavigationBar+Night.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UINavigationBar+Night.h"; path = "DKNightVersion/UIKit/UINavigationBar+Night.h"; sourceTree = "<group>"; };
AAE579CD73422C15C2786408ACA11BF8 /* YTKBatchRequestAgent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YTKBatchRequestAgent.m; path = YTKNetwork/YTKBatchRequestAgent.m; sourceTree = "<group>"; };
AB6FF2F91C72B2C669E055721AA8CBA6 /* LOTPointInterpolator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTPointInterpolator.h; path = "lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTPointInterpolator.h"; sourceTree = "<group>"; };
AD901BFAEB4A03B20B73ED487B38F6CB /* AFCompatibilityMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFCompatibilityMacros.h; path = AFNetworking/AFCompatibilityMacros.h; sourceTree = "<group>"; };
AE956FCB5BD078F5426FA9C4A020D63D /* MobileCoreServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MobileCoreServices.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/MobileCoreServices.framework; sourceTree = DEVELOPER_DIR; };
AF11679892B0D6EE490026F1260A3B87 /* DKImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DKImage.h; path = DKNightVersion/Core/DKImage.h; sourceTree = "<group>"; };
AF8A827B3B1A49D31159CDC8E6991B54 /* MJRefresh-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MJRefresh-prefix.pch"; sourceTree = "<group>"; };
AFBE6B06160A5A3DC3F70CADF1B4B8B8 /* LOTShapeGradientFill.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTShapeGradientFill.m; path = "lottie-ios/Classes/Models/LOTShapeGradientFill.m"; sourceTree = "<group>"; };
AFC95C6EDCE75B0B5138C60E594642E0 /* MJRefresh.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MJRefresh.release.xcconfig; sourceTree = "<group>"; };
AFDFE98DCC854809CEEAB3E63F5B10C3 /* NSArray+MASAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSArray+MASAdditions.m"; path = "Masonry/NSArray+MASAdditions.m"; sourceTree = "<group>"; };
B027CC1F4AA182A8E45B537109DCECC2 /* AFNetworkReachabilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFNetworkReachabilityManager.h; path = AFNetworking/AFNetworkReachabilityManager.h; sourceTree = "<group>"; };
B081193556554CB602679B2A9B82A5F0 /* UIColor+Expanded.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIColor+Expanded.h"; path = "lottie-ios/Classes/Extensions/UIColor+Expanded.h"; sourceTree = "<group>"; };
B0CA88AC42DD1CE1E4CCA088F5C624D4 /* MJRefresh.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = MJRefresh.bundle; path = MJRefresh/MJRefresh.bundle; sourceTree = "<group>"; };
B29AE21AB4E356640AB7A031CAA89D90 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/UIKit.framework; sourceTree = DEVELOPER_DIR; };
B2A47FFADCA34F0DFA781694F2F939F8 /* LOTPathAnimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTPathAnimator.h; path = "lottie-ios/Classes/RenderSystem/AnimatorNodes/LOTPathAnimator.h"; sourceTree = "<group>"; };
B2ADD1145CD107D89FBCAC973273C57E /* MJRefreshHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshHeader.h; path = MJRefresh/Base/MJRefreshHeader.h; sourceTree = "<group>"; };
B2B4A4BCAD525150F75DD309797D5C10 /* DOUAudioStreamer+Options.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "DOUAudioStreamer+Options.m"; path = "src/DOUAudioStreamer+Options.m"; sourceTree = "<group>"; };
B347BE1D1529C9E7BF073F6E5C2BE554 /* LOTTransformInterpolator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTTransformInterpolator.m; path = "lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTTransformInterpolator.m"; sourceTree = "<group>"; };
B3CB7DE69756A6EE3B65110DA9A5479F /* LOTFillRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTFillRenderer.h; path = "lottie-ios/Classes/RenderSystem/RenderNodes/LOTFillRenderer.h"; sourceTree = "<group>"; };
B4200C5DF7BC0AAE59C7A446C2EF7405 /* LOTShapeTransform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTShapeTransform.m; path = "lottie-ios/Classes/Models/LOTShapeTransform.m"; sourceTree = "<group>"; };
B44FE26E50E0DAC351D2EBD05BA32A86 /* LOTRadialGradientLayer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTRadialGradientLayer.h; path = "lottie-ios/Classes/Extensions/LOTRadialGradientLayer.h"; sourceTree = "<group>"; };
B4A4581CEB8EFB276353203EE56F3946 /* LOTStrokeRenderer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTStrokeRenderer.m; path = "lottie-ios/Classes/RenderSystem/RenderNodes/LOTStrokeRenderer.m"; sourceTree = "<group>"; };
B4DBFED092C92E6A1CE4C5470C24EC65 /* MJRefreshAutoFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoFooter.h; path = MJRefresh/Base/MJRefreshAutoFooter.h; sourceTree = "<group>"; };
B58014613EDC25BE502C268732F1E255 /* LOTHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTHelpers.h; path = "lottie-ios/Classes/Extensions/LOTHelpers.h"; sourceTree = "<group>"; };
B5E80A3E8E7BEC00CB8D8D086F0D0FFA /* AFURLSessionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFURLSessionManager.m; path = AFNetworking/AFURLSessionManager.m; sourceTree = "<group>"; };
B6E04B47E61D8F8F434E24ABE164E64B /* Pods-DreamSleep.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-DreamSleep.release.xcconfig"; sourceTree = "<group>"; };
B722C83E8542A8E73B486BCA4E9C7D07 /* UIScrollView+MJRefresh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIScrollView+MJRefresh.h"; path = "MJRefresh/UIScrollView+MJRefresh.h"; sourceTree = "<group>"; };
B72CB3FF7CF34210E824D3EBCD619792 /* NSValue+Compat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSValue+Compat.h"; path = "lottie-ios/Classes/MacCompatibility/NSValue+Compat.h"; sourceTree = "<group>"; };
B8101E6DD214CED0F9B1DF3E0519F61F /* YTKNetwork-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "YTKNetwork-dummy.m"; sourceTree = "<group>"; };
B84974AD255DDCB2D9471E5CA1B01F06 /* UILabel+Night.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UILabel+Night.h"; path = "DKNightVersion/UIKit/UILabel+Night.h"; sourceTree = "<group>"; };
B84C8C9BEBE7AF686C6FC022B4EB6EDE /* AVFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AVFoundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/AVFoundation.framework; sourceTree = DEVELOPER_DIR; };
B8E122478645A87FFBEB3BCC4D1B596D /* UIBarButtonItem+Night.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIBarButtonItem+Night.h"; path = "DKNightVersion/UIKit/UIBarButtonItem+Night.h"; sourceTree = "<group>"; };
BA3F4B205FBEA28CB6A3CDE45A6A559D /* UIProgressView+Night.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIProgressView+Night.m"; path = "DKNightVersion/UIKit/UIProgressView+Night.m"; sourceTree = "<group>"; };
BA97921C8F041A61721662724E85EEF5 /* LOTColorInterpolator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTColorInterpolator.m; path = "lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTColorInterpolator.m"; sourceTree = "<group>"; };
BABA85DE90D55BAA7158D1A3835D907E /* MJRefreshBackNormalFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackNormalFooter.h; path = MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.h; sourceTree = "<group>"; };
BB118885A8CB138E63F1E2FC81868730 /* LOTRadialGradientLayer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTRadialGradientLayer.m; path = "lottie-ios/Classes/Extensions/LOTRadialGradientLayer.m"; sourceTree = "<group>"; };
BB45AE3658EFBB04CC32F1A773CDE3B0 /* LOTShapeCircle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTShapeCircle.h; path = "lottie-ios/Classes/Models/LOTShapeCircle.h"; sourceTree = "<group>"; };
BB7002C79FB3BDB39B3C584E921588A9 /* YTKRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YTKRequest.m; path = YTKNetwork/YTKRequest.m; sourceTree = "<group>"; };
BB8CB815050173EDA7E2228B5F9B6961 /* DOUAudioAnalyzer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DOUAudioAnalyzer.h; path = src/DOUAudioAnalyzer.h; sourceTree = "<group>"; };
BD108548744C7C0DFB36427632B760F4 /* YTKNetworkAgent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YTKNetworkAgent.m; path = YTKNetwork/YTKNetworkAgent.m; sourceTree = "<group>"; };
BF34A9D3A053CF7B3C96F8D5D1B2B34F /* AFNetworking-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AFNetworking-prefix.pch"; sourceTree = "<group>"; };
C0CE97B73BE929BE8A7EFB0C62F049ED /* Masonry-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Masonry-Info.plist"; sourceTree = "<group>"; };
C25BDB2368273A0425794BF483E40793 /* YTKNetworkConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YTKNetworkConfig.m; path = YTKNetwork/YTKNetworkConfig.m; sourceTree = "<group>"; };
C2ACB6289976A8B3F1116083560A0446 /* MJRefreshBackFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackFooter.h; path = MJRefresh/Base/MJRefreshBackFooter.h; sourceTree = "<group>"; };
C31D3A26DF0CDC076253740C6924E62C /* YTKNetworkAgent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YTKNetworkAgent.h; path = YTKNetwork/YTKNetworkAgent.h; sourceTree = "<group>"; };
C360C836D0D01B5D07173BD0DA0B41E0 /* MJRefreshNormalHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshNormalHeader.h; path = MJRefresh/Custom/Header/MJRefreshNormalHeader.h; sourceTree = "<group>"; };
C39DD83EEA0A4B82B2CDB10C23711C8E /* UIView+Night.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+Night.m"; path = "DKNightVersion/UIKit/UIView+Night.m"; sourceTree = "<group>"; };
C3A29BF3F668FFBF047AEA7DA642B83C /* UIView+MJExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+MJExtension.h"; path = "MJRefresh/UIView+MJExtension.h"; sourceTree = "<group>"; };
C3AB519539E71F1F0A615D5E9F29937D /* DOUAudioPlaybackItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DOUAudioPlaybackItem.m; path = src/DOUAudioPlaybackItem.m; sourceTree = "<group>"; };
C413E208895B19DD11BD3D8551841E04 /* Masonry-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Masonry-prefix.pch"; sourceTree = "<group>"; };
C41877007B1BC75E0519753081886F86 /* AFNetworking.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AFNetworking.release.xcconfig; sourceTree = "<group>"; };
C549168423072CDE39A9D805A9118BD2 /* LOTAnimatorNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTAnimatorNode.h; path = "lottie-ios/Classes/RenderSystem/LOTAnimatorNode.h"; sourceTree = "<group>"; };
C68CB20EC8C119DA89154F8D65BC7AE7 /* MJRefreshTrailer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshTrailer.h; path = MJRefresh/Base/MJRefreshTrailer.h; sourceTree = "<group>"; };
C6A39349F1ECD7AEAA19F734A2E760D5 /* DOUAudioFile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DOUAudioFile.h; path = src/DOUAudioFile.h; sourceTree = "<group>"; };
C72EF8EDBD7C25B6A8D298EB5D3E0A11 /* DOUEAGLView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DOUEAGLView.h; path = src/DOUEAGLView.h; sourceTree = "<group>"; };
C73C633D2D1D231087507229F4DAB08C /* LOTShapeGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTShapeGroup.m; path = "lottie-ios/Classes/Models/LOTShapeGroup.m"; sourceTree = "<group>"; };
C77FE7015321359DE4E5E4F014C45D25 /* LOTMaskContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTMaskContainer.h; path = "lottie-ios/Classes/AnimatableLayers/LOTMaskContainer.h"; sourceTree = "<group>"; };
CC31489B28DF73F4AB83CACFFCA94C31 /* AFNetworking-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AFNetworking-umbrella.h"; sourceTree = "<group>"; };
CC372E9573395968BF138BC55CB3D052 /* LOTShapeRepeater.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTShapeRepeater.h; path = "lottie-ios/Classes/Models/LOTShapeRepeater.h"; sourceTree = "<group>"; };
CCD741B544713327A5D8FE930712A33A /* MASConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASConstraint.m; path = Masonry/MASConstraint.m; sourceTree = "<group>"; };
CD37C86AC1B4AD4870A1D1FA748F3BAA /* NSObject+DeallocBlock.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+DeallocBlock.m"; path = "DKNightVersion/DeallocBlockExecutor/NSObject+DeallocBlock.m"; sourceTree = "<group>"; };
CDB356329E7A866577E036A7328BE528 /* MJRefresh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefresh.h; path = MJRefresh/MJRefresh.h; sourceTree = "<group>"; };
CDDD290395FA4622C9C17DDA5B2D8201 /* UIColor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UIColor.h; path = "lottie-ios/Classes/MacCompatibility/UIColor.h"; sourceTree = "<group>"; };
CE6735EAB5090F2AD3E670F87F6FC037 /* MJRefreshFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshFooter.m; path = MJRefresh/Base/MJRefreshFooter.m; sourceTree = "<group>"; };
CE6DF0D74F2FC70C3A1FC07E1635D211 /* Pods-DreamSleep-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-DreamSleep-umbrella.h"; sourceTree = "<group>"; };
CEA8B3AEDAF0B855AC704767818716CA /* MJRefreshStateTrailer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshStateTrailer.m; path = MJRefresh/Custom/Trailer/MJRefreshStateTrailer.m; sourceTree = "<group>"; };
CF9A8C77D1269B2FCEF0002252025D53 /* MJRefreshBackNormalFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackNormalFooter.m; path = MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.m; sourceTree = "<group>"; };
CFBC989B20D135B3A5BD35C3265FF4C8 /* NSLayoutConstraint+MASDebugAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSLayoutConstraint+MASDebugAdditions.h"; path = "Masonry/NSLayoutConstraint+MASDebugAdditions.h"; sourceTree = "<group>"; };
CFC67FADB31FFD4128A65F5C6071741F /* LOTValueInterpolator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTValueInterpolator.h; path = "lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTValueInterpolator.h"; sourceTree = "<group>"; };
D030F50513D58EBF080BED6207DFAE11 /* DOUAudioAnalyzer+Default.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "DOUAudioAnalyzer+Default.h"; path = "src/DOUAudioAnalyzer+Default.h"; sourceTree = "<group>"; };
D0F808EE2803D22C0097899F /* MobileCoreServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MobileCoreServices.framework; path = System/iOSSupport/System/Library/Frameworks/MobileCoreServices.framework; sourceTree = SDKROOT; };
D14D5F8B01899D75A425D9CCE532D34E /* LOTAnimatedSwitch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTAnimatedSwitch.h; path = "lottie-ios/Classes/PublicHeaders/LOTAnimatedSwitch.h"; sourceTree = "<group>"; };
D19AFA5B0631D347EA4B4C8BC4E06877 /* View+MASAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "View+MASAdditions.h"; path = "Masonry/View+MASAdditions.h"; sourceTree = "<group>"; };
D1E9EB4575398BBA07631D4059AC9CA6 /* MJRefreshNormalTrailer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshNormalTrailer.m; path = MJRefresh/Custom/Trailer/MJRefreshNormalTrailer.m; sourceTree = "<group>"; };
D48F4622D78FB5A3746FF07837A7D86D /* AFSecurityPolicy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFSecurityPolicy.m; path = AFNetworking/AFSecurityPolicy.m; sourceTree = "<group>"; };
D49390DC16189A74052FAC3455F18249 /* DKNightVersion.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = DKNightVersion.framework; sourceTree = BUILT_PRODUCTS_DIR; };
D4BECB77D71D8B948BF94FE97E1FDFF3 /* UIImageView+Night.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+Night.h"; path = "DKNightVersion/Manual/UIImageView+Night.h"; sourceTree = "<group>"; };
D59913EE7F81B153BD9A0A041C21D378 /* LOTBlockCallback.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTBlockCallback.m; path = "lottie-ios/Classes/Private/LOTBlockCallback.m"; sourceTree = "<group>"; };
D825E201C9C064B75406F3DBA8689A03 /* DOUAudioFileProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DOUAudioFileProvider.h; path = src/DOUAudioFileProvider.h; sourceTree = "<group>"; };
D82E59CD67549FE4E9027EEC22B28CE6 /* DOUAudioSpatialAnalyzer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DOUAudioSpatialAnalyzer.m; path = src/DOUAudioSpatialAnalyzer.m; sourceTree = "<group>"; };
DB4AE61D5F335D48974787282B38235E /* DKNightVersionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DKNightVersionManager.m; path = DKNightVersion/Core/DKNightVersionManager.m; sourceTree = "<group>"; };
DB5BD4673DADD19240DB2006B4E10BD2 /* LOTBezierData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTBezierData.h; path = "lottie-ios/Classes/AnimatableProperties/LOTBezierData.h"; sourceTree = "<group>"; };
DC07C6175B1E2AD14C544CBC093833E9 /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/QuartzCore.framework; sourceTree = DEVELOPER_DIR; };
DC39EB1CB23093A7E5B528C76E5C878F /* DOUAudioStreamer.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DOUAudioStreamer.release.xcconfig; sourceTree = "<group>"; };
DCAB581382B7E7CB9A07F760BC9F9BCE /* UIToolbar+Night.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIToolbar+Night.m"; path = "DKNightVersion/UIKit/UIToolbar+Night.m"; sourceTree = "<group>"; };
DD571807F88CD734D6B696E966CE85EB /* MediaPlayer.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MediaPlayer.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/MediaPlayer.framework; sourceTree = DEVELOPER_DIR; };
DDFC740B104018628742FD24DC873F5C /* LOTPathInterpolator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTPathInterpolator.m; path = "lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTPathInterpolator.m"; sourceTree = "<group>"; };
DE67CCEA9DD29E1D3F4A2E69C731AEFA /* MJRefreshConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshConst.h; path = MJRefresh/MJRefreshConst.h; sourceTree = "<group>"; };
DE6F7FF2675CE34DD1CC90AA70B68536 /* YTKChainRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YTKChainRequest.h; path = YTKNetwork/YTKChainRequest.h; sourceTree = "<group>"; };
DEA0B30E03D14BF13B5D36D5BA5A9C93 /* DKAlpha.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DKAlpha.m; path = DKNightVersion/Core/DKAlpha.m; sourceTree = "<group>"; };
DEADC5052A5D5D8DA277F47BBDC4CB1A /* AFHTTPSessionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFHTTPSessionManager.m; path = AFNetworking/AFHTTPSessionManager.m; sourceTree = "<group>"; };
DF53BFE961B95FA111AD2D987F368D96 /* YTKBatchRequestAgent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YTKBatchRequestAgent.h; path = YTKNetwork/YTKBatchRequestAgent.h; sourceTree = "<group>"; };
DF7C35E0CDB0FDBF14749EE9592A107E /* AFNetworkReachabilityManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFNetworkReachabilityManager.m; path = AFNetworking/AFNetworkReachabilityManager.m; sourceTree = "<group>"; };
E12B473EAC11C086B90F8636345D580D /* LOTLayerContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTLayerContainer.m; path = "lottie-ios/Classes/AnimatableLayers/LOTLayerContainer.m"; sourceTree = "<group>"; };
E2C3504119384AB1F5626C6F75B2A687 /* UIBezierPath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UIBezierPath.h; path = "lottie-ios/Classes/MacCompatibility/UIBezierPath.h"; sourceTree = "<group>"; };
E2D1205B304D21F7F5AE5B7B5E47E782 /* DOUAudioRenderer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DOUAudioRenderer.m; path = src/DOUAudioRenderer.m; sourceTree = "<group>"; };
E49D6D248DD1CEE584E6776B9164A1B2 /* MJRefresh */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = MJRefresh; path = MJRefresh.framework; sourceTree = BUILT_PRODUCTS_DIR; };
E4B1440463672D77ACEEDD1E97285281 /* NSArray+MASShorthandAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSArray+MASShorthandAdditions.h"; path = "Masonry/NSArray+MASShorthandAdditions.h"; sourceTree = "<group>"; };
E4CD94A4D745B48F1F69DA1302A2F9A1 /* DOUMPMediaLibraryAssetLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DOUMPMediaLibraryAssetLoader.h; path = src/DOUMPMediaLibraryAssetLoader.h; sourceTree = "<group>"; };
E5092F0AAE3167C49BBA60533F0DCF9D /* UIPageControl+Night.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIPageControl+Night.m"; path = "DKNightVersion/UIKit/UIPageControl+Night.m"; sourceTree = "<group>"; };
E51DC641A168177D87153251EF0E1DB5 /* DOUAudioVisualizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DOUAudioVisualizer.h; path = src/DOUAudioVisualizer.h; sourceTree = "<group>"; };
E55F952FDE6D41A2F9197F5078267F97 /* LOTCacheProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTCacheProvider.h; path = "lottie-ios/Classes/PublicHeaders/LOTCacheProvider.h"; sourceTree = "<group>"; };
E76A15833179B4041831770400ADDEC5 /* MASViewConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASViewConstraint.m; path = Masonry/MASViewConstraint.m; sourceTree = "<group>"; };
E7CD15CAB69CDDDE1A59F4D10B56D145 /* CAShapeLayer+Night.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "CAShapeLayer+Night.h"; path = "DKNightVersion/CoreAnimation/CAShapeLayer+Night.h"; sourceTree = "<group>"; };
E899DFA24A5F09D9EA46786CDF1FBFBC /* DKColorTable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DKColorTable.m; path = DKNightVersion/ColorTable/DKColorTable.m; sourceTree = "<group>"; };
E8F5EC2664AA0308A7A2D8DFD0CD6FF8 /* LOTPlatformCompat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTPlatformCompat.h; path = "lottie-ios/Classes/MacCompatibility/LOTPlatformCompat.h"; sourceTree = "<group>"; };
E943966498BF86956775A7B8A4F4B9ED /* LOTRenderNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTRenderNode.h; path = "lottie-ios/Classes/RenderSystem/LOTRenderNode.h"; sourceTree = "<group>"; };
EC04551D090E0EE2B81067C4D70F6833 /* LOTArrayInterpolator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTArrayInterpolator.h; path = "lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTArrayInterpolator.h"; sourceTree = "<group>"; };
EC4EB61A12420A3260721120B87C8A17 /* DOUAudioFileProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DOUAudioFileProvider.m; path = src/DOUAudioFileProvider.m; sourceTree = "<group>"; };
ECDF50EACB697E1FB17149BF03B0B6FA /* AFNetworking-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "AFNetworking-Info.plist"; sourceTree = "<group>"; };
ED44FE645093AB9B602A789191486E56 /* LOTTrimPathNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTTrimPathNode.m; path = "lottie-ios/Classes/RenderSystem/ManipulatorNodes/LOTTrimPathNode.m"; sourceTree = "<group>"; };
EE81AC45E5A29C1EDDFC6C429FDE54AD /* LOTShapePath.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTShapePath.m; path = "lottie-ios/Classes/Models/LOTShapePath.m"; sourceTree = "<group>"; };
EE8ADC532C76762F2ED455E5B641FA51 /* lottie-ios-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "lottie-ios-prefix.pch"; sourceTree = "<group>"; };
EEA7B0DAA3D60180B608E588057E3A49 /* UISearchBar+Night.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UISearchBar+Night.m"; path = "DKNightVersion/UIKit/UISearchBar+Night.m"; sourceTree = "<group>"; };
EF7B38F237FD7071E03E2CD495442B50 /* Pods-DreamSleep.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-DreamSleep.modulemap"; sourceTree = "<group>"; };
EFEE324B18EA1B985C9F30CA0952A18B /* LOTCircleAnimator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTCircleAnimator.m; path = "lottie-ios/Classes/RenderSystem/AnimatorNodes/LOTCircleAnimator.m"; sourceTree = "<group>"; };
F08FD375C50251A8723480F92933F004 /* Pods-DreamSleep-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-DreamSleep-Info.plist"; sourceTree = "<group>"; };
F0B7EC6D2C3A7C71BE2F81C8A916F25E /* AFSecurityPolicy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFSecurityPolicy.h; path = AFNetworking/AFSecurityPolicy.h; sourceTree = "<group>"; };
F1222FEF935B236F4E29866756CCD0FE /* NSObject+Night.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+Night.m"; path = "DKNightVersion/Core/NSObject+Night.m"; sourceTree = "<group>"; };
F20A3082BE7AB38C750BB6B026C0194C /* MJRefreshBackFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackFooter.m; path = MJRefresh/Base/MJRefreshBackFooter.m; sourceTree = "<group>"; };
F23803A319BAAB40617272A301AA26ED /* MJRefreshComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshComponent.h; path = MJRefresh/Base/MJRefreshComponent.h; sourceTree = "<group>"; };
F2C03C782BFEC12B93C60C131EF23332 /* CALayer+Night.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "CALayer+Night.h"; path = "DKNightVersion/CoreAnimation/CALayer+Night.h"; sourceTree = "<group>"; };
F32EB0153330F5040AF72815E6176FB7 /* LOTKeyframe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTKeyframe.h; path = "lottie-ios/Classes/AnimatableProperties/LOTKeyframe.h"; sourceTree = "<group>"; };
F4250AB6B1F700B0B25CC7E29FF59706 /* LOTAnimatedControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTAnimatedControl.m; path = "lottie-ios/Classes/Private/LOTAnimatedControl.m"; sourceTree = "<group>"; };
F53C575227EA7A8DFC16EB13077B537C /* MJRefreshBackStateFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackStateFooter.h; path = MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.h; sourceTree = "<group>"; };
F618D89CF0B476D70FA909FDC04377BE /* CALayer+Night.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "CALayer+Night.m"; path = "DKNightVersion/CoreAnimation/CALayer+Night.m"; sourceTree = "<group>"; };
F78D365277CD2CF37D9985315E9289C4 /* LOTShapeTransform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTShapeTransform.h; path = "lottie-ios/Classes/Models/LOTShapeTransform.h"; sourceTree = "<group>"; };
F7E318929EF87442F8DD9CE970EF084F /* LOTLayerGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTLayerGroup.h; path = "lottie-ios/Classes/Models/LOTLayerGroup.h"; sourceTree = "<group>"; };
F9A549F9347004D8F896A97D60A7CBB2 /* LOTCompositionContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTCompositionContainer.h; path = "lottie-ios/Classes/AnimatableLayers/LOTCompositionContainer.h"; sourceTree = "<group>"; };
FAD07CD388F19EABA4DAB33A843CCF85 /* LOTAnimationTransitionController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTAnimationTransitionController.m; path = "lottie-ios/Classes/Private/LOTAnimationTransitionController.m"; sourceTree = "<group>"; };
FB30F272EB79AD696AF58E8E3C17C64F /* YTKNetwork-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "YTKNetwork-Info.plist"; sourceTree = "<group>"; };
FB72499DBFD4281B4585E60186054D15 /* UIScrollView+MJExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIScrollView+MJExtension.m"; path = "MJRefresh/UIScrollView+MJExtension.m"; sourceTree = "<group>"; };
FB885F6217AE96EB81A8A33BB8502DE1 /* NSLayoutConstraint+MASDebugAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSLayoutConstraint+MASDebugAdditions.m"; path = "Masonry/NSLayoutConstraint+MASDebugAdditions.m"; sourceTree = "<group>"; };
FB8D1C5BBF80DCC558FE967C0E27013A /* MJRefreshStateHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshStateHeader.h; path = MJRefresh/Custom/Header/MJRefreshStateHeader.h; sourceTree = "<group>"; };
FCF7F80E41DE974667B4A74CEC3352D4 /* MJRefreshTrailer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshTrailer.m; path = MJRefresh/Base/MJRefreshTrailer.m; sourceTree = "<group>"; };
FEEDD2C17EB95554A3FBD89E1BE25FF6 /* LOTAssetGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTAssetGroup.m; path = "lottie-ios/Classes/Models/LOTAssetGroup.m"; sourceTree = "<group>"; };
FFF59BF7963DA25A03BE9E41F1FAEEFC /* LOTComposition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTComposition.m; path = "lottie-ios/Classes/Private/LOTComposition.m"; sourceTree = "<group>"; };
FFFAC61C3B18BBF5B92710F10AE21401 /* UIView+MJExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+MJExtension.m"; path = "MJRefresh/UIView+MJExtension.m"; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
25530E8EDBE98ECA4FC8E33E13BBDA86 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
3947D838F9A713BCCDB9ED0B6A8C06F3 /* Accelerate.framework in Frameworks */,
2BC390A79F53DCC85C9EA474204DC0AE /* AudioToolbox.framework in Frameworks */,
2D14774BA94FB6D4D7A95BBDC6306EC1 /* AVFoundation.framework in Frameworks */,
C868301DC1C926FE5F14BA1EB3B1F306 /* CFNetwork.framework in Frameworks */,
521A88FF099D4CA69D9DE83EF4A84C26 /* CoreAudio.framework in Frameworks */,
65C99C6E6854AB021B943AC55A8CE75D /* Foundation.framework in Frameworks */,
5A6C6AB5E6AB9ACD1E8451F69E7B72E8 /* MediaPlayer.framework in Frameworks */,
E9D9E958B857E0A177ED449F2FA6E87C /* QuartzCore.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
2A1CB9A18F1E30218C9D1EC2A0C70D7C /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
600C23791956CA47D1DBB7840BE402A6 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
3C16BB7A0E3ED61444705FB4AF96A926 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
826BF14E0AE52BA8D9A95A63F4AF4C1E /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
50514A07B320D76E5ED3FA506C2A33FF /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
C0B21FD807C9B4F3C4F66C6B6D1EDB95 /* Foundation.framework in Frameworks */,
CD3038C5352EA8F805978F6BDE6CD90D /* UIKit.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
B3F2E9ADD23E5575E1B0D2FC20EF2CDB /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
F6EF1A0FF54545EC905960F2692530F2 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
D6FDC559A3AC002076E26D213B556036 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
252FCAFF639706AFE57EF160D2AFFFB9 /* Foundation.framework in Frameworks */,
43015BB3E702972D85714D0103C6C3D7 /* UIKit.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
E5BD0F9954C3B453F800B1A9101C074F /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
5A7847E142D311F386999B7A0008A9D0 /* CFNetwork.framework in Frameworks */,
54C7685F8C3B3C658F0EB16F4FF86CD5 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
F4514E6ACEAF23C78E6499F12995A735 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
6A96961D70ADC8DB3C64070583DAB56F /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
02E4B8B6E418083BD4D2516AF8463A27 /* YTKNetwork */ = {
isa = PBXGroup;
children = (
0F0946CA93D8592C4D3CE9DE75A096C3 /* YTKBaseRequest.h */,
177B9F09ECC9B92C37422620A4B19385 /* YTKBaseRequest.m */,
909CC0749CCDB69A767CA9C51C42017E /* YTKBatchRequest.h */,
4EF9FADD5A5F2CC70F172995F3C337F1 /* YTKBatchRequest.m */,
DF53BFE961B95FA111AD2D987F368D96 /* YTKBatchRequestAgent.h */,
AAE579CD73422C15C2786408ACA11BF8 /* YTKBatchRequestAgent.m */,
DE6F7FF2675CE34DD1CC90AA70B68536 /* YTKChainRequest.h */,
1C34CF56A6475EB4CF09FDE4584A94B7 /* YTKChainRequest.m */,
361AE60CB5BBC3A7C34F08B1DE755996 /* YTKChainRequestAgent.h */,
8157FBFA81DB3D5A73A24FEE9B545E91 /* YTKChainRequestAgent.m */,
573505CC2D55682037E2E204ABF24FC4 /* YTKNetwork.h */,
C31D3A26DF0CDC076253740C6924E62C /* YTKNetworkAgent.h */,
BD108548744C7C0DFB36427632B760F4 /* YTKNetworkAgent.m */,
A0DF11B9B90D68D17CFD79E0C0840170 /* YTKNetworkConfig.h */,
C25BDB2368273A0425794BF483E40793 /* YTKNetworkConfig.m */,
996381E1369121128D1103589BB918BD /* YTKNetworkPrivate.h */,
23FC3528B4F7090978D798065DFFD784 /* YTKNetworkPrivate.m */,
A3D6B2BDFDB40AE097E5E5893BD38503 /* YTKRequest.h */,
BB7002C79FB3BDB39B3C584E921588A9 /* YTKRequest.m */,
2FB97DD2ABEFC6AEE47F32ADE09A1083 /* YTKRequestEventAccessory.h */,
0ED8595649058B4E5B5F6CD412B28358 /* YTKRequestEventAccessory.m */,
AD377CFF4B8554BDC1623533DBDFCE62 /* Support Files */,
);
path = YTKNetwork;
sourceTree = "<group>";
};
08D982B82AC5DF628B7BE8C506E437C0 /* Core */ = {
isa = PBXGroup;
children = (
8E4955A5ED68051E9ED70B9FB755E5A9 /* DKAlpha.h */,
DEA0B30E03D14BF13B5D36D5BA5A9C93 /* DKAlpha.m */,
3F22ABA944D96250EE668709D29010FA /* DKColor.h */,
524325BE1192FF9AF99B9BEA5F6E9609 /* DKColor.m */,
57DC7A922F4091DCA5F040ABC5D1D4BC /* DKColorTable.h */,
E899DFA24A5F09D9EA46786CDF1FBFBC /* DKColorTable.m */,
AF11679892B0D6EE490026F1260A3B87 /* DKImage.h */,
6414242B66D474672B2BAB04F4ADE328 /* DKImage.m */,
3E65B48364E74932515716B39797BC88 /* DKNightVersionManager.h */,
DB4AE61D5F335D48974787282B38235E /* DKNightVersionManager.m */,
4B3557C63989F6EE4793DA060355218A /* NSObject+Night.h */,
F1222FEF935B236F4E29866756CCD0FE /* NSObject+Night.m */,
4ED113B3395C0C4608846C14DA8D43CC /* DeallocBlockExecutor */,
266A3B7006D8384383C0C8F5199AB10D /* extobjc */,
);
name = Core;
sourceTree = "<group>";
};
1F5E8689314BB521DFA84D1C3C4A2149 /* MJRefresh */ = {
isa = PBXGroup;
children = (
CDB356329E7A866577E036A7328BE528 /* MJRefresh.h */,
B4DBFED092C92E6A1CE4C5470C24EC65 /* MJRefreshAutoFooter.h */,
563CE7A65CD2BEF9B6FF4E652DBAF382 /* MJRefreshAutoFooter.m */,
0D395161AC992A504B27B10DEB1F4F35 /* MJRefreshAutoGifFooter.h */,
83FDB2D9FCCCDA6E8E10650EAFF24FAF /* MJRefreshAutoGifFooter.m */,
1CEDC4DE584EA99DADBB31FF7014BAA0 /* MJRefreshAutoNormalFooter.h */,
02005FB7CAF692B56B590897B7ADDD8B /* MJRefreshAutoNormalFooter.m */,
46652F7BCE37BD652DC82E59152EE207 /* MJRefreshAutoStateFooter.h */,
7903E21876E0700E9AD13F9CB9C4B754 /* MJRefreshAutoStateFooter.m */,
C2ACB6289976A8B3F1116083560A0446 /* MJRefreshBackFooter.h */,
F20A3082BE7AB38C750BB6B026C0194C /* MJRefreshBackFooter.m */,
A66E9F2F138A5819A623C8F76D228904 /* MJRefreshBackGifFooter.h */,
4F12E3D1EE2FE3282F85AEBC51974135 /* MJRefreshBackGifFooter.m */,
BABA85DE90D55BAA7158D1A3835D907E /* MJRefreshBackNormalFooter.h */,
CF9A8C77D1269B2FCEF0002252025D53 /* MJRefreshBackNormalFooter.m */,
F53C575227EA7A8DFC16EB13077B537C /* MJRefreshBackStateFooter.h */,
91F04B77F00D5EDD1BC6C2B3495435D6 /* MJRefreshBackStateFooter.m */,
F23803A319BAAB40617272A301AA26ED /* MJRefreshComponent.h */,
66B5A08E849E81725799AAD64FD9448F /* MJRefreshComponent.m */,
A15E6D7A429BE39D3C02011B0951E75C /* MJRefreshConfig.h */,
01D77EFB1EC4F1E1C97D988BA71DAE6E /* MJRefreshConfig.m */,
DE67CCEA9DD29E1D3F4A2E69C731AEFA /* MJRefreshConst.h */,
1DEED1E49E5EEA56C5BDB86CAA25B224 /* MJRefreshConst.m */,
9246269C24709EF0A1BB6AA935033476 /* MJRefreshFooter.h */,
CE6735EAB5090F2AD3E670F87F6FC037 /* MJRefreshFooter.m */,
A2A1F9A2C68F2AC10DC0E8802101B19A /* MJRefreshGifHeader.h */,
7E368C24E9D9E4D2BA6890CD8FCF33ED /* MJRefreshGifHeader.m */,
B2ADD1145CD107D89FBCAC973273C57E /* MJRefreshHeader.h */,
9659812BE2E83EA4EA58F7F18D066C08 /* MJRefreshHeader.m */,
C360C836D0D01B5D07173BD0DA0B41E0 /* MJRefreshNormalHeader.h */,
800F86EA6772CF41BA69981379B69D98 /* MJRefreshNormalHeader.m */,
853073D6C09C58415D86A7B75087C673 /* MJRefreshNormalTrailer.h */,
D1E9EB4575398BBA07631D4059AC9CA6 /* MJRefreshNormalTrailer.m */,
FB8D1C5BBF80DCC558FE967C0E27013A /* MJRefreshStateHeader.h */,
983999D88CE1EF77A604991D3CBBFC7E /* MJRefreshStateHeader.m */,
A8B5F2693581E7ADE9BA85F4D253FB6E /* MJRefreshStateTrailer.h */,
CEA8B3AEDAF0B855AC704767818716CA /* MJRefreshStateTrailer.m */,
C68CB20EC8C119DA89154F8D65BC7AE7 /* MJRefreshTrailer.h */,
FCF7F80E41DE974667B4A74CEC3352D4 /* MJRefreshTrailer.m */,
576DD77D914C44B9D57CAA0B5455DB95 /* NSBundle+MJRefresh.h */,
3B5F545C96526605B9802F66AB79140D /* NSBundle+MJRefresh.m */,
2E0879CEF70A330E06035EA9A35E8399 /* UICollectionViewLayout+MJRefresh.h */,
201EFE15B37924EB2402B078443E946B /* UICollectionViewLayout+MJRefresh.m */,
48EC740185C1195E1FD4C0629F98D505 /* UIScrollView+MJExtension.h */,
FB72499DBFD4281B4585E60186054D15 /* UIScrollView+MJExtension.m */,
B722C83E8542A8E73B486BCA4E9C7D07 /* UIScrollView+MJRefresh.h */,
7E0ED0C8BFC0CAB759F10D4ED087BA38 /* UIScrollView+MJRefresh.m */,
C3A29BF3F668FFBF047AEA7DA642B83C /* UIView+MJExtension.h */,
FFFAC61C3B18BBF5B92710F10AE21401 /* UIView+MJExtension.m */,
B06A5EC1F27215575AD4CDCD31807D19 /* Resources */,
E1230CC31ED51E6EEC9E3BAC57F8890B /* Support Files */,
);
path = MJRefresh;
sourceTree = "<group>";
};
2297CEB911C381F053C838A957C8791A /* Resources */ = {
isa = PBXGroup;
children = (
7AFC52F98F310F7EC8B55BAC3444B96C /* DKColorTable.txt */,
);
name = Resources;
sourceTree = "<group>";
};
266A3B7006D8384383C0C8F5199AB10D /* extobjc */ = {
isa = PBXGroup;
children = (
6A8E17BDC3F49BC6E4C2423FAF712ECC /* EXTKeyPathCoding.h */,
126BB8787CCDB73464481DDE53AC4986 /* metamacros.h */,
);
name = extobjc;
sourceTree = "<group>";
};
30894A8DCF06DA17DF8C2F5C9A7E234C /* Serialization */ = {
isa = PBXGroup;
children = (
30185487D0A68D3B51CC512A43F4AF18 /* AFURLRequestSerialization.h */,
2F1487C4A4E76C82E5A3287CD0BC1533 /* AFURLRequestSerialization.m */,
7B4814608EA6E5717652A9D3F17AF0E9 /* AFURLResponseSerialization.h */,
599AFCF575431C906C906A8FD5289463 /* AFURLResponseSerialization.m */,
);
name = Serialization;
sourceTree = "<group>";
};
327E6CD8D34429D211CC25E6304BFCEB /* CoreAnimation */ = {
isa = PBXGroup;
children = (
F2C03C782BFEC12B93C60C131EF23332 /* CALayer+Night.h */,
F618D89CF0B476D70FA909FDC04377BE /* CALayer+Night.m */,
E7CD15CAB69CDDDE1A59F4D10B56D145 /* CAShapeLayer+Night.h */,
5346A061179634196424B6EEDDC3F774 /* CAShapeLayer+Night.m */,
7B8B6D7E7072E552CA72FDE187E18C6D /* CoreAnimation+Night.h */,
);
name = CoreAnimation;
sourceTree = "<group>";
};
3642466AEB04682D9DBFBB834D875090 /* UIKit */ = {
isa = PBXGroup;
children = (
B8E122478645A87FFBEB3BCC4D1B596D /* UIBarButtonItem+Night.h */,
41F4E72D637E25B4C98E72415C364B52 /* UIBarButtonItem+Night.m */,
328AB583A43943CE9B5F5E3694C100BF /* UIButton+Night.h */,
36240E93C019765C4A9FD6F4E8AD6996 /* UIButton+Night.m */,
317182BCA5BB4132551919F394FD69DA /* UIControl+Night.h */,
60877D08910342F8C2C916DA180EEA51 /* UIControl+Night.m */,
D4BECB77D71D8B948BF94FE97E1FDFF3 /* UIImageView+Night.h */,
4955544D92C22CB6208729584103A3F5 /* UIImageView+Night.m */,
B84974AD255DDCB2D9471E5CA1B01F06 /* UILabel+Night.h */,
0145CEF36ED588E97CE4B5E597DD85AA /* UILabel+Night.m */,
92E03F831CA098764FC0BE1A9C64B65B /* UINavigationBar+Animation.h */,
03A5ADA51C97428E56B824F23F885D4A /* UINavigationBar+Animation.m */,
A8FCE61B24E1E9FE036F5E2FC3DFA328 /* UINavigationBar+Night.h */,
4CB15A09E29AB66E6E4BEB4E774B49D7 /* UINavigationBar+Night.m */,
2111368AFEF2F7559057BD4DD062129B /* UIPageControl+Night.h */,
E5092F0AAE3167C49BBA60533F0DCF9D /* UIPageControl+Night.m */,
58235547B9706A8835B2BD1A291394A0 /* UIProgressView+Night.h */,
BA3F4B205FBEA28CB6A3CDE45A6A559D /* UIProgressView+Night.m */,
2F37B36EAAD5E1C8F2B119B66E48B5E6 /* UISearchBar+Keyboard.h */,
1F104F2D2004CC1D7003A0E3947F99E3 /* UISearchBar+Keyboard.m */,
3A1786C4243A2C4DA28808FB52B12B04 /* UISearchBar+Night.h */,
EEA7B0DAA3D60180B608E588057E3A49 /* UISearchBar+Night.m */,
9EEC26472F3A40DC6B75EF338FBA82C5 /* UISlider+Night.h */,
8A402CA48FFA3B0DCB84A834FBA2E79B /* UISlider+Night.m */,
5BB5DDEDEDFF4FD937167FD7EB65F92F /* UISwitch+Night.h */,
363F9F4986A8BBB2045C8F27DCF5715A /* UISwitch+Night.m */,
70029D17C6BAE503E327A02129214170 /* UITabBar+Night.h */,
5DBC92DC3F1D34B8DF7E7E221E09E92F /* UITabBar+Night.m */,
979A35C4AC49E3F62D0C6D5D63B3FDF3 /* UITableView+Night.h */,
36AB09707843AF13D7864D98BCBA6C8C /* UITableView+Night.m */,
2D18B8695415DDBFE8AFF86200C3977B /* UITextField+Keyboard.h */,
3729B2CE5713A34BDFD13F2ACD3399BA /* UITextField+Keyboard.m */,
6D145CEF16536EF73E2C07BD0A0F8B9D /* UITextField+Night.h */,
8FBD8F08C6680B0A346FF6A3AAED838F /* UITextField+Night.m */,
0D26CDE6993C5FB6484BA271D11AD765 /* UITextView+Keyboard.h */,
6FBE6A405F12ECDA303062D0A964D78C /* UITextView+Keyboard.m */,
6EBE227E73654B7E71A69FA5086892ED /* UITextView+Night.h */,
2C7BC0532095ADD0A5A06EEB83D8516C /* UITextView+Night.m */,
3897DE658B6D903F4D3A4938A65B71AD /* UIToolbar+Night.h */,
DCAB581382B7E7CB9A07F760BC9F9BCE /* UIToolbar+Night.m */,
6557EF7C9C63B75BD3E767C3BB29359D /* UIView+Night.h */,
C39DD83EEA0A4B82B2CDB10C23711C8E /* UIView+Night.m */,
);
name = UIKit;
sourceTree = "<group>";
};
4170C384C21CEF37C3D263355A81F4D0 /* AFNetworking */ = {
isa = PBXGroup;
children = (
7CA326E7A4ED9463AAA1275B7D8922D6 /* NSURLSession */,
B5E1B1D5FA4F07D9134014E725DAFB26 /* Reachability */,
E249AA3C6F14B7919FF63E143126792C /* Security */,
30894A8DCF06DA17DF8C2F5C9A7E234C /* Serialization */,
BD1C5F8E05D4BC2588F99B154391501E /* Support Files */,
);
path = AFNetworking;
sourceTree = "<group>";
};
43266F6A8762FD51E36134C5F5B984AE /* Products */ = {
isa = PBXGroup;
children = (
A4FA15D44DF6BAC7550EDEED10862AA3 /* AFNetworking */,
D49390DC16189A74052FAC3455F18249 /* DKNightVersion.framework */,
04B380B6648264692DA26C32040918AF /* DOUAudioStreamer.framework */,
51BA97E8B5085EFFB47BC9C0B785CEA7 /* Lottie.framework */,
1FFED36A657123030ABB700256D73F15 /* Masonry.framework */,
E49D6D248DD1CEE584E6776B9164A1B2 /* MJRefresh */,
9BD6F0B21CDAE9FA26016DC870A83047 /* Pods-DreamSleep */,
601EEA66C9A6080A11C1ADE5E2A91AE1 /* YTKNetwork */,
);
name = Products;
sourceTree = "<group>";
};
48A7B7CE1BC11DFAA128559A9ADA8564 /* Frameworks */ = {
isa = PBXGroup;
children = (
D0F808EE2803D22C0097899F /* MobileCoreServices.framework */,
5A720EC71C1C9E2C7C887B12277C3D01 /* iOS */,
);
name = Frameworks;
sourceTree = "<group>";
};
4ED113B3395C0C4608846C14DA8D43CC /* DeallocBlockExecutor */ = {
isa = PBXGroup;
children = (
0781B6C551700F8F309FECCA9C56183B /* DKDeallocBlockExecutor.h */,
602CA2316962D466C4C5A35ABB54B102 /* DKDeallocBlockExecutor.m */,
7A7377A515C464F0423722F840ACBF65 /* NSObject+DeallocBlock.h */,
CD37C86AC1B4AD4870A1D1FA748F3BAA /* NSObject+DeallocBlock.m */,
);
name = DeallocBlockExecutor;
sourceTree = "<group>";
};
58D7FB5AAA41AD1CF1F23CD32A0D926D /* Support Files */ = {
isa = PBXGroup;
children = (
932AA11A72616C49841A2BE46B98D4AF /* lottie-ios.modulemap */,
75135CC7DC7E76CE64A43892E7995AD5 /* lottie-ios-dummy.m */,
95D2583F038E863664FC11706DC3F480 /* lottie-ios-Info.plist */,
EE8ADC532C76762F2ED455E5B641FA51 /* lottie-ios-prefix.pch */,
A61A944A21C1A31EF748C6EA9AEC2580 /* lottie-ios-umbrella.h */,
2A14C5151D1F6A23C85C83AFDEFD8E27 /* lottie-ios.debug.xcconfig */,
A7DE1FAA4D6A2756E5D201D3B8470344 /* lottie-ios.release.xcconfig */,
);
name = "Support Files";
path = "../Target Support Files/lottie-ios";
sourceTree = "<group>";
};
5A720EC71C1C9E2C7C887B12277C3D01 /* iOS */ = {
isa = PBXGroup;
children = (
9FC2034AEDC5DCD5C569A6113CB40617 /* Accelerate.framework */,
9064AFA8DB66232749B4424E92986E35 /* AudioToolbox.framework */,
B84C8C9BEBE7AF686C6FC022B4EB6EDE /* AVFoundation.framework */,
9F0A8D07FB63A5F14AD66B994B5D825D /* CFNetwork.framework */,
A6AF3E29A3D603BE09E494333B8CC1B8 /* CoreAudio.framework */,
40239DCF733E27443887B5396849AA97 /* Foundation.framework */,
DD571807F88CD734D6B696E966CE85EB /* MediaPlayer.framework */,
AE956FCB5BD078F5426FA9C4A020D63D /* MobileCoreServices.framework */,
884A2233314F84F50BC3138ABA0B72D1 /* OpenGLES.framework */,
DC07C6175B1E2AD14C544CBC093833E9 /* QuartzCore.framework */,
B29AE21AB4E356640AB7A031CAA89D90 /* UIKit.framework */,
);
name = iOS;
sourceTree = "<group>";
};
6C9287040D5EBB3387B0217B4E8768CA /* Pods-DreamSleep */ = {
isa = PBXGroup;
children = (
EF7B38F237FD7071E03E2CD495442B50 /* Pods-DreamSleep.modulemap */,
5E32248877F9FAF43DF3C58EAD186D2F /* Pods-DreamSleep-acknowledgements.markdown */,
3EA3FE9514517DAB2D1F47ED84C89318 /* Pods-DreamSleep-acknowledgements.plist */,
1A48C755DC564041D0BF299E3121FDC9 /* Pods-DreamSleep-dummy.m */,
31672F6B4D711C30719B8F128B21DA0E /* Pods-DreamSleep-frameworks.sh */,
F08FD375C50251A8723480F92933F004 /* Pods-DreamSleep-Info.plist */,
CE6DF0D74F2FC70C3A1FC07E1635D211 /* Pods-DreamSleep-umbrella.h */,
1D6F46AA0B22BCF108BE8206EC8A8996 /* Pods-DreamSleep.beta.xcconfig */,
68F034394A9197A08BC51EB02D9F343A /* Pods-DreamSleep.debug.xcconfig */,
B6E04B47E61D8F8F434E24ABE164E64B /* Pods-DreamSleep.release.xcconfig */,
);
name = "Pods-DreamSleep";
path = "Target Support Files/Pods-DreamSleep";
sourceTree = "<group>";
};
7CA326E7A4ED9463AAA1275B7D8922D6 /* NSURLSession */ = {
isa = PBXGroup;
children = (
AD901BFAEB4A03B20B73ED487B38F6CB /* AFCompatibilityMacros.h */,
6582921FB78B1A04F2AA0EF2153DAC80 /* AFHTTPSessionManager.h */,
DEADC5052A5D5D8DA277F47BBDC4CB1A /* AFHTTPSessionManager.m */,
08D4C2EFADDD476F82A38440680A095D /* AFURLSessionManager.h */,
B5E80A3E8E7BEC00CB8D8D086F0D0FFA /* AFURLSessionManager.m */,
);
name = NSURLSession;
sourceTree = "<group>";
};
851EA8248FFEA863C225DCCA933BB4AF /* DKNightVersion */ = {
isa = PBXGroup;
children = (
84C38BC59F69B6E017C8727A2A90319F /* DKNightVersion.h */,
08D982B82AC5DF628B7BE8C506E437C0 /* Core */,
327E6CD8D34429D211CC25E6304BFCEB /* CoreAnimation */,
2297CEB911C381F053C838A957C8791A /* Resources */,
E3E78DE5B527943D858FB9FE6C6BAA01 /* Support Files */,
3642466AEB04682D9DBFBB834D875090 /* UIKit */,
);
path = DKNightVersion;
sourceTree = "<group>";
};
8D3DB1751DB4B72A43A2A3F8C4A4749B /* Masonry */ = {
isa = PBXGroup;
children = (
14856DFE64B741A8307F779F90ED0285 /* MASCompositeConstraint.h */,
5B3C4280D09E00ACB2565434E5229135 /* MASCompositeConstraint.m */,
2A546D2E5703921847888DE867F63AE3 /* MASConstraint.h */,
CCD741B544713327A5D8FE930712A33A /* MASConstraint.m */,
0E20F2ACB065B6B2B5CDDD493C0B4461 /* MASConstraint+Private.h */,
18CD35DAEFFDD6B461DF7D619614B5B5 /* MASConstraintMaker.h */,
00709207E4FDC0ED9396F40A7FF3EDE4 /* MASConstraintMaker.m */,
8DB81AF83ED22E8C11B6291528AF73C9 /* MASLayoutConstraint.h */,
3B6D1D04155C8E0815A30D2190ABE564 /* MASLayoutConstraint.m */,
33686DFE5DD4AC94CFFDC1CA3536040B /* Masonry.h */,
97DFCEB67B0583F7FE08DE27B736C4EF /* MASUtilities.h */,
1A816F7730E3DB55C4197D032CF13F14 /* MASViewAttribute.h */,
60FDCA37A9CE6F3F4B4E6B4ACBA20C8B /* MASViewAttribute.m */,
30F9EBE0083BF3919B7BE71850B8C302 /* MASViewConstraint.h */,
E76A15833179B4041831770400ADDEC5 /* MASViewConstraint.m */,
80FF664C4DBC9B7F9090FD21D933ED2D /* NSArray+MASAdditions.h */,
AFDFE98DCC854809CEEAB3E63F5B10C3 /* NSArray+MASAdditions.m */,
E4B1440463672D77ACEEDD1E97285281 /* NSArray+MASShorthandAdditions.h */,
CFBC989B20D135B3A5BD35C3265FF4C8 /* NSLayoutConstraint+MASDebugAdditions.h */,
FB885F6217AE96EB81A8A33BB8502DE1 /* NSLayoutConstraint+MASDebugAdditions.m */,
D19AFA5B0631D347EA4B4C8BC4E06877 /* View+MASAdditions.h */,
6A8921E310DE45E2E874FB6DAB10F17E /* View+MASAdditions.m */,
82CCA789264003E10BF25A693DF65D72 /* View+MASShorthandAdditions.h */,
5805A9FC58E5AF0D2235711328F0300C /* ViewController+MASAdditions.h */,
85D54CE2DA206845FCD0783E2A9D9B28 /* ViewController+MASAdditions.m */,
EF9E694DF5A35D3BE593DF6B1783A7FB /* Support Files */,
);
path = Masonry;
sourceTree = "<group>";
};
8E1BD3446E617611F1BA3779353221BB /* Support Files */ = {
isa = PBXGroup;
children = (
547195BD3B8436206503A69DA21D349F /* DOUAudioStreamer.modulemap */,
7E8D1437B40B455B1119E9044007D413 /* DOUAudioStreamer-dummy.m */,
0D2FC32F499BA1768662B137D46AC0A9 /* DOUAudioStreamer-Info.plist */,
94D89884B26D59C350AAA12F917A2916 /* DOUAudioStreamer-prefix.pch */,
466A9FA8C77E9CB0A6C30F4F24ECF234 /* DOUAudioStreamer-umbrella.h */,
8A5AC121203D5FCC6E8F97B028818019 /* DOUAudioStreamer.debug.xcconfig */,
DC39EB1CB23093A7E5B528C76E5C878F /* DOUAudioStreamer.release.xcconfig */,
);
name = "Support Files";
path = "../Target Support Files/DOUAudioStreamer";
sourceTree = "<group>";
};
9B7F3A66DB79A1D35A96B6ADC4D14258 /* DOUAudioStreamer */ = {
isa = PBXGroup;
children = (
BB8CB815050173EDA7E2228B5F9B6961 /* DOUAudioAnalyzer.h */,
5992AF29400B9C911020FB23E343774D /* DOUAudioAnalyzer.m */,
D030F50513D58EBF080BED6207DFAE11 /* DOUAudioAnalyzer+Default.h */,
5BBEB44913C149647E0C37627E8A8EB8 /* DOUAudioAnalyzer+Default.m */,
2A3FE285E20C260DD490DD148F38B21C /* DOUAudioAnalyzer_Private.h */,
28854960AE98F568D116BA7B6599AA8C /* DOUAudioBase.h */,
92F3480D6959032BCE6FA76D4B2C5A0C /* DOUAudioDecoder.h */,
24F6DD8DABE0E799647744F2ED4DF475 /* DOUAudioDecoder.m */,
4E7796708667AB9A5FF920F6728FFA09 /* DOUAudioEventLoop.h */,
91427D37710BFE04E39CBA060E71D650 /* DOUAudioEventLoop.m */,
C6A39349F1ECD7AEAA19F734A2E760D5 /* DOUAudioFile.h */,
84336DC02BC104C5149239017C5060C0 /* DOUAudioFilePreprocessor.h */,
90599F1CC0564C43B34611D1A1EADD5C /* DOUAudioFilePreprocessor.m */,
D825E201C9C064B75406F3DBA8689A03 /* DOUAudioFileProvider.h */,
EC4EB61A12420A3260721120B87C8A17 /* DOUAudioFileProvider.m */,
8A84D3E2EFD9B3D614DAC6D41A8E07E6 /* DOUAudioFrequencyAnalyzer.h */,
2925A3577F7A9473B9E776B553916BC4 /* DOUAudioFrequencyAnalyzer.m */,
8FC77E9071580DBCC0F7045ADF00042F /* DOUAudioLPCM.h */,
1B22A3562A9E3CE9F121E1CBA7EF8CBD /* DOUAudioLPCM.m */,
A7D5D02912B8E97725E76F13BF2E4B15 /* DOUAudioPlaybackItem.h */,
C3AB519539E71F1F0A615D5E9F29937D /* DOUAudioPlaybackItem.m */,
66EE8C3A6191688DA4C5575479DE95D8 /* DOUAudioRenderer.h */,
E2D1205B304D21F7F5AE5B7B5E47E782 /* DOUAudioRenderer.m */,
95D9C13ACFB8C5D018970B6A19834A2A /* DOUAudioSpatialAnalyzer.h */,
D82E59CD67549FE4E9027EEC22B28CE6 /* DOUAudioSpatialAnalyzer.m */,
5284F2846ACDB26A89D66FB2791EE999 /* DOUAudioStreamer.h */,
929B1EE23846CF7676A04EA7F890D2CB /* DOUAudioStreamer.m */,
744A10EC2EA2829494C16CD9C4A4EA6B /* DOUAudioStreamer+Options.h */,
B2B4A4BCAD525150F75DD309797D5C10 /* DOUAudioStreamer+Options.m */,
A42A60881A8A580D998AE0CE08F7ADDC /* DOUAudioStreamer_Private.h */,
E51DC641A168177D87153251EF0E1DB5 /* DOUAudioVisualizer.h */,
71ECA894BFD7462E5F684057392FA0BB /* DOUAudioVisualizer.m */,
C72EF8EDBD7C25B6A8D298EB5D3E0A11 /* DOUEAGLView.h */,
4A6A57277E016E6E5D35518C6240A059 /* DOUEAGLView.m */,
E4CD94A4D745B48F1F69DA1302A2F9A1 /* DOUMPMediaLibraryAssetLoader.h */,
193914CB6780D49A7C98AC4195C6D031 /* DOUMPMediaLibraryAssetLoader.m */,
007112B8E007E51F0662A82E24173A2A /* DOUSimpleHTTPRequest.h */,
57E270873C7FC1B547132F92042E5F05 /* DOUSimpleHTTPRequest.m */,
0CEFD5D467F855A29778C82B0CAD9FBC /* NSData+DOUAudioMappedFile.h */,
21F41C325F87DFB4AAEF0EC3371B793C /* NSData+DOUAudioMappedFile.m */,
8E1BD3446E617611F1BA3779353221BB /* Support Files */,
);
path = DOUAudioStreamer;
sourceTree = "<group>";
};
9BCB4A36FC7163A3E44E4A38E42FCAAF /* Targets Support Files */ = {
isa = PBXGroup;
children = (
6C9287040D5EBB3387B0217B4E8768CA /* Pods-DreamSleep */,
);
name = "Targets Support Files";
sourceTree = "<group>";
};
AD377CFF4B8554BDC1623533DBDFCE62 /* Support Files */ = {
isa = PBXGroup;
children = (
8EE7F63F421F98AFE4555130333F2648 /* YTKNetwork.modulemap */,
B8101E6DD214CED0F9B1DF3E0519F61F /* YTKNetwork-dummy.m */,
FB30F272EB79AD696AF58E8E3C17C64F /* YTKNetwork-Info.plist */,
A609163574B2A5AAF6E31D135A396242 /* YTKNetwork-prefix.pch */,
80F292E035E92248BB78EA440F764D5B /* YTKNetwork-umbrella.h */,
7393E94FC0BC7BEAD5E135CF4E0EA5FF /* YTKNetwork.debug.xcconfig */,
52FE7CE8C302AF38C8C4B6F9DB342E24 /* YTKNetwork.release.xcconfig */,
);
name = "Support Files";
path = "../Target Support Files/YTKNetwork";
sourceTree = "<group>";
};
B012BE8671AD8C70CB30387AD7667724 /* Pods */ = {
isa = PBXGroup;
children = (
4170C384C21CEF37C3D263355A81F4D0 /* AFNetworking */,
851EA8248FFEA863C225DCCA933BB4AF /* DKNightVersion */,
9B7F3A66DB79A1D35A96B6ADC4D14258 /* DOUAudioStreamer */,
FF31400C77CFF314C69341E02647BC1B /* lottie-ios */,
8D3DB1751DB4B72A43A2A3F8C4A4749B /* Masonry */,
1F5E8689314BB521DFA84D1C3C4A2149 /* MJRefresh */,
02E4B8B6E418083BD4D2516AF8463A27 /* YTKNetwork */,
);
name = Pods;
sourceTree = "<group>";
};
B06A5EC1F27215575AD4CDCD31807D19 /* Resources */ = {
isa = PBXGroup;
children = (
B0CA88AC42DD1CE1E4CCA088F5C624D4 /* MJRefresh.bundle */,
);
name = Resources;
sourceTree = "<group>";
};
B5E1B1D5FA4F07D9134014E725DAFB26 /* Reachability */ = {
isa = PBXGroup;
children = (
B027CC1F4AA182A8E45B537109DCECC2 /* AFNetworkReachabilityManager.h */,
DF7C35E0CDB0FDBF14749EE9592A107E /* AFNetworkReachabilityManager.m */,
);
name = Reachability;
sourceTree = "<group>";
};
BD1C5F8E05D4BC2588F99B154391501E /* Support Files */ = {
isa = PBXGroup;
children = (
21E78AA314A7B7BD41B74F839B74E664 /* AFNetworking.modulemap */,
6FED8C3D34575EA1AAB407E36B5754C0 /* AFNetworking-dummy.m */,
ECDF50EACB697E1FB17149BF03B0B6FA /* AFNetworking-Info.plist */,
BF34A9D3A053CF7B3C96F8D5D1B2B34F /* AFNetworking-prefix.pch */,
CC31489B28DF73F4AB83CACFFCA94C31 /* AFNetworking-umbrella.h */,
32294663F55781BA085499654683917D /* AFNetworking.debug.xcconfig */,
C41877007B1BC75E0519753081886F86 /* AFNetworking.release.xcconfig */,
);
name = "Support Files";
path = "../Target Support Files/AFNetworking";
sourceTree = "<group>";
};
CF1408CF629C7361332E53B88F7BD30C = {
isa = PBXGroup;
children = (
9D940727FF8FB9C785EB98E56350EF41 /* Podfile */,
48A7B7CE1BC11DFAA128559A9ADA8564 /* Frameworks */,
B012BE8671AD8C70CB30387AD7667724 /* Pods */,
43266F6A8762FD51E36134C5F5B984AE /* Products */,
9BCB4A36FC7163A3E44E4A38E42FCAAF /* Targets Support Files */,
);
sourceTree = "<group>";
};
E1230CC31ED51E6EEC9E3BAC57F8890B /* Support Files */ = {
isa = PBXGroup;
children = (
3C1410C33A341C053F000BD44F42F4C6 /* MJRefresh.modulemap */,
74339CD86B2AA7944A25D457A602E784 /* MJRefresh-dummy.m */,
8D7596AA9A5CA5C9A64C05DA8EDC77D5 /* MJRefresh-Info.plist */,
AF8A827B3B1A49D31159CDC8E6991B54 /* MJRefresh-prefix.pch */,
4DD852E738FA940D1736540B1F83D8E5 /* MJRefresh-umbrella.h */,
71F90A9AE6E5BC668387D9593CC9EB2F /* MJRefresh.debug.xcconfig */,
AFC95C6EDCE75B0B5138C60E594642E0 /* MJRefresh.release.xcconfig */,
);
name = "Support Files";
path = "../Target Support Files/MJRefresh";
sourceTree = "<group>";
};
E249AA3C6F14B7919FF63E143126792C /* Security */ = {
isa = PBXGroup;
children = (
F0B7EC6D2C3A7C71BE2F81C8A916F25E /* AFSecurityPolicy.h */,
D48F4622D78FB5A3746FF07837A7D86D /* AFSecurityPolicy.m */,
);
name = Security;
sourceTree = "<group>";
};
E3E78DE5B527943D858FB9FE6C6BAA01 /* Support Files */ = {
isa = PBXGroup;
children = (
82A69F2BF6B36A6DAC5EF6CC3169937F /* DKNightVersion.modulemap */,
724DEB37C028691E4AEE44D8F9281752 /* DKNightVersion-dummy.m */,
5C585D99A4920501D7A31F2930B1503D /* DKNightVersion-Info.plist */,
36109B3F5E4F643BBCB526DB22C1FB71 /* DKNightVersion-prefix.pch */,
6DD9EA26FF163823FEEEFAE58FE3E24E /* DKNightVersion-umbrella.h */,
78990F6F1F6EAB4C80C33CAA4DCF76DA /* DKNightVersion.debug.xcconfig */,
61C70E3B53EDAABF24185D8FB67B6DE1 /* DKNightVersion.release.xcconfig */,
);
name = "Support Files";
path = "../Target Support Files/DKNightVersion";
sourceTree = "<group>";
};
EF9E694DF5A35D3BE593DF6B1783A7FB /* Support Files */ = {
isa = PBXGroup;
children = (
8E7B6F0D83472F40A6DC6870FA04699C /* Masonry.modulemap */,
56B2CA642C2BA7E453FAC9D036EA10A8 /* Masonry-dummy.m */,
C0CE97B73BE929BE8A7EFB0C62F049ED /* Masonry-Info.plist */,
C413E208895B19DD11BD3D8551841E04 /* Masonry-prefix.pch */,
1A664C11751FF9EA40E76F92B713CF36 /* Masonry-umbrella.h */,
31E0377CF0710DF72C9982DC25B43B54 /* Masonry.debug.xcconfig */,
0F31368E972AEC0CA565CABBA49F2D81 /* Masonry.release.xcconfig */,
);
name = "Support Files";
path = "../Target Support Files/Masonry";
sourceTree = "<group>";
};
FF31400C77CFF314C69341E02647BC1B /* lottie-ios */ = {
isa = PBXGroup;
children = (
0FDD571DC1815947E186D0422820CE90 /* CALayer+Compat.h */,
65A4E843D7541F7D0415C60168283A95 /* CALayer+Compat.m */,
5D3A984F94ACC80D4E4B8F31B89D5512 /* CGGeometry+LOTAdditions.h */,
54B14D1C0DC60F7978DBD8E40A156E0C /* CGGeometry+LOTAdditions.m */,
994A3BF9CFF2DF944FFFBAD9623F4E12 /* LOTAnimatedControl.h */,
F4250AB6B1F700B0B25CC7E29FF59706 /* LOTAnimatedControl.m */,
D14D5F8B01899D75A425D9CCE532D34E /* LOTAnimatedSwitch.h */,
A7875588CD22164AC76D5D5A1BB55E66 /* LOTAnimatedSwitch.m */,
777D73BA1E02F055337F002C73AB52C7 /* LOTAnimationCache.h */,
674C023EC3504605F329399A0E15C291 /* LOTAnimationCache.m */,
11B989EF0ED244CD369A517ECF42E591 /* LOTAnimationTransitionController.h */,
FAD07CD388F19EABA4DAB33A843CCF85 /* LOTAnimationTransitionController.m */,
3B25FD6E412EB223E19EFE47E59F3D4C /* LOTAnimationView.h */,
6131708A72A94C4FC07AB1ABD49610B9 /* LOTAnimationView.m */,
4D56F0815F496C115CD10B21B0238F29 /* LOTAnimationView_Compat.h */,
4E4CC0F7AC78A2003637121F37EDF611 /* LOTAnimationView_Internal.h */,
C549168423072CDE39A9D805A9118BD2 /* LOTAnimatorNode.h */,
4516EE2E4DFF655626DCCD28B4BD6065 /* LOTAnimatorNode.m */,
EC04551D090E0EE2B81067C4D70F6833 /* LOTArrayInterpolator.h */,
6C6FC00E62C246D94306D2A9932B237F /* LOTArrayInterpolator.m */,
51617FC5CC8ACC2E0719A718BAF9CB84 /* LOTAsset.h */,
A0089BE48A622B9AAAB7C9A8A4331323 /* LOTAsset.m */,
3DA3AD85F7E5BB1A45EDF47623C63DB1 /* LOTAssetGroup.h */,
FEEDD2C17EB95554A3FBD89E1BE25FF6 /* LOTAssetGroup.m */,
DB5BD4673DADD19240DB2006B4E10BD2 /* LOTBezierData.h */,
2C68C8F7C91EF9EEF79E15788CB46A9B /* LOTBezierData.m */,
7155D86374D8DB1E9BC0D48353BC60C0 /* LOTBezierPath.h */,
877A385C0935F40DC898B5E7E2765E0D /* LOTBezierPath.m */,
3F6C38BCF12484784188EC7CE37EA4BC /* LOTBlockCallback.h */,
D59913EE7F81B153BD9A0A041C21D378 /* LOTBlockCallback.m */,
E55F952FDE6D41A2F9197F5078267F97 /* LOTCacheProvider.h */,
1C4287CEBA7E6752AF4F342868E5DB54 /* LOTCacheProvider.m */,
43F7F99119D1D6D61A0D9B875C598CCE /* LOTCircleAnimator.h */,
EFEE324B18EA1B985C9F30CA0952A18B /* LOTCircleAnimator.m */,
87B2392350ED7A67F74B5472C7F75A78 /* LOTColorInterpolator.h */,
BA97921C8F041A61721662724E85EEF5 /* LOTColorInterpolator.m */,
51A9455DA127D75D95A5FA384C9889E4 /* LOTComposition.h */,
FFF59BF7963DA25A03BE9E41F1FAEEFC /* LOTComposition.m */,
F9A549F9347004D8F896A97D60A7CBB2 /* LOTCompositionContainer.h */,
76EC770CF24EB9D4E250DA8EB20FC735 /* LOTCompositionContainer.m */,
B3CB7DE69756A6EE3B65110DA9A5479F /* LOTFillRenderer.h */,
11D45238B00A9CFFC97B20A7C931561E /* LOTFillRenderer.m */,
3873B4DF6669A34B61E909B5E9478FA1 /* LOTGradientFillRender.h */,
567FF3A874D28EBD0F89A512A8D4C480 /* LOTGradientFillRender.m */,
B58014613EDC25BE502C268732F1E255 /* LOTHelpers.h */,
997A3EBEEC068C7A7981850CA57CDB04 /* LOTInterpolatorCallback.h */,
344E9521A1475717E473919D94B503C4 /* LOTInterpolatorCallback.m */,
F32EB0153330F5040AF72815E6176FB7 /* LOTKeyframe.h */,
185B9A6BC18ECB7AF24E5A92787025C8 /* LOTKeyframe.m */,
113FB00B89AEB72E092CC0EABBE3540A /* LOTKeypath.h */,
27BFDD5BCE6B98D0147E0C6799AB7484 /* LOTKeypath.m */,
9F5E929FCC4EA55FEA25F1C3AB027599 /* LOTLayer.h */,
7266C66A1B0F62ED940CE889DDE8F17B /* LOTLayer.m */,
671B21C79E8A962B673C5D41F4B10DE0 /* LOTLayerContainer.h */,
E12B473EAC11C086B90F8636345D580D /* LOTLayerContainer.m */,
F7E318929EF87442F8DD9CE970EF084F /* LOTLayerGroup.h */,
71F01E9EBC9BC1AF40CE394AAD0F0539 /* LOTLayerGroup.m */,
659F1465ED42942FE944092703E20D49 /* LOTMask.h */,
9E92910C3C0DEC9A08E0EF265AFC7BCB /* LOTMask.m */,
C77FE7015321359DE4E5E4F014C45D25 /* LOTMaskContainer.h */,
160C3AF2A711BDB81277486231E83E5C /* LOTMaskContainer.m */,
73D59BA1E88ECEE8C5D31FFE86E23039 /* LOTModels.h */,
0FF64BFC0D60A749B42EF46F13319098 /* LOTNumberInterpolator.h */,
784448F449C5717E29CBDD8190BE451A /* LOTNumberInterpolator.m */,
B2A47FFADCA34F0DFA781694F2F939F8 /* LOTPathAnimator.h */,
60A132FCD8669BFB528A6F4619E8AF5E /* LOTPathAnimator.m */,
A7ED459281A6037872BB9907465DA8E6 /* LOTPathInterpolator.h */,
DDFC740B104018628742FD24DC873F5C /* LOTPathInterpolator.m */,
E8F5EC2664AA0308A7A2D8DFD0CD6FF8 /* LOTPlatformCompat.h */,
AB6FF2F91C72B2C669E055721AA8CBA6 /* LOTPointInterpolator.h */,
09AD15214EEA5C1408DFDE90E117FE5F /* LOTPointInterpolator.m */,
90142F0E5BCBAD3CB819B101B03DE2AA /* LOTPolygonAnimator.h */,
708047F5C44B8110BBF7D726BCC2A9B3 /* LOTPolygonAnimator.m */,
10DCB59F7FCCB8DA2FF55D07F3F26B8A /* LOTPolystarAnimator.h */,
10AE3CC9C1C22576B34BE9422AF6824F /* LOTPolystarAnimator.m */,
B44FE26E50E0DAC351D2EBD05BA32A86 /* LOTRadialGradientLayer.h */,
BB118885A8CB138E63F1E2FC81868730 /* LOTRadialGradientLayer.m */,
1BC23806E0EF7E1FB9A077DDDF8636A4 /* LOTRenderGroup.h */,
8A92427F9E7800F7AB755F693BFC6529 /* LOTRenderGroup.m */,
E943966498BF86956775A7B8A4F4B9ED /* LOTRenderNode.h */,
8836CF55EB5868758F9EFF8D07AB1A16 /* LOTRenderNode.m */,
2FF71BFCAD6E6C2B0FF49A95D4A1F35D /* LOTRepeaterRenderer.h */,
75DF7A190E94A8C1EE9DCAC9AAB70EAF /* LOTRepeaterRenderer.m */,
51377F1C00DBCB333745F740A9C278D0 /* LOTRoundedRectAnimator.h */,
96F65AFC266289C03368D894ABE44B4A /* LOTRoundedRectAnimator.m */,
BB45AE3658EFBB04CC32F1A773CDE3B0 /* LOTShapeCircle.h */,
70FEB4F98E6E7BF356EE8344F439BB0B /* LOTShapeCircle.m */,
8BAFDEF98193AC1E08A5890F32FA3C03 /* LOTShapeFill.h */,
238096AFEBBF24F18135758E1CCE9D89 /* LOTShapeFill.m */,
07427B6C9223F8C2EBF9AF3D6F22B18E /* LOTShapeGradientFill.h */,
AFBE6B06160A5A3DC3F70CADF1B4B8B8 /* LOTShapeGradientFill.m */,
9167ACC5D02210ABACC44C7625293F1C /* LOTShapeGroup.h */,
C73C633D2D1D231087507229F4DAB08C /* LOTShapeGroup.m */,
6E156CBB0E5AD1FD6BF282CB32A6F475 /* LOTShapePath.h */,
EE81AC45E5A29C1EDDFC6C429FDE54AD /* LOTShapePath.m */,
169C768D9FD3DF6902037E43E7DB5F04 /* LOTShapeRectangle.h */,
86C619B59F91E64C1C0BFD2F81D89A03 /* LOTShapeRectangle.m */,
CC372E9573395968BF138BC55CB3D052 /* LOTShapeRepeater.h */,
A09AAEE52FCD8A6F655DB3C05E334BA2 /* LOTShapeRepeater.m */,
3A0E62162168780ECDD551F957AD230E /* LOTShapeStar.h */,
5B1FD86A85E822F226C0AB7EEAEB0223 /* LOTShapeStar.m */,
5748308DEA2723C323CBC44EDE3D4F8B /* LOTShapeStroke.h */,
9E0B409FB4377D1597E53219FBB638D8 /* LOTShapeStroke.m */,
F78D365277CD2CF37D9985315E9289C4 /* LOTShapeTransform.h */,
B4200C5DF7BC0AAE59C7A446C2EF7405 /* LOTShapeTransform.m */,
4CCACCCD0900270A7B88E53E9215AAE2 /* LOTShapeTrimPath.h */,
958EECCD4B99966FDA106B71AAE22F71 /* LOTShapeTrimPath.m */,
13E58A0755C0958D811445642E95688D /* LOTSizeInterpolator.h */,
5C0F96170E49DA074217EE798874CED8 /* LOTSizeInterpolator.m */,
53830A52C8772A1ACF7C4F974479E9F1 /* LOTStrokeRenderer.h */,
B4A4581CEB8EFB276353203EE56F3946 /* LOTStrokeRenderer.m */,
2184B97C1D4400449CE82A49240190DE /* Lottie.h */,
770BA968072EF26E73EF408721770E49 /* LOTTransformInterpolator.h */,
B347BE1D1529C9E7BF073F6E5C2BE554 /* LOTTransformInterpolator.m */,
0F285D8F358AE0D31590FD15BD378349 /* LOTTrimPathNode.h */,
ED44FE645093AB9B602A789191486E56 /* LOTTrimPathNode.m */,
33A5BFCE733FB981B9B4D0F19A928A4D /* LOTValueCallback.h */,
7119975FAEAC84FAB7BB5E8139E56ED2 /* LOTValueCallback.m */,
24AD303229F864285706532BCCA40D30 /* LOTValueDelegate.h */,
CFC67FADB31FFD4128A65F5C6071741F /* LOTValueInterpolator.h */,
19C2B23EFB510F5F8CF5FD64CF0285E3 /* LOTValueInterpolator.m */,
B72CB3FF7CF34210E824D3EBCD619792 /* NSValue+Compat.h */,
773B8FE1B5C8166293E8DC5A37E8FB4A /* NSValue+Compat.m */,
E2C3504119384AB1F5626C6F75B2A687 /* UIBezierPath.h */,
8C83127FFEB4862AEFA71571FDB53463 /* UIBezierPath.m */,
CDDD290395FA4622C9C17DDA5B2D8201 /* UIColor.h */,
53144645EA22B9B4D4F607AC2CCEA3D4 /* UIColor.m */,
B081193556554CB602679B2A9B82A5F0 /* UIColor+Expanded.h */,
76BD43D94DB949BBB99FF1F04F5F4412 /* UIColor+Expanded.m */,
58D7FB5AAA41AD1CF1F23CD32A0D926D /* Support Files */,
);
path = "lottie-ios";
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXHeadersBuildPhase section */
068F30CDB6E5D145D0D38006E50A7E0D /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
A8FAB3ECF4801B9731D3FA8E0237D16C /* Pods-DreamSleep-umbrella.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
07788BD0C9D086123E7BD52B006C6C72 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
3302B437FB0319DB6A707F6EB2489433 /* CALayer+Compat.h in Headers */,
878D271747A20417C72715B3843D6372 /* CGGeometry+LOTAdditions.h in Headers */,
7F571401F80340E1F555F6B830A9384E /* LOTAnimatedControl.h in Headers */,
FF0881948A7142742503C0A954750E78 /* LOTAnimatedSwitch.h in Headers */,
3C6F1F26278EC9DF6F6A883DC3734320 /* LOTAnimationCache.h in Headers */,
E3300222893F44A0514E6AE1A303AFAA /* LOTAnimationTransitionController.h in Headers */,
04037A19BB275F2FB4DC9F3C666C35CC /* LOTAnimationView.h in Headers */,
5DE5D0F36BD8B028870D101D23DA2B5D /* LOTAnimationView_Compat.h in Headers */,
12F64A9D7E5673CECA569A1462B3D1AF /* LOTAnimationView_Internal.h in Headers */,
F1F6BE8022B15AF502F605F354CEA770 /* LOTAnimatorNode.h in Headers */,
501A31FF697991A128FF7089EF69F71C /* LOTArrayInterpolator.h in Headers */,
5A235F94B1E91313BD34C5C9FAF1EE9D /* LOTAsset.h in Headers */,
27CD430AE569BCE091D5DCC5B8356954 /* LOTAssetGroup.h in Headers */,
BD042B87CA186BEA415DE8F6FC8ECB09 /* LOTBezierData.h in Headers */,
36D25059495F758FA107CE6584B0CDCA /* LOTBezierPath.h in Headers */,
0EC6337259A69E07948F88DB414C525D /* LOTBlockCallback.h in Headers */,
098015716DECD51327A865F29D796FDC /* LOTCacheProvider.h in Headers */,
081DA827362980D6F4A4602BEF0EF22F /* LOTCircleAnimator.h in Headers */,
D6AB00041E017FC7E2AD80BC4305FC62 /* LOTColorInterpolator.h in Headers */,
F5FB18BD7101E61588E1B1F81B27E93E /* LOTComposition.h in Headers */,
B44111DB08DE0F8CB0B1C22043079567 /* LOTCompositionContainer.h in Headers */,
CFDA4B704D39E1436FC8CC9D40E51532 /* LOTFillRenderer.h in Headers */,
9529D5CF7783F64F4C6E9C80FE4A5AF2 /* LOTGradientFillRender.h in Headers */,
4B4D62228F246506C48E4E7F4162D5F0 /* LOTHelpers.h in Headers */,
846DE65FC723D8E07D922D0AEB8BDF6E /* LOTInterpolatorCallback.h in Headers */,
2F8B76B9E868DB260C4F045E232A71F0 /* LOTKeyframe.h in Headers */,
EAA5E957F2B481F81AFA4289F813FC32 /* LOTKeypath.h in Headers */,
777C62B3E32489BE7D74159C7C5BA53B /* LOTLayer.h in Headers */,
C371CD7CFF2D48BAB5B845D805D5640D /* LOTLayerContainer.h in Headers */,
9B7D54881239E407E69D6A56DB92236C /* LOTLayerGroup.h in Headers */,
B549700BFE0D2FDCE066730BC32BEC79 /* LOTMask.h in Headers */,
E40E48874A7475AE63E4CDCE1D6988B1 /* LOTMaskContainer.h in Headers */,
8593967CB78942AC9A72A70BC300239A /* LOTModels.h in Headers */,
8089D85490976DE75DD107976AAB81C9 /* LOTNumberInterpolator.h in Headers */,
CD97E9C1ACCDCAD4D5634533AF1EA63D /* LOTPathAnimator.h in Headers */,
B1A3ACB85457491656534B64EEB5781A /* LOTPathInterpolator.h in Headers */,
0F72ED315E833DCB3097A6318C84AE90 /* LOTPlatformCompat.h in Headers */,
D9B19D99F158CE4FD06034A31E4B07E4 /* LOTPointInterpolator.h in Headers */,
50DA3078D5358FB96995A9591F434D9F /* LOTPolygonAnimator.h in Headers */,
F21EB1AFFEDB5DABC2CEE81C56057E00 /* LOTPolystarAnimator.h in Headers */,
81DCF44F782B70A4027BA4367753E5D3 /* LOTRadialGradientLayer.h in Headers */,
DD073235E8CDD081038663E9801E95ED /* LOTRenderGroup.h in Headers */,
BBCCB98CCF10E0FC578E8D2AE58B1219 /* LOTRenderNode.h in Headers */,
4D8AB296B342FE19643BEAEFCB302734 /* LOTRepeaterRenderer.h in Headers */,
7281495FCC10D24DD38192DBB2268022 /* LOTRoundedRectAnimator.h in Headers */,
C7BF2873E0D84EB617B4EC742DA3F063 /* LOTShapeCircle.h in Headers */,
D573558775BEF199A0BFBE5C50D31E1E /* LOTShapeFill.h in Headers */,
9980C628115436A469AEFA51EE62A802 /* LOTShapeGradientFill.h in Headers */,
343E42E9E5DC25FF8557F7DBA95ACE00 /* LOTShapeGroup.h in Headers */,
3F0EAFEB354CBFFC295324A619F9834E /* LOTShapePath.h in Headers */,
36279D60EF04C1CE153B7EFD202E59FA /* LOTShapeRectangle.h in Headers */,
7A90DBDC2560667FF769E61EEB099A37 /* LOTShapeRepeater.h in Headers */,
B272F05D3DE14A790E6CECA7CD4E2125 /* LOTShapeStar.h in Headers */,
782C3DB6B6BDBEC626338B299AA1E5FE /* LOTShapeStroke.h in Headers */,
BD952A2920AAA6C2F4A9376CA93EB5B9 /* LOTShapeTransform.h in Headers */,
6082516A9FC3FDF2A8C7DF7F08A4A2CA /* LOTShapeTrimPath.h in Headers */,
ECBA0A728DDD7BA5F9CB65C2C80950A1 /* LOTSizeInterpolator.h in Headers */,
F17D14AA419610A24C438010925D5285 /* LOTStrokeRenderer.h in Headers */,
E810322AD3FE0A578AFF5CB620AD15C9 /* Lottie.h in Headers */,
993AC6C27E8CD50AB5589EC021E67498 /* lottie-ios-umbrella.h in Headers */,
CDE4D22198DE0504E213B95C1B08E6BF /* LOTTransformInterpolator.h in Headers */,
59AA9A4CC65D574D23D309CD1847E01E /* LOTTrimPathNode.h in Headers */,
8999F5C08EADE22B7464C43912C5BE08 /* LOTValueCallback.h in Headers */,
046E83953D783D49245523D90B98CA6E /* LOTValueDelegate.h in Headers */,
5D23331D518CE59B37A8C41A2E405DD9 /* LOTValueInterpolator.h in Headers */,
DF98D488AB3724289D1C385669A3E8AA /* NSValue+Compat.h in Headers */,
4A3984662156041F48EB192AB2FFCBD8 /* UIBezierPath.h in Headers */,
34E0F61A11E3FBA7083F9A22AE9154DE /* UIColor.h in Headers */,
90BB5C3EF49226A2589421754D08A4B6 /* UIColor+Expanded.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
393E3B218C4FB10E759F81246E7C20FB /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
92A98B1EE7156E122768CA5C01912A67 /* DOUAudioAnalyzer.h in Headers */,
E56EBDE8B4EC8C20A7E20E93398361BB /* DOUAudioAnalyzer+Default.h in Headers */,
1153C1B712629437689DCD04EFFB7D94 /* DOUAudioAnalyzer_Private.h in Headers */,
ECE242EEB0E82FBEE115812BF973E9F5 /* DOUAudioBase.h in Headers */,
D5E12C913BF5EA6DEA1EE6F557CCF5B6 /* DOUAudioDecoder.h in Headers */,
7FA700F573DE38B8CAE2399E2338A982 /* DOUAudioEventLoop.h in Headers */,
7B6E5CE38B2D56023F0C053425FEB087 /* DOUAudioFile.h in Headers */,
CEA9D7F2DAC326E877544C91CB643379 /* DOUAudioFilePreprocessor.h in Headers */,
61F4D39C304C95232C11B9AE92D5F38D /* DOUAudioFileProvider.h in Headers */,
AD06579BA7C9D6EDC88A5961FCDBBE91 /* DOUAudioFrequencyAnalyzer.h in Headers */,
74AC9C65ACB43466AC627436BAECFB52 /* DOUAudioLPCM.h in Headers */,
A46C8E96716C8351C770010CE1BFD8BB /* DOUAudioPlaybackItem.h in Headers */,
342832AC03415E98B954724E102E2460 /* DOUAudioRenderer.h in Headers */,
AE5BE2F039B4802A3950F5C7E4F0AF17 /* DOUAudioSpatialAnalyzer.h in Headers */,
49BFC1E6E62CA5276F567DB64E873DE8 /* DOUAudioStreamer.h in Headers */,
2A6CD01CFF3243027D4EFEE3C187A4A2 /* DOUAudioStreamer+Options.h in Headers */,
25B135B3C48CE9479589AF65659F89F5 /* DOUAudioStreamer-umbrella.h in Headers */,
A34A9C75814A149CB65555739AB06F7F /* DOUAudioStreamer_Private.h in Headers */,
4E3934273A0DAA2F2E9B679C36060E31 /* DOUAudioVisualizer.h in Headers */,
CC64C3CC09243BD689ACBC27A1008CAD /* DOUEAGLView.h in Headers */,
32A3B90E1DA5E298CF75DC333F0797DB /* DOUMPMediaLibraryAssetLoader.h in Headers */,
60589D188772B5D9B154E2B30855F251 /* DOUSimpleHTTPRequest.h in Headers */,
A349CC1F71D345C60CBEF0BBA7281680 /* NSData+DOUAudioMappedFile.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
3FF2ADFE48EA71DA7B98F535C1E1F2AD /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
C441A193DFE25A8CDD81BC035C3B02B3 /* MASCompositeConstraint.h in Headers */,
B302184B9FC265E1DDF19DCB36CD0F45 /* MASConstraint.h in Headers */,
709905E774B1D76DF0767DFCB3C8E632 /* MASConstraint+Private.h in Headers */,
500BD4DC3389E361D838055CC22AA526 /* MASConstraintMaker.h in Headers */,
9D2F04CCC07FEB346F3DBBFAA33B0642 /* MASLayoutConstraint.h in Headers */,
B2B9EFBB8274117214CA5482B4412248 /* Masonry.h in Headers */,
A7FFA91D1752C0783FA29408D06F37E7 /* Masonry-umbrella.h in Headers */,
845BFE42F64A5F0734E9AE76CEA22F0D /* MASUtilities.h in Headers */,
E2DF342DE862282E3F459CD9476B9B71 /* MASViewAttribute.h in Headers */,
E24B3954FA6CFA3F84C76D97C81BF562 /* MASViewConstraint.h in Headers */,
5F58DF119EC4E911E132D6D7585030BF /* NSArray+MASAdditions.h in Headers */,
91DA6B429B8F113DBAE4BE7B5A029544 /* NSArray+MASShorthandAdditions.h in Headers */,
1C8712FFF45A50B4019C3F8633CB0F4B /* NSLayoutConstraint+MASDebugAdditions.h in Headers */,
DFF7195C2AB94D2CF165B25B89B42C1E /* View+MASAdditions.h in Headers */,
5585584E49DBB4F5756DCA62A60023B5 /* View+MASShorthandAdditions.h in Headers */,
8BC2BB7DF1B45AEA81FC933EE29B946C /* ViewController+MASAdditions.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
4731488A95C50F8EA3AD2EC8C59DFAE3 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
265CB258B6BA973B771249F03957A3F6 /* YTKBaseRequest.h in Headers */,
DC79DD6A5D45BED435A7572EE1F7507D /* YTKBatchRequest.h in Headers */,
7FFE645F4E4A1C265D6B02EF6DEDE0A6 /* YTKBatchRequestAgent.h in Headers */,
71B8D8EE7E59ECE1B81CF601E9911681 /* YTKChainRequest.h in Headers */,
5DE3380D5DDFF3091BA7A24953AF1A22 /* YTKChainRequestAgent.h in Headers */,
66191AD5B5040B02A189E866E0EE09B0 /* YTKNetwork.h in Headers */,
7CD0411D3CFF4930E2B80E582D212C57 /* YTKNetwork-umbrella.h in Headers */,
1362879B6EBBDB660FA95A0BCBD83ADB /* YTKNetworkAgent.h in Headers */,
02D5000445A4FBEBCD27BE7A48F0829C /* YTKNetworkConfig.h in Headers */,
1910E085B7C6F606F71FFDB94F00E795 /* YTKNetworkPrivate.h in Headers */,
0803D9CF7CD8FC91FDDC39FA623C6B7F /* YTKRequest.h in Headers */,
BEF5AC784B027F67FB808CE919DF7F7C /* YTKRequestEventAccessory.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
7011B4E0D96DC11C2B0DAE8F78EC9E27 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
E17671B015273174485D400B59BC1C59 /* CALayer+Night.h in Headers */,
5F10C24DD0C905B51F550D2BE05DB2BC /* CAShapeLayer+Night.h in Headers */,
4F629BD1AA5B58116A777B17E501EBA9 /* CoreAnimation+Night.h in Headers */,
A1FADBEBEBD7DEED952843F653928FEF /* DKAlpha.h in Headers */,
B63E3C523140AF100C42A9DD05D70EA5 /* DKColor.h in Headers */,
80E362A0C82067CB0A45E3CC2BB5A1A2 /* DKColorTable.h in Headers */,
6748C9D3146377455E1696C768A75407 /* DKDeallocBlockExecutor.h in Headers */,
875F4E1418DDEBBB82C043E0F2C2595F /* DKImage.h in Headers */,
668F28B2532E789C3A1A246FE6EB7340 /* DKNightVersion.h in Headers */,
AB74D9DAFB9BD0400EAD04ABDD8F138D /* DKNightVersion-umbrella.h in Headers */,
35EF7B36FB65F624A266CFB28F938071 /* DKNightVersionManager.h in Headers */,
6464DDD84547775F80B9FBF179B10495 /* EXTKeyPathCoding.h in Headers */,
55547A3F48653153E5080A227EBAAB7A /* metamacros.h in Headers */,
B7EDF27FC13D95266FE8DB6A1B557C86 /* NSObject+DeallocBlock.h in Headers */,
6B6F5341F78537664CA2A1E89B5C54EA /* NSObject+Night.h in Headers */,
A174A6C0ABE1091F0AD0C09B9461CF01 /* UIBarButtonItem+Night.h in Headers */,
9B21485294819E30B46EDBD1EFC68A55 /* UIButton+Night.h in Headers */,
E7BB7A2B4314D02FBFE313C0BB395815 /* UIControl+Night.h in Headers */,
C80470B9FA84AD5E92D48A8AABF7E6F9 /* UIImageView+Night.h in Headers */,
31A97D95846A95A3CDCD89D2E10D537A /* UILabel+Night.h in Headers */,
F7382EB9CC48DA918F32E899D2957FEF /* UINavigationBar+Animation.h in Headers */,
7FD00E591F96028A72861818F1934341 /* UINavigationBar+Night.h in Headers */,
F8ADF77FAE104732A909BF9AB189FCA2 /* UIPageControl+Night.h in Headers */,
C1EB599C9E914514947C060C2EE2AD31 /* UIProgressView+Night.h in Headers */,
5BCD165E3D64C11A9AA2FD9D84D90B6A /* UISearchBar+Keyboard.h in Headers */,
AF05E0F2790D37F8EC1BDE93AF41507D /* UISearchBar+Night.h in Headers */,
D4249C15EEB84C0886B25B4871684041 /* UISlider+Night.h in Headers */,
444828D554CB824DD52A3AC117220BE0 /* UISwitch+Night.h in Headers */,
798E55B10C39A13C3C95E3BE78A4905E /* UITabBar+Night.h in Headers */,
A8CD6354FB9683A303227318C66B4098 /* UITableView+Night.h in Headers */,
E39D0D38DDD60B00BC1F0884ED28ADF4 /* UITextField+Keyboard.h in Headers */,
FA57A77C0681A62E0EBE4BB346730FA1 /* UITextField+Night.h in Headers */,
76A26368B59D75647A3A785508455CE3 /* UITextView+Keyboard.h in Headers */,
636033C638168572302DB73AC65768F2 /* UITextView+Night.h in Headers */,
5CC1235E51AD06046E1D72EC118108AC /* UIToolbar+Night.h in Headers */,
AF59BE2E7458CE93C434E883514DDB6C /* UIView+Night.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
75E554110DC23A36D8F4FD63363F1F67 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
16108DB654C0BF02C69DA959F0B836F2 /* AFCompatibilityMacros.h in Headers */,
E23AD2FA650F1435C25EA40AB6B72E7A /* AFHTTPSessionManager.h in Headers */,
6AAFD764B81EB0DAFB9C5E4D6C9ED656 /* AFNetworking-umbrella.h in Headers */,
44BA7053E79E7A549399E51E01766BFD /* AFNetworkReachabilityManager.h in Headers */,
487B45678CA1B5EF6D5E2AF02869C154 /* AFSecurityPolicy.h in Headers */,
D29F7C1B5CCB17B2065411FB2AAC96D4 /* AFURLRequestSerialization.h in Headers */,
46901BF37B6B07B6A4F2078A856E69B8 /* AFURLResponseSerialization.h in Headers */,
39A102466A4B1537232C487A7448621E /* AFURLSessionManager.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
BA4779DEF66303FA04C00727A4845470 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
B2950850D387507FF7C91D5DD1EB6074 /* MJRefresh.h in Headers */,
27953A9F2EF5E713748584C88A6FA090 /* MJRefresh-umbrella.h in Headers */,
CCCC26F7637425E021939F00165F4C55 /* MJRefreshAutoFooter.h in Headers */,
5FE2F5EA2B0F22A9469078A26935AC8E /* MJRefreshAutoGifFooter.h in Headers */,
EBBE232DA0F5DBDF5CBCCAF2B504A16A /* MJRefreshAutoNormalFooter.h in Headers */,
FA0A1AFF81F2407ED7E6DE9085368EF5 /* MJRefreshAutoStateFooter.h in Headers */,
21ACF84D3AFC26E51BE6F0DEF5042B3A /* MJRefreshBackFooter.h in Headers */,
774CA3A311BECA6FAA68E945749E8A63 /* MJRefreshBackGifFooter.h in Headers */,
5B37180BE13A423AE12C3B50890A944B /* MJRefreshBackNormalFooter.h in Headers */,
DC2BCCD31CC00E83FF504F126506813A /* MJRefreshBackStateFooter.h in Headers */,
CCDA8288061F12AFA336BB09C55BFF1D /* MJRefreshComponent.h in Headers */,
F5B05B01C09A9C2687930E80C2F723BB /* MJRefreshConfig.h in Headers */,
A0EB7D4A8085772590C199F7E1118A04 /* MJRefreshConst.h in Headers */,
F0C593C48C3832EA2FB363B28DDB858D /* MJRefreshFooter.h in Headers */,
EA4D58D8AA1AAD35BE09BEEDEAEF55D2 /* MJRefreshGifHeader.h in Headers */,
1C6FFFDA05385B09348226E01791CCD2 /* MJRefreshHeader.h in Headers */,
AB49F4C11D446F4972A9B971677EE712 /* MJRefreshNormalHeader.h in Headers */,
A458539F0BC46AB3A998C440B3118B7B /* MJRefreshNormalTrailer.h in Headers */,
E01EA0E10892D98F08A910EDA71FB443 /* MJRefreshStateHeader.h in Headers */,
86BD829EC1CAE0520DCC33C1D2204180 /* MJRefreshStateTrailer.h in Headers */,
C048F4453504FCC29C4579CD441FE79D /* MJRefreshTrailer.h in Headers */,
D87CBCB25978A2CC3C985FE69A462EB0 /* NSBundle+MJRefresh.h in Headers */,
0657D4DC83217DC0615F294A221A4F65 /* UICollectionViewLayout+MJRefresh.h in Headers */,
717E4D8FC730D8EA33CAA9D0EA8CD4B8 /* UIScrollView+MJExtension.h in Headers */,
AAA699A6523F4FBD720D904BB9D72894 /* UIScrollView+MJRefresh.h in Headers */,
D38C9D8CE2A7F06E7376FB15FD39192D /* UIView+MJExtension.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
0130B3724283586C0E9D2A112D4F2AA1 /* AFNetworking */ = {
isa = PBXNativeTarget;
buildConfigurationList = 03A52F8575EE766AB10F5BD7A405D01E /* Build configuration list for PBXNativeTarget "AFNetworking" */;
buildPhases = (
75E554110DC23A36D8F4FD63363F1F67 /* Headers */,
FBFE9AB664B3FEEE913ADEF6C181B50D /* Sources */,
F4514E6ACEAF23C78E6499F12995A735 /* Frameworks */,
FFC349936A413511BEEA5703624783CD /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = AFNetworking;
productName = AFNetworking;
productReference = A4FA15D44DF6BAC7550EDEED10862AA3 /* AFNetworking */;
productType = "com.apple.product-type.framework";
};
0B967D7F8561D42493EE289EC8D450D1 /* lottie-ios */ = {
isa = PBXNativeTarget;
buildConfigurationList = 1A436D3C41D09CA6D73D74A294EAAADD /* Build configuration list for PBXNativeTarget "lottie-ios" */;
buildPhases = (
07788BD0C9D086123E7BD52B006C6C72 /* Headers */,
5C1B84273B0CF67A0FAE7A428CB25151 /* Sources */,
50514A07B320D76E5ED3FA506C2A33FF /* Frameworks */,
EF23EE435B10C0176ECE7519B0B06FE5 /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = "lottie-ios";
productName = Lottie;
productReference = 51BA97E8B5085EFFB47BC9C0B785CEA7 /* Lottie.framework */;
productType = "com.apple.product-type.framework";
};
55AF53E6C77A10ED4985E04D74A8878E /* Masonry */ = {
isa = PBXNativeTarget;
buildConfigurationList = CD3CFB22A23EFEE9A2E4BC822B58C430 /* Build configuration list for PBXNativeTarget "Masonry" */;
buildPhases = (
3FF2ADFE48EA71DA7B98F535C1E1F2AD /* Headers */,
96DAE081A42A7D7AF99E8D4A6892A4A4 /* Sources */,
D6FDC559A3AC002076E26D213B556036 /* Frameworks */,
4BA9EE441375FBE8986F157070F4C6BC /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = Masonry;
productName = Masonry;
productReference = 1FFED36A657123030ABB700256D73F15 /* Masonry.framework */;
productType = "com.apple.product-type.framework";
};
5B27019314D6E0AFC98D212A7729D0CD /* Pods-DreamSleep */ = {
isa = PBXNativeTarget;
buildConfigurationList = 232D8F687EACBD3F424690414D317F5E /* Build configuration list for PBXNativeTarget "Pods-DreamSleep" */;
buildPhases = (
068F30CDB6E5D145D0D38006E50A7E0D /* Headers */,
16B58D81376BA6A9DED012FBEB9A33FA /* Sources */,
2A1CB9A18F1E30218C9D1EC2A0C70D7C /* Frameworks */,
A6DFD4536FFBDDD461CCC3B60C1D4122 /* Resources */,
);
buildRules = (
);
dependencies = (
A68075A10AF032CAC027B19FF8D10E13 /* PBXTargetDependency */,
E6CD5F598318C93EB404BCF10F149E9B /* PBXTargetDependency */,
24B9AE98EB358E58555DA5B796F88AED /* PBXTargetDependency */,
19C62A8DB427E4B72CDE51FA53A22378 /* PBXTargetDependency */,
E686E8C177D56A7AA89FAD4221D7A4AD /* PBXTargetDependency */,
F71E882D46910FB682D280C7A456C9E4 /* PBXTargetDependency */,
826340DD2BBF3819CECDF58578C419D2 /* PBXTargetDependency */,
);
name = "Pods-DreamSleep";
productName = Pods_DreamSleep;
productReference = 9BD6F0B21CDAE9FA26016DC870A83047 /* Pods-DreamSleep */;
productType = "com.apple.product-type.framework";
};
5CEB6950CD05DCBC58038F439D626086 /* DOUAudioStreamer */ = {
isa = PBXNativeTarget;
buildConfigurationList = 42DD51745B34D157B4BB0F61303D4EA6 /* Build configuration list for PBXNativeTarget "DOUAudioStreamer" */;
buildPhases = (
393E3B218C4FB10E759F81246E7C20FB /* Headers */,
0676FEAC2E9F4A357D6D7C178D83D01E /* Sources */,
25530E8EDBE98ECA4FC8E33E13BBDA86 /* Frameworks */,
757622F371A148941B98CF71205F4AB4 /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = DOUAudioStreamer;
productName = DOUAudioStreamer;
productReference = 04B380B6648264692DA26C32040918AF /* DOUAudioStreamer.framework */;
productType = "com.apple.product-type.framework";
};
6868056D761E163D10FDAF8CF1C4D9B8 /* MJRefresh */ = {
isa = PBXNativeTarget;
buildConfigurationList = F69E54AEEB7F4E48354E8F38C443B4DC /* Build configuration list for PBXNativeTarget "MJRefresh" */;
buildPhases = (
BA4779DEF66303FA04C00727A4845470 /* Headers */,
61CDF33034F738229CEB38451B6E4C3D /* Sources */,
3C16BB7A0E3ED61444705FB4AF96A926 /* Frameworks */,
492C0AB4E67A65F083EBB4BCDA3D49B3 /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = MJRefresh;
productName = MJRefresh;
productReference = E49D6D248DD1CEE584E6776B9164A1B2 /* MJRefresh */;
productType = "com.apple.product-type.framework";
};
A10D306FBCE61B6A00F5D9E74036D1E9 /* DKNightVersion */ = {
isa = PBXNativeTarget;
buildConfigurationList = B1B2DE070F2F39966D1B1B4786614B0E /* Build configuration list for PBXNativeTarget "DKNightVersion" */;
buildPhases = (
7011B4E0D96DC11C2B0DAE8F78EC9E27 /* Headers */,
ECE458A9653B0EE331FDD939EAC108ED /* Sources */,
B3F2E9ADD23E5575E1B0D2FC20EF2CDB /* Frameworks */,
F69DC14910949DA266F6BBC4BFB6C803 /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = DKNightVersion;
productName = DKNightVersion;
productReference = D49390DC16189A74052FAC3455F18249 /* DKNightVersion.framework */;
productType = "com.apple.product-type.framework";
};
AC51EA5BE1682F8277BE5F13677E147C /* YTKNetwork */ = {
isa = PBXNativeTarget;
buildConfigurationList = 2DB2FE71F92A4525693E4DFD16041F80 /* Build configuration list for PBXNativeTarget "YTKNetwork" */;
buildPhases = (
4731488A95C50F8EA3AD2EC8C59DFAE3 /* Headers */,
9F0D6FB97DC3BEE217E2425C9E19A104 /* Sources */,
E5BD0F9954C3B453F800B1A9101C074F /* Frameworks */,
79C334604FAF0EE379503CBA0B98D605 /* Resources */,
);
buildRules = (
);
dependencies = (
8F8FA8314B593E348A752BFB044F9ADD /* PBXTargetDependency */,
);
name = YTKNetwork;
productName = YTKNetwork;
productReference = 601EEA66C9A6080A11C1ADE5E2A91AE1 /* YTKNetwork */;
productType = "com.apple.product-type.framework";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
BFDFE7DC352907FC980B868725387E98 /* Project object */ = {
isa = PBXProject;
attributes = {
LastSwiftUpdateCheck = 1240;
LastUpgradeCheck = 1330;
};
buildConfigurationList = 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */;
compatibilityVersion = "Xcode 13.0";
developmentRegion = en;
hasScannedForEncodings = 0;
knownRegions = (
Base,
en,
);
mainGroup = CF1408CF629C7361332E53B88F7BD30C;
productRefGroup = 43266F6A8762FD51E36134C5F5B984AE /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
0130B3724283586C0E9D2A112D4F2AA1 /* AFNetworking */,
A10D306FBCE61B6A00F5D9E74036D1E9 /* DKNightVersion */,
5CEB6950CD05DCBC58038F439D626086 /* DOUAudioStreamer */,
0B967D7F8561D42493EE289EC8D450D1 /* lottie-ios */,
55AF53E6C77A10ED4985E04D74A8878E /* Masonry */,
6868056D761E163D10FDAF8CF1C4D9B8 /* MJRefresh */,
5B27019314D6E0AFC98D212A7729D0CD /* Pods-DreamSleep */,
AC51EA5BE1682F8277BE5F13677E147C /* YTKNetwork */,
);
};
/* End PBXProject section */
/* Begin PBXResourcesBuildPhase section */
492C0AB4E67A65F083EBB4BCDA3D49B3 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
20B9EF1DA6E590860B6DACEDCF95111E /* MJRefresh.bundle in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
4BA9EE441375FBE8986F157070F4C6BC /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
757622F371A148941B98CF71205F4AB4 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
79C334604FAF0EE379503CBA0B98D605 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
A6DFD4536FFBDDD461CCC3B60C1D4122 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
EF23EE435B10C0176ECE7519B0B06FE5 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
F69DC14910949DA266F6BBC4BFB6C803 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
2C2A591675380BD59160A70596E37405 /* DKColorTable.txt in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
FFC349936A413511BEEA5703624783CD /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
0676FEAC2E9F4A357D6D7C178D83D01E /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
2AD7A7F65A1D706D7D23A3C4C9B22981 /* DOUAudioAnalyzer.m in Sources */,
77754A08B4850CB72B151FB08699FB8B /* DOUAudioAnalyzer+Default.m in Sources */,
4F0165685E582931FB882B65428CC597 /* DOUAudioDecoder.m in Sources */,
F0B15996EC6CE21FAD73B0EBE2475436 /* DOUAudioEventLoop.m in Sources */,
60F42807F834266817802FA9B06ACB70 /* DOUAudioFilePreprocessor.m in Sources */,
2AA8E645D47C517410CB33B074B0FE1D /* DOUAudioFileProvider.m in Sources */,
F4BBEA8767BE16B7CCDE554617CEC182 /* DOUAudioFrequencyAnalyzer.m in Sources */,
FDB8ED70DC886757EF54491A0CE9E913 /* DOUAudioLPCM.m in Sources */,
917C7145B7BCC145605F35B094423E4B /* DOUAudioPlaybackItem.m in Sources */,
71C3F8C4391D174FBBA6E788E77CBA79 /* DOUAudioRenderer.m in Sources */,
90C3B3A12A7DC2CC00E0893B0DC055D2 /* DOUAudioSpatialAnalyzer.m in Sources */,
E229D39515478EAAED96869B93375ACB /* DOUAudioStreamer.m in Sources */,
CB23DD194082C1148E900A6A71D776A8 /* DOUAudioStreamer+Options.m in Sources */,
82E4A0B5FBB5C7F2EABC7985187211D1 /* DOUAudioStreamer-dummy.m in Sources */,
82937E6535D33D4C3D143FEBECA18EFC /* DOUAudioVisualizer.m in Sources */,
8378B61E79B23C9ED4D25BF9C7493C24 /* DOUEAGLView.m in Sources */,
55AB6FE8F8BA598B7B0FC0C685DE1454 /* DOUMPMediaLibraryAssetLoader.m in Sources */,
FC4ECD413998DE0044417F932FEC3064 /* DOUSimpleHTTPRequest.m in Sources */,
3D8428F8DB547200D5BC29AE5F0DF79A /* NSData+DOUAudioMappedFile.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
16B58D81376BA6A9DED012FBEB9A33FA /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
680C1E9C4B73C0396B5B843AE2F0583F /* Pods-DreamSleep-dummy.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
5C1B84273B0CF67A0FAE7A428CB25151 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
5ABFE502B7BF81FF23AF25002CEDB9F9 /* CALayer+Compat.m in Sources */,
7944C7FDA637646E33A9774327D4BBC1 /* CGGeometry+LOTAdditions.m in Sources */,
A9A8070DB3E58E025A404638BFA7456B /* LOTAnimatedControl.m in Sources */,
176ED908B871ED3C4D2039623BC65D26 /* LOTAnimatedSwitch.m in Sources */,
AADA4442F3F1B6A22C1ACF73E43AB62E /* LOTAnimationCache.m in Sources */,
4766E55AD2ED7461ADB7092090B13712 /* LOTAnimationTransitionController.m in Sources */,
CC6B894A8148066DA0726EE8332CCD5E /* LOTAnimationView.m in Sources */,
EDFB74A884F5486FBB6D84878A47467C /* LOTAnimatorNode.m in Sources */,
AC0468E701A13E3E102C83A03893F2D2 /* LOTArrayInterpolator.m in Sources */,
80FA6BC95D517487F702F394C94EE801 /* LOTAsset.m in Sources */,
9F0B4F7B01C8FD7389CCC625B21431A6 /* LOTAssetGroup.m in Sources */,
C97EB2F0F0E6FE9B71FB7BF986222BF1 /* LOTBezierData.m in Sources */,
C7BC2F5F0EDA19084857D1BAEEC27B43 /* LOTBezierPath.m in Sources */,
0DFEE1F5C97FB5B6D46D36F2E42C1FF4 /* LOTBlockCallback.m in Sources */,
B5F96E16BF868DAD7C5B0D0AD9191370 /* LOTCacheProvider.m in Sources */,
CFA6FC9E01EC8F6A5ACA702339850515 /* LOTCircleAnimator.m in Sources */,
7FB341922B5FD3302E6208A91A694568 /* LOTColorInterpolator.m in Sources */,
9E5F9EB0050A41350DA8DFD1DA9A40B2 /* LOTComposition.m in Sources */,
4629E91715401FE727212EBFC38B94D7 /* LOTCompositionContainer.m in Sources */,
27410EFA008CAD1451B1B058525A820B /* LOTFillRenderer.m in Sources */,
51EBADC07FB48DAD032EC13144C70023 /* LOTGradientFillRender.m in Sources */,
8DDA4DFBBCE0EAC89304B0943811E308 /* LOTInterpolatorCallback.m in Sources */,
8CCEAD462123711BA4D045C037F89AC4 /* LOTKeyframe.m in Sources */,
89D1315CA78CBB110186630BE1403B30 /* LOTKeypath.m in Sources */,
3FE7716F15677833DB9E94FD84135A17 /* LOTLayer.m in Sources */,
F66F0A974BA100F86E791CC5D4D71BF7 /* LOTLayerContainer.m in Sources */,
D868DB53B92E82F3E8CEFAF4D17B28BC /* LOTLayerGroup.m in Sources */,
94E1DF2A39A3C59359AA6CCBBD0B2EB6 /* LOTMask.m in Sources */,
9A84347D017C4CF4540F6C5D72B279E4 /* LOTMaskContainer.m in Sources */,
0896BA0FC3113D8D3567543842AD4577 /* LOTNumberInterpolator.m in Sources */,
161F1F9CD2FA15625ADE4A50A248B8B6 /* LOTPathAnimator.m in Sources */,
CE9D5A2C73FD2E1E7B262B1103D8380F /* LOTPathInterpolator.m in Sources */,
385A27F1875FC2533785843DB6EF4E9C /* LOTPointInterpolator.m in Sources */,
3FEC4F670C6B70803EE21A0C2AC4FAB6 /* LOTPolygonAnimator.m in Sources */,
11A5B17DB2BD565785D41F676BC53454 /* LOTPolystarAnimator.m in Sources */,
41476E6284BFFC9E9351332D777EF0D5 /* LOTRadialGradientLayer.m in Sources */,
BC150F87A8A96FFEC698A5434BB4E758 /* LOTRenderGroup.m in Sources */,
AC69B41D7AF525143A5DCB471A20A770 /* LOTRenderNode.m in Sources */,
34D4434E77392B76C10D2C74A80BC2AE /* LOTRepeaterRenderer.m in Sources */,
A932C18576F30D6A250AA4CCD06EAC7E /* LOTRoundedRectAnimator.m in Sources */,
EF6CF7ED2624C016079017B4AF5B5500 /* LOTShapeCircle.m in Sources */,
82069E8A34A8BD52C8809F61C9B93CF0 /* LOTShapeFill.m in Sources */,
D5BB7E08E9F64E9F4565E6965D794F2E /* LOTShapeGradientFill.m in Sources */,
03AF2A93F5B7519A33E3A4677CDE4F80 /* LOTShapeGroup.m in Sources */,
7E87048099B3EADB965FED6141B4E3BA /* LOTShapePath.m in Sources */,
A96C51B945426CE699044CB974BA2429 /* LOTShapeRectangle.m in Sources */,
80D28602DF762C86F47DBB9D337BA0FC /* LOTShapeRepeater.m in Sources */,
FA240085C778553BBDCD702041559F89 /* LOTShapeStar.m in Sources */,
ADC62FBE73D69E96C136A490F2469E06 /* LOTShapeStroke.m in Sources */,
BB915E71E44E36CF0CC03DA190C0CBC5 /* LOTShapeTransform.m in Sources */,
E1986A96EB7906DFA58BE7569ACCFC97 /* LOTShapeTrimPath.m in Sources */,
156EEB480244352EA696B9ACFBC630B4 /* LOTSizeInterpolator.m in Sources */,
BC2E5D686E3C8185D4E859CD2D1929BA /* LOTStrokeRenderer.m in Sources */,
D0E345F80E74FEF9A86B519CF671675C /* lottie-ios-dummy.m in Sources */,
0A6CEE3ED9385F8B66335312779F815A /* LOTTransformInterpolator.m in Sources */,
DDBE19A30BB8F740B1F75CCFBA3CF20F /* LOTTrimPathNode.m in Sources */,
D8229283D5A8497A58B1365DA6B9343E /* LOTValueCallback.m in Sources */,
29F203B6D1183F234FDD19D2D1C34711 /* LOTValueInterpolator.m in Sources */,
52F9A41D250B132071D6BC693375FBF3 /* NSValue+Compat.m in Sources */,
BE0AD960F7C64B92ECBA7CACEDE5EF3A /* UIBezierPath.m in Sources */,
C2E0D9BB18F6148B20621271FA0D69E4 /* UIColor.m in Sources */,
238963A1E7B6B29A395CA308C36FB5C3 /* UIColor+Expanded.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
61CDF33034F738229CEB38451B6E4C3D /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
70F7099A60F3FB948894F3115B037FBF /* MJRefresh-dummy.m in Sources */,
B0591652F2947212E5B3422AB82161DD /* MJRefreshAutoFooter.m in Sources */,
65352CD73FACBE20A4CB351B335EE626 /* MJRefreshAutoGifFooter.m in Sources */,
99FC418AC88815176BB4BA09870E774A /* MJRefreshAutoNormalFooter.m in Sources */,
76340B67F76A71FB52C666423EFB885D /* MJRefreshAutoStateFooter.m in Sources */,
8777D98DA4FA970E872331E6E28DD91E /* MJRefreshBackFooter.m in Sources */,
95149DE76A67F2EB8D0FF8AFEA82E12C /* MJRefreshBackGifFooter.m in Sources */,
AF5A48467C25600884558909711FD062 /* MJRefreshBackNormalFooter.m in Sources */,
31C1A39801DB6AA0A99FFB9D378D3BF5 /* MJRefreshBackStateFooter.m in Sources */,
C66FC8C7255B92388E5481FC4766EB66 /* MJRefreshComponent.m in Sources */,
9E21AA2EC996E70AD863FBCC5546CC65 /* MJRefreshConfig.m in Sources */,
E89D5D85B92B4543C9C3BC1264C3FC26 /* MJRefreshConst.m in Sources */,
CE8758BC47E6FA48209C4EC758E3C4DB /* MJRefreshFooter.m in Sources */,
24AFF1E1B0760CFD12FFD5A730D6E2E5 /* MJRefreshGifHeader.m in Sources */,
7E34AB92C474F79C935A5C5281C0275D /* MJRefreshHeader.m in Sources */,
1F657AD814056F172645E3C70F2B0797 /* MJRefreshNormalHeader.m in Sources */,
36670AD1898E899C385935E9C29DB90E /* MJRefreshNormalTrailer.m in Sources */,
7FC3F9641BD28F2A091FB02C83231320 /* MJRefreshStateHeader.m in Sources */,
EA4339023A6234E32422672379562EFC /* MJRefreshStateTrailer.m in Sources */,
4F744D7E7A43E19801C059337D720B6D /* MJRefreshTrailer.m in Sources */,
A825C33C26CFFCE6F016FD985541D2A5 /* NSBundle+MJRefresh.m in Sources */,
0C2B982E13439C810B851631AB967B0F /* UICollectionViewLayout+MJRefresh.m in Sources */,
CA6DEB80DC2C89BCE7FF82C86816504A /* UIScrollView+MJExtension.m in Sources */,
2C98045755C0E2AF3CA66E61CDC28C30 /* UIScrollView+MJRefresh.m in Sources */,
8021EA4FB0F5EC5479B56E62C9CD0AF1 /* UIView+MJExtension.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
96DAE081A42A7D7AF99E8D4A6892A4A4 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
4F7A4D29F567F70EB554AF053D46DBAB /* MASCompositeConstraint.m in Sources */,
3F0A04DF5A70AF3DA6408108F7E49931 /* MASConstraint.m in Sources */,
B8722D3FFA2E63CFE914D74AEA712312 /* MASConstraintMaker.m in Sources */,
A5BB75FC486E0B06FFB44FD90E60002A /* MASLayoutConstraint.m in Sources */,
92AF4CF4922B5BD2C8BD425BE61570C2 /* Masonry-dummy.m in Sources */,
68F14E6AD19EC7FC15743C1899706E10 /* MASViewAttribute.m in Sources */,
C622E91D61B094484128B20426842D62 /* MASViewConstraint.m in Sources */,
9EB02F89E1E1A28B6F1A9FF7AE49BF51 /* NSArray+MASAdditions.m in Sources */,
13ACF311E6BE1C4DEEBBACC7A10D92D0 /* NSLayoutConstraint+MASDebugAdditions.m in Sources */,
17E421C98723F6517F7C7A6F053E5446 /* View+MASAdditions.m in Sources */,
AF19D8899FD3B72A2A354675CF0B4B4B /* ViewController+MASAdditions.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
9F0D6FB97DC3BEE217E2425C9E19A104 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
6EACEC963683239305B161A5032B7EF6 /* YTKBaseRequest.m in Sources */,
D7A082267C561D6385F049144F49DCC9 /* YTKBatchRequest.m in Sources */,
7C60C060128131E0303FCBF5D23C80B6 /* YTKBatchRequestAgent.m in Sources */,
A2B0D06975AC503FFAF178C006150F23 /* YTKChainRequest.m in Sources */,
972854857D5A906E3F3987222E661FB1 /* YTKChainRequestAgent.m in Sources */,
DEC12E1A6A3555D9B88120A325B41DEA /* YTKNetwork-dummy.m in Sources */,
69A7DBF18ACD9627D2F4E82EC742F3A7 /* YTKNetworkAgent.m in Sources */,
145162F0673671280564A7568B9CE946 /* YTKNetworkConfig.m in Sources */,
293C28D9A9124A73229E21D31C8AE4D2 /* YTKNetworkPrivate.m in Sources */,
2FADF1885E1D1AEAA0CEFF7B75D856F5 /* YTKRequest.m in Sources */,
DEA792809D8B47C17551B08F026FC7AE /* YTKRequestEventAccessory.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
ECE458A9653B0EE331FDD939EAC108ED /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
4F58331CE72A14DB358A051715D16332 /* CALayer+Night.m in Sources */,
9429FC6B443418ECFD4217C2DE26D01C /* CAShapeLayer+Night.m in Sources */,
9C7A2F6B98103C6F2E01D1C19C87D78D /* DKAlpha.m in Sources */,
F409514460B49909252092F89D7815B3 /* DKColor.m in Sources */,
2798FFC504412F619D3BE6E1741C6C06 /* DKColorTable.m in Sources */,
04E242ED3B8C861226107AB8E68E737D /* DKDeallocBlockExecutor.m in Sources */,
94FBC205739F8D2F316CBD9ECA22A592 /* DKImage.m in Sources */,
C487C3767519D35DA2E8B9846474BF71 /* DKNightVersion-dummy.m in Sources */,
E506A9136613A8F447486984F3D3E944 /* DKNightVersionManager.m in Sources */,
1F3CF181DF860FD3C9AB3E4A106296B8 /* NSObject+DeallocBlock.m in Sources */,
9427F282086AD57887156FAA9AD210DF /* NSObject+Night.m in Sources */,
63CEBE984A3558F99D2D3E9EB1CE4EAB /* UIBarButtonItem+Night.m in Sources */,
183C62707FDA16E5CA6C6298499C9572 /* UIButton+Night.m in Sources */,
5C2A12CE5AEC662833E00DA9EF76C297 /* UIControl+Night.m in Sources */,
1A13EBFF81CCAFA921CB77FCDB0B5D71 /* UIImageView+Night.m in Sources */,
F846A595257F217CD9BBE376FC9462B7 /* UILabel+Night.m in Sources */,
DE0EACF14B32E2D421ED4464EA03B47F /* UINavigationBar+Animation.m in Sources */,
3AC156F7E92F061DC5FFD52630229DF0 /* UINavigationBar+Night.m in Sources */,
8E3DB486A46538620F8B978B7B04FF21 /* UIPageControl+Night.m in Sources */,
954BC9B9AD7750A927B80FE16995A59A /* UIProgressView+Night.m in Sources */,
DEC364F1EDC9D2AFC5849780E1169701 /* UISearchBar+Keyboard.m in Sources */,
46E703E182D6D4FA13DCC8327EAEFD0E /* UISearchBar+Night.m in Sources */,
E378B85D174E658B58A2764FE8731E9D /* UISlider+Night.m in Sources */,
E1EBE8193D362D5441991CE2EB426E0E /* UISwitch+Night.m in Sources */,
1EF6825CB794AB0DE3B9DCF1A883162A /* UITabBar+Night.m in Sources */,
1DBBC7EF53187AE21A076555A67C517F /* UITableView+Night.m in Sources */,
CE7A622B4E3BC0F1751C6B1FA919857E /* UITextField+Keyboard.m in Sources */,
D119D5048094FEA909FF578E8B5326B5 /* UITextField+Night.m in Sources */,
12F5065A2306C56B4D600B72844D4969 /* UITextView+Keyboard.m in Sources */,
949E1F9E765EC2FD7FC5E503C977D91C /* UITextView+Night.m in Sources */,
888FE7ADF440A902FC2EC582BEC36215 /* UIToolbar+Night.m in Sources */,
475D94662C1FE687EF23A4757FE1A4A2 /* UIView+Night.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
FBFE9AB664B3FEEE913ADEF6C181B50D /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
D2127799FF85142D8A4BD5DA67DA639D /* AFHTTPSessionManager.m in Sources */,
9275C117E099A185B76B6A14978A1B72 /* AFNetworking-dummy.m in Sources */,
0ABF5D1A2685BE8F02A0487420CDE8AD /* AFNetworkReachabilityManager.m in Sources */,
ED15A5CF2185C0CDD54580A8899EFF3F /* AFSecurityPolicy.m in Sources */,
2543E404B46E3716BA6E62AF20DFE114 /* AFURLRequestSerialization.m in Sources */,
9EC565A573F15464FC02427FF1C17D21 /* AFURLResponseSerialization.m in Sources */,
6DC4DDDCA3622966F7111C828137EB15 /* AFURLSessionManager.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXTargetDependency section */
19C62A8DB427E4B72CDE51FA53A22378 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = MJRefresh;
target = 6868056D761E163D10FDAF8CF1C4D9B8 /* MJRefresh */;
targetProxy = 36C5F564E89035AA8AAEF634262DD825 /* PBXContainerItemProxy */;
};
24B9AE98EB358E58555DA5B796F88AED /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = DOUAudioStreamer;
target = 5CEB6950CD05DCBC58038F439D626086 /* DOUAudioStreamer */;
targetProxy = CD11884E7E921F73178EB28F6F9EEA14 /* PBXContainerItemProxy */;
};
826340DD2BBF3819CECDF58578C419D2 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = "lottie-ios";
target = 0B967D7F8561D42493EE289EC8D450D1 /* lottie-ios */;
targetProxy = 6912A432B30ED6562AC05B96C96393D0 /* PBXContainerItemProxy */;
};
8F8FA8314B593E348A752BFB044F9ADD /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = AFNetworking;
target = 0130B3724283586C0E9D2A112D4F2AA1 /* AFNetworking */;
targetProxy = AAB6D2B7E054565667E7CF9329FA3A7E /* PBXContainerItemProxy */;
};
A68075A10AF032CAC027B19FF8D10E13 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = AFNetworking;
target = 0130B3724283586C0E9D2A112D4F2AA1 /* AFNetworking */;
targetProxy = 44D4B15CAC7920EE7AE3974F2F79EC1C /* PBXContainerItemProxy */;
};
E686E8C177D56A7AA89FAD4221D7A4AD /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = Masonry;
target = 55AF53E6C77A10ED4985E04D74A8878E /* Masonry */;
targetProxy = EED82D05853B32000D2C2C9E41045E63 /* PBXContainerItemProxy */;
};
E6CD5F598318C93EB404BCF10F149E9B /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = DKNightVersion;
target = A10D306FBCE61B6A00F5D9E74036D1E9 /* DKNightVersion */;
targetProxy = 49C891CCFECEECC520B87106FB8B5F9F /* PBXContainerItemProxy */;
};
F71E882D46910FB682D280C7A456C9E4 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = YTKNetwork;
target = AC51EA5BE1682F8277BE5F13677E147C /* YTKNetwork */;
targetProxy = E1593C57B244E5564A60E80106933D76 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin XCBuildConfiguration section */
07A26A8DC3FA2257B9781EEA5425ADA1 /* Beta */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = C41877007B1BC75E0519753081886F86 /* AFNetworking.release.xcconfig */;
buildSettings = {
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
CURRENT_PROJECT_VERSION = 1;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
GCC_PREFIX_HEADER = "Target Support Files/AFNetworking/AFNetworking-prefix.pch";
INFOPLIST_FILE = "Target Support Files/AFNetworking/AFNetworking-Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MODULEMAP_FILE = "Target Support Files/AFNetworking/AFNetworking.modulemap";
PRODUCT_MODULE_NAME = AFNetworking;
PRODUCT_NAME = AFNetworking;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Beta;
};
11989BF8664E3CA07999B33444CB1A3C /* Beta */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 0F31368E972AEC0CA565CABBA49F2D81 /* Masonry.release.xcconfig */;
buildSettings = {
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
CURRENT_PROJECT_VERSION = 1;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
GCC_PREFIX_HEADER = "Target Support Files/Masonry/Masonry-prefix.pch";
INFOPLIST_FILE = "Target Support Files/Masonry/Masonry-Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MODULEMAP_FILE = "Target Support Files/Masonry/Masonry.modulemap";
PRODUCT_MODULE_NAME = Masonry;
PRODUCT_NAME = Masonry;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Beta;
};
1EFF801D4E3A7625AB3CA92EC888F860 /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 71F90A9AE6E5BC668387D9593CC9EB2F /* MJRefresh.debug.xcconfig */;
buildSettings = {
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
CURRENT_PROJECT_VERSION = 1;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
GCC_PREFIX_HEADER = "Target Support Files/MJRefresh/MJRefresh-prefix.pch";
INFOPLIST_FILE = "Target Support Files/MJRefresh/MJRefresh-Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MODULEMAP_FILE = "Target Support Files/MJRefresh/MJRefresh.modulemap";
PRODUCT_MODULE_NAME = MJRefresh;
PRODUCT_NAME = MJRefresh;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
TARGETED_DEVICE_FAMILY = "1,2";
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Debug;
};
2053F9A2C6961D90FAC8D2B75EF76FD9 /* Beta */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 61C70E3B53EDAABF24185D8FB67B6DE1 /* DKNightVersion.release.xcconfig */;
buildSettings = {
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
CURRENT_PROJECT_VERSION = 1;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
GCC_PREFIX_HEADER = "Target Support Files/DKNightVersion/DKNightVersion-prefix.pch";
INFOPLIST_FILE = "Target Support Files/DKNightVersion/DKNightVersion-Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MODULEMAP_FILE = "Target Support Files/DKNightVersion/DKNightVersion.modulemap";
PRODUCT_MODULE_NAME = DKNightVersion;
PRODUCT_NAME = DKNightVersion;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Beta;
};
2CDD932AAD50570236B035C8C443BF7F /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 61C70E3B53EDAABF24185D8FB67B6DE1 /* DKNightVersion.release.xcconfig */;
buildSettings = {
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
CURRENT_PROJECT_VERSION = 1;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
GCC_PREFIX_HEADER = "Target Support Files/DKNightVersion/DKNightVersion-prefix.pch";
INFOPLIST_FILE = "Target Support Files/DKNightVersion/DKNightVersion-Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MODULEMAP_FILE = "Target Support Files/DKNightVersion/DKNightVersion.modulemap";
PRODUCT_MODULE_NAME = DKNightVersion;
PRODUCT_NAME = DKNightVersion;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Release;
};
36AE9D0B0292E777840B234AB6991688 /* Beta */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = A7DE1FAA4D6A2756E5D201D3B8470344 /* lottie-ios.release.xcconfig */;
buildSettings = {
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
CURRENT_PROJECT_VERSION = 1;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
GCC_PREFIX_HEADER = "Target Support Files/lottie-ios/lottie-ios-prefix.pch";
INFOPLIST_FILE = "Target Support Files/lottie-ios/lottie-ios-Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MODULEMAP_FILE = "Target Support Files/lottie-ios/lottie-ios.modulemap";
PRODUCT_MODULE_NAME = Lottie;
PRODUCT_NAME = Lottie;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Beta;
};
49DA6326327A7F4567066DB8F0948974 /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 2A14C5151D1F6A23C85C83AFDEFD8E27 /* lottie-ios.debug.xcconfig */;
buildSettings = {
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
CURRENT_PROJECT_VERSION = 1;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
GCC_PREFIX_HEADER = "Target Support Files/lottie-ios/lottie-ios-prefix.pch";
INFOPLIST_FILE = "Target Support Files/lottie-ios/lottie-ios-Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MODULEMAP_FILE = "Target Support Files/lottie-ios/lottie-ios.modulemap";
PRODUCT_MODULE_NAME = Lottie;
PRODUCT_NAME = Lottie;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
TARGETED_DEVICE_FAMILY = "1,2";
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Debug;
};
4AAF63573D1D3DC75F3A593EA87972B1 /* Beta */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 1D6F46AA0B22BCF108BE8206EC8A8996 /* Pods-DreamSleep.beta.xcconfig */;
buildSettings = {
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
CLANG_ENABLE_OBJC_WEAK = NO;
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
CURRENT_PROJECT_VERSION = 1;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
INFOPLIST_FILE = "Target Support Files/Pods-DreamSleep/Pods-DreamSleep-Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MACH_O_TYPE = staticlib;
MODULEMAP_FILE = "Target Support Files/Pods-DreamSleep/Pods-DreamSleep.modulemap";
OTHER_LDFLAGS = "";
OTHER_LIBTOOLFLAGS = "";
PODS_ROOT = "$(SRCROOT)";
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Beta;
};
56025D14281543F856A9DB7D2EAFE341 /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = DC39EB1CB23093A7E5B528C76E5C878F /* DOUAudioStreamer.release.xcconfig */;
buildSettings = {
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
CURRENT_PROJECT_VERSION = 1;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"$(SDKROOT)/System/iOSSupport/System/Library/Frameworks",
);
GCC_PREFIX_HEADER = "Target Support Files/DOUAudioStreamer/DOUAudioStreamer-prefix.pch";
INFOPLIST_FILE = "Target Support Files/DOUAudioStreamer/DOUAudioStreamer-Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MODULEMAP_FILE = "Target Support Files/DOUAudioStreamer/DOUAudioStreamer.modulemap";
PRODUCT_MODULE_NAME = DOUAudioStreamer;
PRODUCT_NAME = DOUAudioStreamer;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Release;
};
56BC63C3B30F4EEFD492C3A7C1CF7C70 /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 32294663F55781BA085499654683917D /* AFNetworking.debug.xcconfig */;
buildSettings = {
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
CURRENT_PROJECT_VERSION = 1;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
GCC_PREFIX_HEADER = "Target Support Files/AFNetworking/AFNetworking-prefix.pch";
INFOPLIST_FILE = "Target Support Files/AFNetworking/AFNetworking-Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MODULEMAP_FILE = "Target Support Files/AFNetworking/AFNetworking.modulemap";
PRODUCT_MODULE_NAME = AFNetworking;
PRODUCT_NAME = AFNetworking;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
TARGETED_DEVICE_FAMILY = "1,2";
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Debug;
};
58A4CD3909446F7F5E4F2F009F44ACA3 /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 78990F6F1F6EAB4C80C33CAA4DCF76DA /* DKNightVersion.debug.xcconfig */;
buildSettings = {
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
CURRENT_PROJECT_VERSION = 1;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
GCC_PREFIX_HEADER = "Target Support Files/DKNightVersion/DKNightVersion-prefix.pch";
INFOPLIST_FILE = "Target Support Files/DKNightVersion/DKNightVersion-Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MODULEMAP_FILE = "Target Support Files/DKNightVersion/DKNightVersion.modulemap";
PRODUCT_MODULE_NAME = DKNightVersion;
PRODUCT_NAME = DKNightVersion;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
TARGETED_DEVICE_FAMILY = "1,2";
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Debug;
};
5BE778136AB76A6B93919345EC6629E3 /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = B6E04B47E61D8F8F434E24ABE164E64B /* Pods-DreamSleep.release.xcconfig */;
buildSettings = {
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
CLANG_ENABLE_OBJC_WEAK = NO;
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
CURRENT_PROJECT_VERSION = 1;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
INFOPLIST_FILE = "Target Support Files/Pods-DreamSleep/Pods-DreamSleep-Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MACH_O_TYPE = staticlib;
MODULEMAP_FILE = "Target Support Files/Pods-DreamSleep/Pods-DreamSleep.modulemap";
OTHER_LDFLAGS = "";
OTHER_LIBTOOLFLAGS = "";
PODS_ROOT = "$(SRCROOT)";
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Release;
};
5DC22DA1865D0203936326807047AB4C /* Beta */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = AFC95C6EDCE75B0B5138C60E594642E0 /* MJRefresh.release.xcconfig */;
buildSettings = {
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
CURRENT_PROJECT_VERSION = 1;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
GCC_PREFIX_HEADER = "Target Support Files/MJRefresh/MJRefresh-prefix.pch";
INFOPLIST_FILE = "Target Support Files/MJRefresh/MJRefresh-Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MODULEMAP_FILE = "Target Support Files/MJRefresh/MJRefresh.modulemap";
PRODUCT_MODULE_NAME = MJRefresh;
PRODUCT_NAME = MJRefresh;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Beta;
};
6EFFE6945749E035D87604C13D966EBC /* Beta */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = DC39EB1CB23093A7E5B528C76E5C878F /* DOUAudioStreamer.release.xcconfig */;
buildSettings = {
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
CURRENT_PROJECT_VERSION = 1;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"$(SDKROOT)/System/iOSSupport/System/Library/Frameworks",
);
GCC_PREFIX_HEADER = "Target Support Files/DOUAudioStreamer/DOUAudioStreamer-prefix.pch";
INFOPLIST_FILE = "Target Support Files/DOUAudioStreamer/DOUAudioStreamer-Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MODULEMAP_FILE = "Target Support Files/DOUAudioStreamer/DOUAudioStreamer.modulemap";
PRODUCT_MODULE_NAME = DOUAudioStreamer;
PRODUCT_NAME = DOUAudioStreamer;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Beta;
};
75F6AB53BD7DBE881729C74DB4F976A4 /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = A7DE1FAA4D6A2756E5D201D3B8470344 /* lottie-ios.release.xcconfig */;
buildSettings = {
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
CURRENT_PROJECT_VERSION = 1;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
GCC_PREFIX_HEADER = "Target Support Files/lottie-ios/lottie-ios-prefix.pch";
INFOPLIST_FILE = "Target Support Files/lottie-ios/lottie-ios-Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MODULEMAP_FILE = "Target Support Files/lottie-ios/lottie-ios.modulemap";
PRODUCT_MODULE_NAME = Lottie;
PRODUCT_NAME = Lottie;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Release;
};
7C7EB8C5AD0F0B5F50399A582AB99CD0 /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 68F034394A9197A08BC51EB02D9F343A /* Pods-DreamSleep.debug.xcconfig */;
buildSettings = {
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
CLANG_ENABLE_OBJC_WEAK = NO;
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
CURRENT_PROJECT_VERSION = 1;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
INFOPLIST_FILE = "Target Support Files/Pods-DreamSleep/Pods-DreamSleep-Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MACH_O_TYPE = staticlib;
MODULEMAP_FILE = "Target Support Files/Pods-DreamSleep/Pods-DreamSleep.modulemap";
OTHER_LDFLAGS = "";
OTHER_LIBTOOLFLAGS = "";
PODS_ROOT = "$(SRCROOT)";
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
TARGETED_DEVICE_FAMILY = "1,2";
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Debug;
};
887691A6BA28894565425AE29D929982 /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 52FE7CE8C302AF38C8C4B6F9DB342E24 /* YTKNetwork.release.xcconfig */;
buildSettings = {
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
CURRENT_PROJECT_VERSION = 1;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
GCC_PREFIX_HEADER = "Target Support Files/YTKNetwork/YTKNetwork-prefix.pch";
INFOPLIST_FILE = "Target Support Files/YTKNetwork/YTKNetwork-Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MODULEMAP_FILE = "Target Support Files/YTKNetwork/YTKNetwork.modulemap";
PRODUCT_MODULE_NAME = YTKNetwork;
PRODUCT_NAME = YTKNetwork;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Release;
};
8BBE693C9855750E7017FB1F2C4CAD6E /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = C41877007B1BC75E0519753081886F86 /* AFNetworking.release.xcconfig */;
buildSettings = {
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
CURRENT_PROJECT_VERSION = 1;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
GCC_PREFIX_HEADER = "Target Support Files/AFNetworking/AFNetworking-prefix.pch";
INFOPLIST_FILE = "Target Support Files/AFNetworking/AFNetworking-Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MODULEMAP_FILE = "Target Support Files/AFNetworking/AFNetworking.modulemap";
PRODUCT_MODULE_NAME = AFNetworking;
PRODUCT_NAME = AFNetworking;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Release;
};
903A0004D3E6651EFD5D2E16214D101B /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
CLANG_ANALYZER_NONNULL = YES;
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_ENABLE_OBJC_WEAK = YES;
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_COMMA = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
CLANG_WARN_STRICT_PROTOTYPES = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
GCC_C_LANGUAGE_STANDARD = gnu11;
GCC_NO_COMMON_BLOCKS = YES;
GCC_PREPROCESSOR_DEFINITIONS = (
"POD_CONFIGURATION_RELEASE=1",
"$(inherited)",
);
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
MTL_ENABLE_DEBUG_INFO = NO;
MTL_FAST_MATH = YES;
PRODUCT_NAME = "$(TARGET_NAME)";
STRIP_INSTALLED_PRODUCT = NO;
SWIFT_COMPILATION_MODE = wholemodule;
SWIFT_OPTIMIZATION_LEVEL = "-O";
SWIFT_VERSION = 5.0;
SYMROOT = "${SRCROOT}/../build";
};
name = Release;
};
AA36389C9FAC776FD19566EEB8FC0A1F /* Beta */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 52FE7CE8C302AF38C8C4B6F9DB342E24 /* YTKNetwork.release.xcconfig */;
buildSettings = {
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
CURRENT_PROJECT_VERSION = 1;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
GCC_PREFIX_HEADER = "Target Support Files/YTKNetwork/YTKNetwork-prefix.pch";
INFOPLIST_FILE = "Target Support Files/YTKNetwork/YTKNetwork-Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MODULEMAP_FILE = "Target Support Files/YTKNetwork/YTKNetwork.modulemap";
PRODUCT_MODULE_NAME = YTKNetwork;
PRODUCT_NAME = YTKNetwork;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Beta;
};
B4EFE046ACF8F37157F6E322C7FCFC28 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
CLANG_ANALYZER_NONNULL = YES;
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_ENABLE_OBJC_WEAK = YES;
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_COMMA = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
CLANG_WARN_STRICT_PROTOTYPES = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = dwarf;
ENABLE_STRICT_OBJC_MSGSEND = YES;
ENABLE_TESTABILITY = YES;
GCC_C_LANGUAGE_STANDARD = gnu11;
GCC_DYNAMIC_NO_PIC = NO;
GCC_NO_COMMON_BLOCKS = YES;
GCC_OPTIMIZATION_LEVEL = 0;
GCC_PREPROCESSOR_DEFINITIONS = (
"POD_CONFIGURATION_DEBUG=1",
"DEBUG=1",
"$(inherited)",
);
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
MTL_FAST_MATH = YES;
ONLY_ACTIVE_ARCH = YES;
PRODUCT_NAME = "$(TARGET_NAME)";
STRIP_INSTALLED_PRODUCT = NO;
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
SWIFT_VERSION = 5.0;
SYMROOT = "${SRCROOT}/../build";
};
name = Debug;
};
D8F9486A9F474252B66F1A6645DE4EE8 /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = AFC95C6EDCE75B0B5138C60E594642E0 /* MJRefresh.release.xcconfig */;
buildSettings = {
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
CURRENT_PROJECT_VERSION = 1;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
GCC_PREFIX_HEADER = "Target Support Files/MJRefresh/MJRefresh-prefix.pch";
INFOPLIST_FILE = "Target Support Files/MJRefresh/MJRefresh-Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MODULEMAP_FILE = "Target Support Files/MJRefresh/MJRefresh.modulemap";
PRODUCT_MODULE_NAME = MJRefresh;
PRODUCT_NAME = MJRefresh;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Release;
};
DA453A51A500223D4938AFAC46CAEC12 /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 7393E94FC0BC7BEAD5E135CF4E0EA5FF /* YTKNetwork.debug.xcconfig */;
buildSettings = {
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
CURRENT_PROJECT_VERSION = 1;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
GCC_PREFIX_HEADER = "Target Support Files/YTKNetwork/YTKNetwork-prefix.pch";
INFOPLIST_FILE = "Target Support Files/YTKNetwork/YTKNetwork-Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MODULEMAP_FILE = "Target Support Files/YTKNetwork/YTKNetwork.modulemap";
PRODUCT_MODULE_NAME = YTKNetwork;
PRODUCT_NAME = YTKNetwork;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
TARGETED_DEVICE_FAMILY = "1,2";
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Debug;
};
DAD78A6F185DB8FBE4149BD23E535DA4 /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 0F31368E972AEC0CA565CABBA49F2D81 /* Masonry.release.xcconfig */;
buildSettings = {
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
CURRENT_PROJECT_VERSION = 1;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
GCC_PREFIX_HEADER = "Target Support Files/Masonry/Masonry-prefix.pch";
INFOPLIST_FILE = "Target Support Files/Masonry/Masonry-Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MODULEMAP_FILE = "Target Support Files/Masonry/Masonry.modulemap";
PRODUCT_MODULE_NAME = Masonry;
PRODUCT_NAME = Masonry;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Release;
};
E5DA867B76DE12DA9FCAF6C29E0B8CC1 /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 8A5AC121203D5FCC6E8F97B028818019 /* DOUAudioStreamer.debug.xcconfig */;
buildSettings = {
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
CURRENT_PROJECT_VERSION = 1;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"$(SDKROOT)/System/iOSSupport/System/Library/Frameworks",
);
GCC_PREFIX_HEADER = "Target Support Files/DOUAudioStreamer/DOUAudioStreamer-prefix.pch";
INFOPLIST_FILE = "Target Support Files/DOUAudioStreamer/DOUAudioStreamer-Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MODULEMAP_FILE = "Target Support Files/DOUAudioStreamer/DOUAudioStreamer.modulemap";
PRODUCT_MODULE_NAME = DOUAudioStreamer;
PRODUCT_NAME = DOUAudioStreamer;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
TARGETED_DEVICE_FAMILY = "1,2";
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Debug;
};
EEEA7C7C8597DB5726BB1BE5A63368BF /* Beta */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
CLANG_ANALYZER_NONNULL = YES;
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_ENABLE_OBJC_WEAK = YES;
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_COMMA = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
CLANG_WARN_STRICT_PROTOTYPES = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
GCC_C_LANGUAGE_STANDARD = gnu11;
GCC_NO_COMMON_BLOCKS = YES;
GCC_PREPROCESSOR_DEFINITIONS = (
"POD_CONFIGURATION_BETA=1",
"$(inherited)",
);
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
MTL_ENABLE_DEBUG_INFO = NO;
MTL_FAST_MATH = YES;
PRODUCT_NAME = "$(TARGET_NAME)";
STRIP_INSTALLED_PRODUCT = NO;
SWIFT_COMPILATION_MODE = wholemodule;
SWIFT_OPTIMIZATION_LEVEL = "-O";
SWIFT_VERSION = 5.0;
SYMROOT = "${SRCROOT}/../build";
};
name = Beta;
};
F9A5F8DFEF13757422BAD8E04310DD39 /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 31E0377CF0710DF72C9982DC25B43B54 /* Masonry.debug.xcconfig */;
buildSettings = {
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
CURRENT_PROJECT_VERSION = 1;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
GCC_PREFIX_HEADER = "Target Support Files/Masonry/Masonry-prefix.pch";
INFOPLIST_FILE = "Target Support Files/Masonry/Masonry-Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MODULEMAP_FILE = "Target Support Files/Masonry/Masonry.modulemap";
PRODUCT_MODULE_NAME = Masonry;
PRODUCT_NAME = Masonry;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
TARGETED_DEVICE_FAMILY = "1,2";
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Debug;
};
/* End XCBuildConfiguration section */
/* Begin XCConfigurationList section */
03A52F8575EE766AB10F5BD7A405D01E /* Build configuration list for PBXNativeTarget "AFNetworking" */ = {
isa = XCConfigurationList;
buildConfigurations = (
07A26A8DC3FA2257B9781EEA5425ADA1 /* Beta */,
56BC63C3B30F4EEFD492C3A7C1CF7C70 /* Debug */,
8BBE693C9855750E7017FB1F2C4CAD6E /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
1A436D3C41D09CA6D73D74A294EAAADD /* Build configuration list for PBXNativeTarget "lottie-ios" */ = {
isa = XCConfigurationList;
buildConfigurations = (
36AE9D0B0292E777840B234AB6991688 /* Beta */,
49DA6326327A7F4567066DB8F0948974 /* Debug */,
75F6AB53BD7DBE881729C74DB4F976A4 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
232D8F687EACBD3F424690414D317F5E /* Build configuration list for PBXNativeTarget "Pods-DreamSleep" */ = {
isa = XCConfigurationList;
buildConfigurations = (
4AAF63573D1D3DC75F3A593EA87972B1 /* Beta */,
7C7EB8C5AD0F0B5F50399A582AB99CD0 /* Debug */,
5BE778136AB76A6B93919345EC6629E3 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
2DB2FE71F92A4525693E4DFD16041F80 /* Build configuration list for PBXNativeTarget "YTKNetwork" */ = {
isa = XCConfigurationList;
buildConfigurations = (
AA36389C9FAC776FD19566EEB8FC0A1F /* Beta */,
DA453A51A500223D4938AFAC46CAEC12 /* Debug */,
887691A6BA28894565425AE29D929982 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
42DD51745B34D157B4BB0F61303D4EA6 /* Build configuration list for PBXNativeTarget "DOUAudioStreamer" */ = {
isa = XCConfigurationList;
buildConfigurations = (
6EFFE6945749E035D87604C13D966EBC /* Beta */,
E5DA867B76DE12DA9FCAF6C29E0B8CC1 /* Debug */,
56025D14281543F856A9DB7D2EAFE341 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = {
isa = XCConfigurationList;
buildConfigurations = (
EEEA7C7C8597DB5726BB1BE5A63368BF /* Beta */,
B4EFE046ACF8F37157F6E322C7FCFC28 /* Debug */,
903A0004D3E6651EFD5D2E16214D101B /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
B1B2DE070F2F39966D1B1B4786614B0E /* Build configuration list for PBXNativeTarget "DKNightVersion" */ = {
isa = XCConfigurationList;
buildConfigurations = (
2053F9A2C6961D90FAC8D2B75EF76FD9 /* Beta */,
58A4CD3909446F7F5E4F2F009F44ACA3 /* Debug */,
2CDD932AAD50570236B035C8C443BF7F /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
CD3CFB22A23EFEE9A2E4BC822B58C430 /* Build configuration list for PBXNativeTarget "Masonry" */ = {
isa = XCConfigurationList;
buildConfigurations = (
11989BF8664E3CA07999B33444CB1A3C /* Beta */,
F9A5F8DFEF13757422BAD8E04310DD39 /* Debug */,
DAD78A6F185DB8FBE4149BD23E535DA4 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
F69E54AEEB7F4E48354E8F38C443B4DC /* Build configuration list for PBXNativeTarget "MJRefresh" */ = {
isa = XCConfigurationList;
buildConfigurations = (
5DC22DA1865D0203936326807047AB4C /* Beta */,
1EFF801D4E3A7625AB3CA92EC888F860 /* Debug */,
D8F9486A9F474252B66F1A6645DE4EE8 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
};
rootObject = BFDFE7DC352907FC980B868725387E98 /* Project object */;
}