project.pbxproj
257.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
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 55;
objects = {
/* Begin PBXBuildFile section */
02D5000445A4FBEBCD27BE7A48F0829C /* YTKNetworkConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 7122DC1E5162A0203C2706F4A3A040CD /* YTKNetworkConfig.h */; settings = {ATTRIBUTES = (Public, ); }; };
03AF2A93F5B7519A33E3A4677CDE4F80 /* LOTShapeGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = B44B47AEEE32236079943734BB90FE84 /* LOTShapeGroup.m */; };
04037A19BB275F2FB4DC9F3C666C35CC /* LOTAnimationView.h in Headers */ = {isa = PBXBuildFile; fileRef = E846C7317C0B83A5BDA3F4E9CF601EE0 /* LOTAnimationView.h */; settings = {ATTRIBUTES = (Public, ); }; };
046E83953D783D49245523D90B98CA6E /* LOTValueDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = FE0227CD25AB8454730CA28A603804DB /* LOTValueDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; };
04E242ED3B8C861226107AB8E68E737D /* DKDeallocBlockExecutor.m in Sources */ = {isa = PBXBuildFile; fileRef = 8EED1BDED6513C44791E99A442AF3643 /* DKDeallocBlockExecutor.m */; };
0657D4DC83217DC0615F294A221A4F65 /* UICollectionViewLayout+MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = 212F30C2E5C57C426C1E18DC50E63BF6 /* UICollectionViewLayout+MJRefresh.h */; settings = {ATTRIBUTES = (Public, ); }; };
0803D9CF7CD8FC91FDDC39FA623C6B7F /* YTKRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = A58ECDE40DC139D8CC7C8C5ED217B7F1 /* YTKRequest.h */; settings = {ATTRIBUTES = (Public, ); }; };
081DA827362980D6F4A4602BEF0EF22F /* LOTCircleAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FF62ADD021803DFB665E5269954E541 /* LOTCircleAnimator.h */; settings = {ATTRIBUTES = (Project, ); }; };
0896BA0FC3113D8D3567543842AD4577 /* LOTNumberInterpolator.m in Sources */ = {isa = PBXBuildFile; fileRef = B2A82D85E708C60B2CFC885E577B16FB /* LOTNumberInterpolator.m */; };
098015716DECD51327A865F29D796FDC /* LOTCacheProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B1717540EBCE063707D442CB3F23B72 /* LOTCacheProvider.h */; settings = {ATTRIBUTES = (Public, ); }; };
0A6CEE3ED9385F8B66335312779F815A /* LOTTransformInterpolator.m in Sources */ = {isa = PBXBuildFile; fileRef = 78B6013B9756331B3B476CD7C24E6602 /* LOTTransformInterpolator.m */; };
0ABF5D1A2685BE8F02A0487420CDE8AD /* AFNetworkReachabilityManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 706B236F116AADE05F19B126DD74EDC5 /* AFNetworkReachabilityManager.m */; };
0C2B982E13439C810B851631AB967B0F /* UICollectionViewLayout+MJRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CF45FFE9513C3706D5EEE9F23D8F87C /* UICollectionViewLayout+MJRefresh.m */; };
0DFEE1F5C97FB5B6D46D36F2E42C1FF4 /* LOTBlockCallback.m in Sources */ = {isa = PBXBuildFile; fileRef = DC226C38ACB79B34317949C4541E8514 /* LOTBlockCallback.m */; };
0EC6337259A69E07948F88DB414C525D /* LOTBlockCallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C91CB4CDDC840A33AB641A7434DAC57 /* LOTBlockCallback.h */; settings = {ATTRIBUTES = (Public, ); }; };
0F72ED315E833DCB3097A6318C84AE90 /* LOTPlatformCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = BF4B64BC498A599A0A8D4066BC0E9720 /* LOTPlatformCompat.h */; settings = {ATTRIBUTES = (Project, ); }; };
11A5B17DB2BD565785D41F676BC53454 /* LOTPolystarAnimator.m in Sources */ = {isa = PBXBuildFile; fileRef = F2883B7CEAFE6B347A068DCF15AE1E7A /* LOTPolystarAnimator.m */; };
12F5065A2306C56B4D600B72844D4969 /* UITextView+Keyboard.m in Sources */ = {isa = PBXBuildFile; fileRef = 098BF26AA1C8611E249012211AADB555 /* UITextView+Keyboard.m */; };
12F64A9D7E5673CECA569A1462B3D1AF /* LOTAnimationView_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = F4BCB82AF3CFD91A2FB239C7C4F3DC15 /* LOTAnimationView_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; };
1362879B6EBBDB660FA95A0BCBD83ADB /* YTKNetworkAgent.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B142E7485DDDE1246EE3B240B90F8EB /* YTKNetworkAgent.h */; settings = {ATTRIBUTES = (Public, ); }; };
13ACF311E6BE1C4DEEBBACC7A10D92D0 /* NSLayoutConstraint+MASDebugAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B95573967C4CA86B45B589A3C932A17 /* NSLayoutConstraint+MASDebugAdditions.m */; };
145162F0673671280564A7568B9CE946 /* YTKNetworkConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 65939C65BE38659EAB3AFA606FC69B16 /* YTKNetworkConfig.m */; };
156EEB480244352EA696B9ACFBC630B4 /* LOTSizeInterpolator.m in Sources */ = {isa = PBXBuildFile; fileRef = 0290D57291FEA3C6F2476E73AC520557 /* LOTSizeInterpolator.m */; };
16108DB654C0BF02C69DA959F0B836F2 /* AFCompatibilityMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 85AABC317BAB20D0C4892DB350158B85 /* AFCompatibilityMacros.h */; settings = {ATTRIBUTES = (Public, ); }; };
161F1F9CD2FA15625ADE4A50A248B8B6 /* LOTPathAnimator.m in Sources */ = {isa = PBXBuildFile; fileRef = F35F28AF8953BE90FC5D123ED55C5A67 /* LOTPathAnimator.m */; };
176ED908B871ED3C4D2039623BC65D26 /* LOTAnimatedSwitch.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D03CCAA3C10669FA9B7D47458B0F216 /* LOTAnimatedSwitch.m */; };
17E421C98723F6517F7C7A6F053E5446 /* View+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 68573A63DD39B62FE238553BABDA8404 /* View+MASAdditions.m */; };
183C62707FDA16E5CA6C6298499C9572 /* UIButton+Night.m in Sources */ = {isa = PBXBuildFile; fileRef = 94120A594145ADBF2C9B8808FAC69F94 /* UIButton+Night.m */; };
1910E085B7C6F606F71FFDB94F00E795 /* YTKNetworkPrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 0668CF24224E2676D68E8744C4CE3FEA /* YTKNetworkPrivate.h */; settings = {ATTRIBUTES = (Private, ); }; };
1A13EBFF81CCAFA921CB77FCDB0B5D71 /* UIImageView+Night.m in Sources */ = {isa = PBXBuildFile; fileRef = BF583951CB2C82DC0856CB1082B7D1BD /* UIImageView+Night.m */; };
1C6FFFDA05385B09348226E01791CCD2 /* MJRefreshHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 514420A76EB3160AF5A0C38481A2B32B /* MJRefreshHeader.h */; settings = {ATTRIBUTES = (Public, ); }; };
1C8712FFF45A50B4019C3F8633CB0F4B /* NSLayoutConstraint+MASDebugAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 413A82ABF0C0C76A19EF04FED62119F5 /* NSLayoutConstraint+MASDebugAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; };
1DBBC7EF53187AE21A076555A67C517F /* UITableView+Night.m in Sources */ = {isa = PBXBuildFile; fileRef = ACE0D286DDC354BF776ACDBE625A6331 /* UITableView+Night.m */; };
1EF6825CB794AB0DE3B9DCF1A883162A /* UITabBar+Night.m in Sources */ = {isa = PBXBuildFile; fileRef = 3FC66C726F9D1A05CB12B40FB2EB45B3 /* UITabBar+Night.m */; };
1F3CF181DF860FD3C9AB3E4A106296B8 /* NSObject+DeallocBlock.m in Sources */ = {isa = PBXBuildFile; fileRef = 6682A146F9E899129E28B1CBD7F757B8 /* NSObject+DeallocBlock.m */; };
1F657AD814056F172645E3C70F2B0797 /* MJRefreshNormalHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = DE3C95D9A1FCFAE2F4267E9C5B288AB1 /* MJRefreshNormalHeader.m */; };
20B9EF1DA6E590860B6DACEDCF95111E /* MJRefresh.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 8380A9D2228B9213EBCBEAD77053FEB7 /* MJRefresh.bundle */; };
21ACF84D3AFC26E51BE6F0DEF5042B3A /* MJRefreshBackFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F2A25C4BB0A9B0F296F8DACEB31C15A /* MJRefreshBackFooter.h */; settings = {ATTRIBUTES = (Public, ); }; };
238963A1E7B6B29A395CA308C36FB5C3 /* UIColor+Expanded.m in Sources */ = {isa = PBXBuildFile; fileRef = 63989A571BEB18EA0AD4EB887056803B /* UIColor+Expanded.m */; };
24AFF1E1B0760CFD12FFD5A730D6E2E5 /* MJRefreshGifHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 60F87E7BFAC07776CC05B07E19CEDB79 /* MJRefreshGifHeader.m */; };
252FCAFF639706AFE57EF160D2AFFFB9 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 082CFDE879B2B4298D74A195301CB6EE /* Foundation.framework */; };
2543E404B46E3716BA6E62AF20DFE114 /* AFURLRequestSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = C43168ABA4FB354B96A644EACB12EE4C /* AFURLRequestSerialization.m */; };
265CB258B6BA973B771249F03957A3F6 /* YTKBaseRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 778E15F896CC84E97F9EC5DEA5260CB6 /* YTKBaseRequest.h */; settings = {ATTRIBUTES = (Public, ); }; };
27410EFA008CAD1451B1B058525A820B /* LOTFillRenderer.m in Sources */ = {isa = PBXBuildFile; fileRef = 136C11089E95D1A18704D2A3A3EABB12 /* LOTFillRenderer.m */; };
27953A9F2EF5E713748584C88A6FA090 /* MJRefresh-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 59E9F8723D6843A6912D76B9E5CA97D6 /* MJRefresh-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
2798FFC504412F619D3BE6E1741C6C06 /* DKColorTable.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C1E25B193D8B32AF756EE90A20A912B /* DKColorTable.m */; };
27CD430AE569BCE091D5DCC5B8356954 /* LOTAssetGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = D87402865D007EB0EEFFD41DC3B06EDB /* LOTAssetGroup.h */; settings = {ATTRIBUTES = (Project, ); }; };
293C28D9A9124A73229E21D31C8AE4D2 /* YTKNetworkPrivate.m in Sources */ = {isa = PBXBuildFile; fileRef = 4EEE47F47E6D04E29FBE7E09D4A1CCDC /* YTKNetworkPrivate.m */; };
29F203B6D1183F234FDD19D2D1C34711 /* LOTValueInterpolator.m in Sources */ = {isa = PBXBuildFile; fileRef = 774BD8258EDF17185BE74E946ECB82C8 /* LOTValueInterpolator.m */; };
2A255178887519C19685DFA3A3F128B1 /* Pods-DreamSleep-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A48C755DC564041D0BF299E3121FDC9 /* Pods-DreamSleep-dummy.m */; };
2C2A591675380BD59160A70596E37405 /* DKColorTable.txt in Resources */ = {isa = PBXBuildFile; fileRef = 434E0C8B0AE9DA8CCC89E971F43EDC7E /* DKColorTable.txt */; };
2C98045755C0E2AF3CA66E61CDC28C30 /* UIScrollView+MJRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = 92E65603E9B9A0C3EE1B358F5B0C3112 /* UIScrollView+MJRefresh.m */; };
2F8B76B9E868DB260C4F045E232A71F0 /* LOTKeyframe.h in Headers */ = {isa = PBXBuildFile; fileRef = 15E5F6E4398A87E1A0FD377FF75E144A /* LOTKeyframe.h */; settings = {ATTRIBUTES = (Project, ); }; };
2FADF1885E1D1AEAA0CEFF7B75D856F5 /* YTKRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = CB64EEA87DAD2385F437B94B80CA3120 /* YTKRequest.m */; };
31A97D95846A95A3CDCD89D2E10D537A /* UILabel+Night.h in Headers */ = {isa = PBXBuildFile; fileRef = 814071E69C4B113B6DFED00713B3137F /* UILabel+Night.h */; settings = {ATTRIBUTES = (Public, ); }; };
31C1A39801DB6AA0A99FFB9D378D3BF5 /* MJRefreshBackStateFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 021D42115E05AF0933E54345CE3805C9 /* MJRefreshBackStateFooter.m */; };
3302B437FB0319DB6A707F6EB2489433 /* CALayer+Compat.h in Headers */ = {isa = PBXBuildFile; fileRef = AF562FF67ADA7CBB265000C8BC055B11 /* CALayer+Compat.h */; settings = {ATTRIBUTES = (Project, ); }; };
343E42E9E5DC25FF8557F7DBA95ACE00 /* LOTShapeGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = 928B367255E2A8B5583A35B28C3A600D /* LOTShapeGroup.h */; settings = {ATTRIBUTES = (Project, ); }; };
34D4434E77392B76C10D2C74A80BC2AE /* LOTRepeaterRenderer.m in Sources */ = {isa = PBXBuildFile; fileRef = 8BE1170959B2A00FA997450E40C2B29B /* LOTRepeaterRenderer.m */; };
34E0F61A11E3FBA7083F9A22AE9154DE /* UIColor.h in Headers */ = {isa = PBXBuildFile; fileRef = B3203EDC0FAFF60C23194D7C08095C71 /* UIColor.h */; settings = {ATTRIBUTES = (Project, ); }; };
35EF7B36FB65F624A266CFB28F938071 /* DKNightVersionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DF162EF229F5A8C80C0072CB2D17A4A /* DKNightVersionManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
36279D60EF04C1CE153B7EFD202E59FA /* LOTShapeRectangle.h in Headers */ = {isa = PBXBuildFile; fileRef = 5861B83E5F354A3BC5E6428BE4FF7337 /* LOTShapeRectangle.h */; settings = {ATTRIBUTES = (Project, ); }; };
36670AD1898E899C385935E9C29DB90E /* MJRefreshNormalTrailer.m in Sources */ = {isa = PBXBuildFile; fileRef = ED91BEA3649EDCD4C33829AA48FA308D /* MJRefreshNormalTrailer.m */; };
36D25059495F758FA107CE6584B0CDCA /* LOTBezierPath.h in Headers */ = {isa = PBXBuildFile; fileRef = 89FE2622656DF7063F1EC7EA4A16BBE6 /* LOTBezierPath.h */; settings = {ATTRIBUTES = (Project, ); }; };
385A27F1875FC2533785843DB6EF4E9C /* LOTPointInterpolator.m in Sources */ = {isa = PBXBuildFile; fileRef = B5383896378A8C9BA4B5597E6CEA9D57 /* LOTPointInterpolator.m */; };
39A102466A4B1537232C487A7448621E /* AFURLSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 04D1CA6DA5CB01F110265017EF15816E /* AFURLSessionManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
3AC156F7E92F061DC5FFD52630229DF0 /* UINavigationBar+Night.m in Sources */ = {isa = PBXBuildFile; fileRef = 69997A0548E05FFD48AA25A43B7BF208 /* UINavigationBar+Night.m */; };
3C6F1F26278EC9DF6F6A883DC3734320 /* LOTAnimationCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 112C7BF62481C21E9EDD605579236209 /* LOTAnimationCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
3F0A04DF5A70AF3DA6408108F7E49931 /* MASConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 35ABA512D22A2B1FDA2B7FB6AF080DFC /* MASConstraint.m */; };
3F0EAFEB354CBFFC295324A619F9834E /* LOTShapePath.h in Headers */ = {isa = PBXBuildFile; fileRef = F412BAE744C60A29AACE5449F5FB118D /* LOTShapePath.h */; settings = {ATTRIBUTES = (Project, ); }; };
3FE7716F15677833DB9E94FD84135A17 /* LOTLayer.m in Sources */ = {isa = PBXBuildFile; fileRef = 59F7512C2D436D1CC741CBF9AA66FCFD /* LOTLayer.m */; };
3FEC4F670C6B70803EE21A0C2AC4FAB6 /* LOTPolygonAnimator.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A426F82C42814A6AE724D75CA99938C /* LOTPolygonAnimator.m */; };
41476E6284BFFC9E9351332D777EF0D5 /* LOTRadialGradientLayer.m in Sources */ = {isa = PBXBuildFile; fileRef = D9B889B594EEBB76C8A96C4F8C83808F /* LOTRadialGradientLayer.m */; };
43015BB3E702972D85714D0103C6C3D7 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C5A68F7F052965847D9421FC0E7F8015 /* UIKit.framework */; };
444828D554CB824DD52A3AC117220BE0 /* UISwitch+Night.h in Headers */ = {isa = PBXBuildFile; fileRef = A4A2A63298AC736EF9C67F3FB0D51C60 /* UISwitch+Night.h */; settings = {ATTRIBUTES = (Public, ); }; };
44BA7053E79E7A549399E51E01766BFD /* AFNetworkReachabilityManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FF388B95F860D6E4B16BEAE0D7BCA22F /* AFNetworkReachabilityManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
4629E91715401FE727212EBFC38B94D7 /* LOTCompositionContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 3755996DA506B418D3442283537CC762 /* LOTCompositionContainer.m */; };
46901BF37B6B07B6A4F2078A856E69B8 /* AFURLResponseSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 70C7E4A91D914EA3FECE16CA3D25F7E9 /* AFURLResponseSerialization.h */; settings = {ATTRIBUTES = (Public, ); }; };
46E703E182D6D4FA13DCC8327EAEFD0E /* UISearchBar+Night.m in Sources */ = {isa = PBXBuildFile; fileRef = 811BDB3E8170C9B642FB15CE81D0C389 /* UISearchBar+Night.m */; };
475D94662C1FE687EF23A4757FE1A4A2 /* UIView+Night.m in Sources */ = {isa = PBXBuildFile; fileRef = 4095AE9D9FCDFA960BCC3F9F141E4946 /* UIView+Night.m */; };
4766E55AD2ED7461ADB7092090B13712 /* LOTAnimationTransitionController.m in Sources */ = {isa = PBXBuildFile; fileRef = CE8B0E5243950E07F74531EC009D0B45 /* LOTAnimationTransitionController.m */; };
487B45678CA1B5EF6D5E2AF02869C154 /* AFSecurityPolicy.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D54139D007BCD21592C79C592FDAE13 /* AFSecurityPolicy.h */; settings = {ATTRIBUTES = (Public, ); }; };
4A3984662156041F48EB192AB2FFCBD8 /* UIBezierPath.h in Headers */ = {isa = PBXBuildFile; fileRef = F2A6BFE9B20C767CC87A10A385A64C19 /* UIBezierPath.h */; settings = {ATTRIBUTES = (Project, ); }; };
4B4D62228F246506C48E4E7F4162D5F0 /* LOTHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CA091E5938D62587F8B0B0C32710316 /* LOTHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; };
4D8AB296B342FE19643BEAEFCB302734 /* LOTRepeaterRenderer.h in Headers */ = {isa = PBXBuildFile; fileRef = BFAF7A479ED9328A0F37D77566388E75 /* LOTRepeaterRenderer.h */; settings = {ATTRIBUTES = (Project, ); }; };
4F58331CE72A14DB358A051715D16332 /* CALayer+Night.m in Sources */ = {isa = PBXBuildFile; fileRef = CFA5C6F6E42856BDA69378126D9DB3FE /* CALayer+Night.m */; };
4F629BD1AA5B58116A777B17E501EBA9 /* CoreAnimation+Night.h in Headers */ = {isa = PBXBuildFile; fileRef = 7163D2F5FC7906B94D1069EC69561F9A /* CoreAnimation+Night.h */; settings = {ATTRIBUTES = (Public, ); }; };
4F744D7E7A43E19801C059337D720B6D /* MJRefreshTrailer.m in Sources */ = {isa = PBXBuildFile; fileRef = 07088A83B85F7D7F267667B4F60F0D6E /* MJRefreshTrailer.m */; };
4F7A4D29F567F70EB554AF053D46DBAB /* MASCompositeConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 76F2A58EC94F2019FCB4B163AED83395 /* MASCompositeConstraint.m */; };
500BD4DC3389E361D838055CC22AA526 /* MASConstraintMaker.h in Headers */ = {isa = PBXBuildFile; fileRef = B1F9266AF0ABA7D0F083FC9834DAF805 /* MASConstraintMaker.h */; settings = {ATTRIBUTES = (Public, ); }; };
501A31FF697991A128FF7089EF69F71C /* LOTArrayInterpolator.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EA87D5FFD821E2A3092CDC6CD1D68EB /* LOTArrayInterpolator.h */; settings = {ATTRIBUTES = (Project, ); }; };
50DA3078D5358FB96995A9591F434D9F /* LOTPolygonAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = 1339F8C3B7BCBAA0CA23491FE534D136 /* LOTPolygonAnimator.h */; settings = {ATTRIBUTES = (Project, ); }; };
51EBADC07FB48DAD032EC13144C70023 /* LOTGradientFillRender.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F5CF98A18F27F2BC294DF8EAE8D7114 /* LOTGradientFillRender.m */; };
52F9A41D250B132071D6BC693375FBF3 /* NSValue+Compat.m in Sources */ = {isa = PBXBuildFile; fileRef = 40D938A4E19DD05D98CFE48BAD40FD4F /* NSValue+Compat.m */; };
54C7685F8C3B3C658F0EB16F4FF86CD5 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 082CFDE879B2B4298D74A195301CB6EE /* Foundation.framework */; };
55547A3F48653153E5080A227EBAAB7A /* metamacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A4135FEBF910AA7E46693704794BB18 /* metamacros.h */; settings = {ATTRIBUTES = (Public, ); }; };
5585584E49DBB4F5756DCA62A60023B5 /* View+MASShorthandAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F9F2DC8524D6E571C4C3F659DE9C63D /* View+MASShorthandAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; };
59AA9A4CC65D574D23D309CD1847E01E /* LOTTrimPathNode.h in Headers */ = {isa = PBXBuildFile; fileRef = B4A2B6CD0BD774F904895EB7041CDE5F /* LOTTrimPathNode.h */; settings = {ATTRIBUTES = (Project, ); }; };
5A235F94B1E91313BD34C5C9FAF1EE9D /* LOTAsset.h in Headers */ = {isa = PBXBuildFile; fileRef = F0EC9D9E1DB2B72B3792228CD7357A22 /* LOTAsset.h */; settings = {ATTRIBUTES = (Project, ); }; };
5A7847E142D311F386999B7A0008A9D0 /* CFNetwork.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4AB400958E4B7006BD94A4B4474658D2 /* CFNetwork.framework */; };
5ABFE502B7BF81FF23AF25002CEDB9F9 /* CALayer+Compat.m in Sources */ = {isa = PBXBuildFile; fileRef = B8471205AA3DCEDA14AD33CBE7DB1674 /* CALayer+Compat.m */; };
5B37180BE13A423AE12C3B50890A944B /* MJRefreshBackNormalFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = DF4EF4119418295F8B518F247C0C858D /* MJRefreshBackNormalFooter.h */; settings = {ATTRIBUTES = (Public, ); }; };
5BCD165E3D64C11A9AA2FD9D84D90B6A /* UISearchBar+Keyboard.h in Headers */ = {isa = PBXBuildFile; fileRef = C4F3D5C4D0A64BC1F5F9433F5D41F264 /* UISearchBar+Keyboard.h */; settings = {ATTRIBUTES = (Public, ); }; };
5C2A12CE5AEC662833E00DA9EF76C297 /* UIControl+Night.m in Sources */ = {isa = PBXBuildFile; fileRef = 322FFBA62CB415442F0D0123534572BE /* UIControl+Night.m */; };
5CC1235E51AD06046E1D72EC118108AC /* UIToolbar+Night.h in Headers */ = {isa = PBXBuildFile; fileRef = E7EBE0B8F439E5A64FD564C8099A37BF /* UIToolbar+Night.h */; settings = {ATTRIBUTES = (Public, ); }; };
5D23331D518CE59B37A8C41A2E405DD9 /* LOTValueInterpolator.h in Headers */ = {isa = PBXBuildFile; fileRef = F3EB3539B9375B3D4E74923331249234 /* LOTValueInterpolator.h */; settings = {ATTRIBUTES = (Project, ); }; };
5DE3380D5DDFF3091BA7A24953AF1A22 /* YTKChainRequestAgent.h in Headers */ = {isa = PBXBuildFile; fileRef = E12D81874DE3F4AADC27A8DCCBD0BAAC /* YTKChainRequestAgent.h */; settings = {ATTRIBUTES = (Public, ); }; };
5DE5D0F36BD8B028870D101D23DA2B5D /* LOTAnimationView_Compat.h in Headers */ = {isa = PBXBuildFile; fileRef = CC5BB803108B22B4A5E3465A2F6326DE /* LOTAnimationView_Compat.h */; settings = {ATTRIBUTES = (Public, ); }; };
5F10C24DD0C905B51F550D2BE05DB2BC /* CAShapeLayer+Night.h in Headers */ = {isa = PBXBuildFile; fileRef = A683AFE58658DD38FFF2BC306B542322 /* CAShapeLayer+Night.h */; settings = {ATTRIBUTES = (Public, ); }; };
5F58DF119EC4E911E132D6D7585030BF /* NSArray+MASAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 77DED69D95F694D05F100092E12F69D8 /* NSArray+MASAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; };
5FE2F5EA2B0F22A9469078A26935AC8E /* MJRefreshAutoGifFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = E428F8CCCD87B95CCDC30F75AB773229 /* MJRefreshAutoGifFooter.h */; settings = {ATTRIBUTES = (Public, ); }; };
6082516A9FC3FDF2A8C7DF7F08A4A2CA /* LOTShapeTrimPath.h in Headers */ = {isa = PBXBuildFile; fileRef = 532DA45C34FBFD5D3B2F4C1E00DC890E /* LOTShapeTrimPath.h */; settings = {ATTRIBUTES = (Project, ); }; };
636033C638168572302DB73AC65768F2 /* UITextView+Night.h in Headers */ = {isa = PBXBuildFile; fileRef = 06C5BFC8D5B51026A4A4A6AF33C04915 /* UITextView+Night.h */; settings = {ATTRIBUTES = (Public, ); }; };
63CEBE984A3558F99D2D3E9EB1CE4EAB /* UIBarButtonItem+Night.m in Sources */ = {isa = PBXBuildFile; fileRef = E6BE1831A6FDFF44E0A05B6DE2411029 /* UIBarButtonItem+Night.m */; };
6464DDD84547775F80B9FBF179B10495 /* EXTKeyPathCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = C1EED86E5D5DDE4E77203D72A21D278F /* EXTKeyPathCoding.h */; settings = {ATTRIBUTES = (Public, ); }; };
64CF2C397AEEF4FBC982B6D6C65432F4 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 082CFDE879B2B4298D74A195301CB6EE /* Foundation.framework */; };
65352CD73FACBE20A4CB351B335EE626 /* MJRefreshAutoGifFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 0F973C9AD26A38EF35071D1A2B41ED72 /* MJRefreshAutoGifFooter.m */; };
66191AD5B5040B02A189E866E0EE09B0 /* YTKNetwork.h in Headers */ = {isa = PBXBuildFile; fileRef = 57DB92AF3F4BD600FC075F01F4E5F46F /* YTKNetwork.h */; settings = {ATTRIBUTES = (Public, ); }; };
668F28B2532E789C3A1A246FE6EB7340 /* DKNightVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = E18390D13BE34F5115F9B58C32755120 /* DKNightVersion.h */; settings = {ATTRIBUTES = (Public, ); }; };
6748C9D3146377455E1696C768A75407 /* DKDeallocBlockExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = F191C27DE622F299B8EFD85D95ABCC22 /* DKDeallocBlockExecutor.h */; settings = {ATTRIBUTES = (Public, ); }; };
68F14E6AD19EC7FC15743C1899706E10 /* MASViewAttribute.m in Sources */ = {isa = PBXBuildFile; fileRef = 58404D88700B3D02419817ECC9358686 /* MASViewAttribute.m */; };
69A7DBF18ACD9627D2F4E82EC742F3A7 /* YTKNetworkAgent.m in Sources */ = {isa = PBXBuildFile; fileRef = A38157B01CC1AAD38A17AFF8611FCF76 /* YTKNetworkAgent.m */; };
6A96961D70ADC8DB3C64070583DAB56F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 082CFDE879B2B4298D74A195301CB6EE /* Foundation.framework */; };
6AAFD764B81EB0DAFB9C5E4D6C9ED656 /* AFNetworking-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C25A65E12B6E66FCB8F5A5BE38BD116 /* AFNetworking-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
6B6F5341F78537664CA2A1E89B5C54EA /* NSObject+Night.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F217C54F64BD0BEF70A00D6B6942290 /* NSObject+Night.h */; settings = {ATTRIBUTES = (Public, ); }; };
6DC4DDDCA3622966F7111C828137EB15 /* AFURLSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6FAA583C5413C657BAD2C69B439E761F /* AFURLSessionManager.m */; };
6EACEC963683239305B161A5032B7EF6 /* YTKBaseRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C885C921341A76558059347A240D7A2 /* YTKBaseRequest.m */; };
709905E774B1D76DF0767DFCB3C8E632 /* MASConstraint+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 07E179F48B01E0F83CC1CA8C2F246ACB /* MASConstraint+Private.h */; settings = {ATTRIBUTES = (Public, ); }; };
70F7099A60F3FB948894F3115B037FBF /* MJRefresh-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1BA83D129865BE8B1AF244FFEE65B02C /* MJRefresh-dummy.m */; };
717E4D8FC730D8EA33CAA9D0EA8CD4B8 /* UIScrollView+MJExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DC4838253371635F65F848DBBE7D43C /* UIScrollView+MJExtension.h */; settings = {ATTRIBUTES = (Public, ); }; };
71B8D8EE7E59ECE1B81CF601E9911681 /* YTKChainRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FDF9B2A2446F661EF0E33CA2A80328E /* YTKChainRequest.h */; settings = {ATTRIBUTES = (Public, ); }; };
7281495FCC10D24DD38192DBB2268022 /* LOTRoundedRectAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EA749E281C87CC1E133B3C179943486 /* LOTRoundedRectAnimator.h */; settings = {ATTRIBUTES = (Project, ); }; };
76340B67F76A71FB52C666423EFB885D /* MJRefreshAutoStateFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = A3D519128C737D7B273A5E6131CB7B80 /* MJRefreshAutoStateFooter.m */; };
76A26368B59D75647A3A785508455CE3 /* UITextView+Keyboard.h in Headers */ = {isa = PBXBuildFile; fileRef = D9804E4964AF6BB5E729E85E63CB9403 /* UITextView+Keyboard.h */; settings = {ATTRIBUTES = (Public, ); }; };
774CA3A311BECA6FAA68E945749E8A63 /* MJRefreshBackGifFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A5FED7E560C1E8972402F7C17886408 /* MJRefreshBackGifFooter.h */; settings = {ATTRIBUTES = (Public, ); }; };
777C62B3E32489BE7D74159C7C5BA53B /* LOTLayer.h in Headers */ = {isa = PBXBuildFile; fileRef = A1A57A01BE57889013BBB9BA0DF7C766 /* LOTLayer.h */; settings = {ATTRIBUTES = (Project, ); }; };
782C3DB6B6BDBEC626338B299AA1E5FE /* LOTShapeStroke.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D6DA6F4B61C0AD832A7FD3EF9882B0B /* LOTShapeStroke.h */; settings = {ATTRIBUTES = (Project, ); }; };
7944C7FDA637646E33A9774327D4BBC1 /* CGGeometry+LOTAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 75A90DEF943AB925A19EFEF587A9BEB1 /* CGGeometry+LOTAdditions.m */; };
798E55B10C39A13C3C95E3BE78A4905E /* UITabBar+Night.h in Headers */ = {isa = PBXBuildFile; fileRef = F09661C80611EADD06F2D75E9A453FF9 /* UITabBar+Night.h */; settings = {ATTRIBUTES = (Public, ); }; };
7A90DBDC2560667FF769E61EEB099A37 /* LOTShapeRepeater.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C48CE3076FA22F67899C70105E863B1 /* LOTShapeRepeater.h */; settings = {ATTRIBUTES = (Project, ); }; };
7C60C060128131E0303FCBF5D23C80B6 /* YTKBatchRequestAgent.m in Sources */ = {isa = PBXBuildFile; fileRef = 17DB18B7E1254DFEFB138C96DA080689 /* YTKBatchRequestAgent.m */; };
7CD0411D3CFF4930E2B80E582D212C57 /* YTKNetwork-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = C2DD04DBA9BA71B2BCEEFE4C6ED14B84 /* YTKNetwork-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
7E34AB92C474F79C935A5C5281C0275D /* MJRefreshHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 1BE90946607E56A15EB7B62C033E3F3B /* MJRefreshHeader.m */; };
7E87048099B3EADB965FED6141B4E3BA /* LOTShapePath.m in Sources */ = {isa = PBXBuildFile; fileRef = FA9313E2F2C3914AAEFF1A31C4F2F4FB /* LOTShapePath.m */; };
7F571401F80340E1F555F6B830A9384E /* LOTAnimatedControl.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D5CAB9661A3AD5A21AE3B5C6AB801EC /* LOTAnimatedControl.h */; settings = {ATTRIBUTES = (Public, ); }; };
7FB341922B5FD3302E6208A91A694568 /* LOTColorInterpolator.m in Sources */ = {isa = PBXBuildFile; fileRef = A6BC90D70B0EECC35860A3839FB6338E /* LOTColorInterpolator.m */; };
7FC3F9641BD28F2A091FB02C83231320 /* MJRefreshStateHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = A751E8AD026BF002A645C697EE62F3F5 /* MJRefreshStateHeader.m */; };
7FD00E591F96028A72861818F1934341 /* UINavigationBar+Night.h in Headers */ = {isa = PBXBuildFile; fileRef = 469130FC0EADDD1694316D32CAFB669C /* UINavigationBar+Night.h */; settings = {ATTRIBUTES = (Public, ); }; };
7FFE645F4E4A1C265D6B02EF6DEDE0A6 /* YTKBatchRequestAgent.h in Headers */ = {isa = PBXBuildFile; fileRef = 672898D36A06C60379E23B27A0705367 /* YTKBatchRequestAgent.h */; settings = {ATTRIBUTES = (Public, ); }; };
8021EA4FB0F5EC5479B56E62C9CD0AF1 /* UIView+MJExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = AA0E5EB8EDE01409230D6BF877DE6A7D /* UIView+MJExtension.m */; };
8089D85490976DE75DD107976AAB81C9 /* LOTNumberInterpolator.h in Headers */ = {isa = PBXBuildFile; fileRef = 76AF1E94A63621773F2B09FF01304AF5 /* LOTNumberInterpolator.h */; settings = {ATTRIBUTES = (Project, ); }; };
80D28602DF762C86F47DBB9D337BA0FC /* LOTShapeRepeater.m in Sources */ = {isa = PBXBuildFile; fileRef = 95084E2ED1061A2B34985E775A6053D1 /* LOTShapeRepeater.m */; };
80E362A0C82067CB0A45E3CC2BB5A1A2 /* DKColorTable.h in Headers */ = {isa = PBXBuildFile; fileRef = A61E6DCEF33FA643F864B5D21667B2E3 /* DKColorTable.h */; settings = {ATTRIBUTES = (Public, ); }; };
80FA6BC95D517487F702F394C94EE801 /* LOTAsset.m in Sources */ = {isa = PBXBuildFile; fileRef = C8FD31140D99C58C6A37714765237FDF /* LOTAsset.m */; };
81DCF44F782B70A4027BA4367753E5D3 /* LOTRadialGradientLayer.h in Headers */ = {isa = PBXBuildFile; fileRef = B07A0CCA0FD26287B6F079CF2A486F7A /* LOTRadialGradientLayer.h */; settings = {ATTRIBUTES = (Project, ); }; };
82069E8A34A8BD52C8809F61C9B93CF0 /* LOTShapeFill.m in Sources */ = {isa = PBXBuildFile; fileRef = 657A5C8E6427E7B940554999906C79CF /* LOTShapeFill.m */; };
826BF14E0AE52BA8D9A95A63F4AF4C1E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 082CFDE879B2B4298D74A195301CB6EE /* Foundation.framework */; };
845BFE42F64A5F0734E9AE76CEA22F0D /* MASUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CCD7034588C6308E145A85D523AF390 /* MASUtilities.h */; settings = {ATTRIBUTES = (Public, ); }; };
846DE65FC723D8E07D922D0AEB8BDF6E /* LOTInterpolatorCallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EF4CBD26353C1C96F54ABE037E6C8D5 /* LOTInterpolatorCallback.h */; settings = {ATTRIBUTES = (Public, ); }; };
8593967CB78942AC9A72A70BC300239A /* LOTModels.h in Headers */ = {isa = PBXBuildFile; fileRef = F0F68731CD66B673B7CD6E7CE11A1B40 /* LOTModels.h */; settings = {ATTRIBUTES = (Project, ); }; };
86BD829EC1CAE0520DCC33C1D2204180 /* MJRefreshStateTrailer.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C63195B17057B4EFA016CA689E3613A /* MJRefreshStateTrailer.h */; settings = {ATTRIBUTES = (Public, ); }; };
875F4E1418DDEBBB82C043E0F2C2595F /* DKImage.h in Headers */ = {isa = PBXBuildFile; fileRef = EE461F563B384AA2E4F0E5AEB29798F5 /* DKImage.h */; settings = {ATTRIBUTES = (Public, ); }; };
8777D98DA4FA970E872331E6E28DD91E /* MJRefreshBackFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A9A4CFD03C9F4FB84D8777D6CEB6633 /* MJRefreshBackFooter.m */; };
878D271747A20417C72715B3843D6372 /* CGGeometry+LOTAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C82ECD42D6BFBABD0B98432782877C2 /* CGGeometry+LOTAdditions.h */; settings = {ATTRIBUTES = (Project, ); }; };
888FE7ADF440A902FC2EC582BEC36215 /* UIToolbar+Night.m in Sources */ = {isa = PBXBuildFile; fileRef = 73339B1AEE682F357EBD16E7A7D6BE94 /* UIToolbar+Night.m */; };
8999F5C08EADE22B7464C43912C5BE08 /* LOTValueCallback.h in Headers */ = {isa = PBXBuildFile; fileRef = D3E6CE31C1DA4D87630BA746CF1B7008 /* LOTValueCallback.h */; settings = {ATTRIBUTES = (Public, ); }; };
89D1315CA78CBB110186630BE1403B30 /* LOTKeypath.m in Sources */ = {isa = PBXBuildFile; fileRef = F4ADCF2F4364F5B6BB544A3EA7CC47D2 /* LOTKeypath.m */; };
8BC2BB7DF1B45AEA81FC933EE29B946C /* ViewController+MASAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = DEC191C84E14382AA870C1EF4AC86843 /* ViewController+MASAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; };
8CCEAD462123711BA4D045C037F89AC4 /* LOTKeyframe.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A04190846252793512C7E23AA24D4F0 /* LOTKeyframe.m */; };
8DDA4DFBBCE0EAC89304B0943811E308 /* LOTInterpolatorCallback.m in Sources */ = {isa = PBXBuildFile; fileRef = FCE348DFB7397216EA172656D108A227 /* LOTInterpolatorCallback.m */; };
8E3DB486A46538620F8B978B7B04FF21 /* UIPageControl+Night.m in Sources */ = {isa = PBXBuildFile; fileRef = CBCC3C80A60DDA18669EB495035615CA /* UIPageControl+Night.m */; };
90BB5C3EF49226A2589421754D08A4B6 /* UIColor+Expanded.h in Headers */ = {isa = PBXBuildFile; fileRef = A2FA167EBBBE574A7E9FFB7A89A34745 /* UIColor+Expanded.h */; settings = {ATTRIBUTES = (Project, ); }; };
91DA6B429B8F113DBAE4BE7B5A029544 /* NSArray+MASShorthandAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = CABDC61DB8AE80E18A2CA228ADAD29BB /* NSArray+MASShorthandAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; };
9275C117E099A185B76B6A14978A1B72 /* AFNetworking-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A1963CED2F06784620621B5D51B4A7E3 /* AFNetworking-dummy.m */; };
92AF4CF4922B5BD2C8BD425BE61570C2 /* Masonry-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 103BD5215CB7780A10F0737CC5070C4E /* Masonry-dummy.m */; };
9427F282086AD57887156FAA9AD210DF /* NSObject+Night.m in Sources */ = {isa = PBXBuildFile; fileRef = 832AE0A5DD82855E42538DD89911CEC2 /* NSObject+Night.m */; };
9429FC6B443418ECFD4217C2DE26D01C /* CAShapeLayer+Night.m in Sources */ = {isa = PBXBuildFile; fileRef = 5FC85FD9AD0AAC09998353E4B9FF5F89 /* CAShapeLayer+Night.m */; };
949E1F9E765EC2FD7FC5E503C977D91C /* UITextView+Night.m in Sources */ = {isa = PBXBuildFile; fileRef = 37D06DE028CB02FC13F18419F7A64004 /* UITextView+Night.m */; };
94E1DF2A39A3C59359AA6CCBBD0B2EB6 /* LOTMask.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D340B23656249148D2C43A955AD30AD /* LOTMask.m */; };
94FBC205739F8D2F316CBD9ECA22A592 /* DKImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C438BB4003E8A6AD1D759CF9B4933BB /* DKImage.m */; };
95149DE76A67F2EB8D0FF8AFEA82E12C /* MJRefreshBackGifFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = D625C6C0F2976894AA9EA9D6FB8088FF /* MJRefreshBackGifFooter.m */; };
9529D5CF7783F64F4C6E9C80FE4A5AF2 /* LOTGradientFillRender.h in Headers */ = {isa = PBXBuildFile; fileRef = 513A5A4B9156B9A00DCFC5E08A81FAC3 /* LOTGradientFillRender.h */; settings = {ATTRIBUTES = (Project, ); }; };
954BC9B9AD7750A927B80FE16995A59A /* UIProgressView+Night.m in Sources */ = {isa = PBXBuildFile; fileRef = 62AA60601130FBEEB90ED44E4CEB2518 /* UIProgressView+Night.m */; };
972854857D5A906E3F3987222E661FB1 /* YTKChainRequestAgent.m in Sources */ = {isa = PBXBuildFile; fileRef = 745D34345D0D846EE1AF419968F8EC4F /* YTKChainRequestAgent.m */; };
993AC6C27E8CD50AB5589EC021E67498 /* lottie-ios-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C2B8FC81568645FDBF4A0E550463D05 /* lottie-ios-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
9980C628115436A469AEFA51EE62A802 /* LOTShapeGradientFill.h in Headers */ = {isa = PBXBuildFile; fileRef = B7F162D7C62993C5D79BBBC850BBC04B /* LOTShapeGradientFill.h */; settings = {ATTRIBUTES = (Project, ); }; };
99FC418AC88815176BB4BA09870E774A /* MJRefreshAutoNormalFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 86518BEE578251117498AC5AAB59101D /* MJRefreshAutoNormalFooter.m */; };
9A84347D017C4CF4540F6C5D72B279E4 /* LOTMaskContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 02C82C7F009BB6B049EBD9E20A0E3BBA /* LOTMaskContainer.m */; };
9B21485294819E30B46EDBD1EFC68A55 /* UIButton+Night.h in Headers */ = {isa = PBXBuildFile; fileRef = FA3A2DC256D026CEA15DD4C770212758 /* UIButton+Night.h */; settings = {ATTRIBUTES = (Public, ); }; };
9B7D54881239E407E69D6A56DB92236C /* LOTLayerGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = 99498A147603A7A9E80704F5DFB7FC8F /* LOTLayerGroup.h */; settings = {ATTRIBUTES = (Project, ); }; };
9C7A2F6B98103C6F2E01D1C19C87D78D /* DKAlpha.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C41B36801E027339CE4C7E903480DA4 /* DKAlpha.m */; };
9D2F04CCC07FEB346F3DBBFAA33B0642 /* MASLayoutConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = 4397B175B5E5E57C857098E054550B3D /* MASLayoutConstraint.h */; settings = {ATTRIBUTES = (Public, ); }; };
9E21AA2EC996E70AD863FBCC5546CC65 /* MJRefreshConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 91E0189ED1D4040FE47F1B26DA12AF16 /* MJRefreshConfig.m */; };
9E5F9EB0050A41350DA8DFD1DA9A40B2 /* LOTComposition.m in Sources */ = {isa = PBXBuildFile; fileRef = AF6909BDBAE32A84F83BCC774B6593A9 /* LOTComposition.m */; };
9EB02F89E1E1A28B6F1A9FF7AE49BF51 /* NSArray+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = F93186C9850FF5879541C0BF05838D79 /* NSArray+MASAdditions.m */; };
9EC565A573F15464FC02427FF1C17D21 /* AFURLResponseSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = 428248F1614ED960097FD835AA4E677F /* AFURLResponseSerialization.m */; };
9F0B4F7B01C8FD7389CCC625B21431A6 /* LOTAssetGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = 60F9B7A2F46A49A50C3F3FF313FC33F9 /* LOTAssetGroup.m */; };
A0EB7D4A8085772590C199F7E1118A04 /* MJRefreshConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 20C968A600636E825BD62E66C6C62F15 /* MJRefreshConst.h */; settings = {ATTRIBUTES = (Public, ); }; };
A174A6C0ABE1091F0AD0C09B9461CF01 /* UIBarButtonItem+Night.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B6BB70CB1057E6CAFFFE752D50CEF96 /* UIBarButtonItem+Night.h */; settings = {ATTRIBUTES = (Public, ); }; };
A1FADBEBEBD7DEED952843F653928FEF /* DKAlpha.h in Headers */ = {isa = PBXBuildFile; fileRef = 53DC3490B7639337FD3A77BE6294E3F6 /* DKAlpha.h */; settings = {ATTRIBUTES = (Public, ); }; };
A2B0D06975AC503FFAF178C006150F23 /* YTKChainRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 6EBA5F8694EC76C8B282CBA47637267B /* YTKChainRequest.m */; };
A458539F0BC46AB3A998C440B3118B7B /* MJRefreshNormalTrailer.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B3DA8B65E8CD8282ED363FADFA93EB3 /* MJRefreshNormalTrailer.h */; settings = {ATTRIBUTES = (Public, ); }; };
A5BB75FC486E0B06FFB44FD90E60002A /* MASLayoutConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 2DF863F55AFEDEAE310363D1C1B94DD5 /* MASLayoutConstraint.m */; };
A7FFA91D1752C0783FA29408D06F37E7 /* Masonry-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = BDEE8EE2087F5F8378017D6AD37396DA /* Masonry-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
A825C33C26CFFCE6F016FD985541D2A5 /* NSBundle+MJRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = 25044363B352C1C215D420EF8D79BACB /* NSBundle+MJRefresh.m */; };
A8CD6354FB9683A303227318C66B4098 /* UITableView+Night.h in Headers */ = {isa = PBXBuildFile; fileRef = FD30A0CEEB8CB8B6D8F2A9F70362AF68 /* UITableView+Night.h */; settings = {ATTRIBUTES = (Public, ); }; };
A932C18576F30D6A250AA4CCD06EAC7E /* LOTRoundedRectAnimator.m in Sources */ = {isa = PBXBuildFile; fileRef = 6677657818B4CD33859C735FA5A26987 /* LOTRoundedRectAnimator.m */; };
A96C51B945426CE699044CB974BA2429 /* LOTShapeRectangle.m in Sources */ = {isa = PBXBuildFile; fileRef = 19FF690E63EDEF1B93CBFA9813C47910 /* LOTShapeRectangle.m */; };
A9A8070DB3E58E025A404638BFA7456B /* LOTAnimatedControl.m in Sources */ = {isa = PBXBuildFile; fileRef = DDEB28C1046F1BB93AD1CFDFB9B46D6C /* LOTAnimatedControl.m */; };
AAA699A6523F4FBD720D904BB9D72894 /* UIScrollView+MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F9AFC91877EE0F6E428E58B693BE3E7 /* UIScrollView+MJRefresh.h */; settings = {ATTRIBUTES = (Public, ); }; };
AADA4442F3F1B6A22C1ACF73E43AB62E /* LOTAnimationCache.m in Sources */ = {isa = PBXBuildFile; fileRef = CD8A70DF8C11A1FAEAA29773BA2FBF0C /* LOTAnimationCache.m */; };
AB49F4C11D446F4972A9B971677EE712 /* MJRefreshNormalHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 69F447C0BC3E1578D9C89913516B9E1A /* MJRefreshNormalHeader.h */; settings = {ATTRIBUTES = (Public, ); }; };
AB74D9DAFB9BD0400EAD04ABDD8F138D /* DKNightVersion-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E577153A43899B8C3580A621842D3B2 /* DKNightVersion-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
AC0468E701A13E3E102C83A03893F2D2 /* LOTArrayInterpolator.m in Sources */ = {isa = PBXBuildFile; fileRef = C94C9FAC9154E8FD309C066C7A9B2951 /* LOTArrayInterpolator.m */; };
AC69B41D7AF525143A5DCB471A20A770 /* LOTRenderNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 90113D6F483EF84D6564A09EDDC41605 /* LOTRenderNode.m */; };
ADC62FBE73D69E96C136A490F2469E06 /* LOTShapeStroke.m in Sources */ = {isa = PBXBuildFile; fileRef = 5885A3646E95D545186619C3DDEB5467 /* LOTShapeStroke.m */; };
AF05E0F2790D37F8EC1BDE93AF41507D /* UISearchBar+Night.h in Headers */ = {isa = PBXBuildFile; fileRef = 1342A6F6581A3B5E149C840F6EA2EE7D /* UISearchBar+Night.h */; settings = {ATTRIBUTES = (Public, ); }; };
AF19D8899FD3B72A2A354675CF0B4B4B /* ViewController+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = C2987289680E43F8E5C5896594EBE5B4 /* ViewController+MASAdditions.m */; };
AF59BE2E7458CE93C434E883514DDB6C /* UIView+Night.h in Headers */ = {isa = PBXBuildFile; fileRef = 999FD8670FA125B68D099344C5F13C0D /* UIView+Night.h */; settings = {ATTRIBUTES = (Public, ); }; };
AF5A48467C25600884558909711FD062 /* MJRefreshBackNormalFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 445B5A172A9BDB77674555B889407BD4 /* MJRefreshBackNormalFooter.m */; };
B0591652F2947212E5B3422AB82161DD /* MJRefreshAutoFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = E46476EC508053A6618CCEFA8F4670A5 /* MJRefreshAutoFooter.m */; };
B1A3ACB85457491656534B64EEB5781A /* LOTPathInterpolator.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F1F73CDE2A7DB3FB55E7DA6AA75422F /* LOTPathInterpolator.h */; settings = {ATTRIBUTES = (Project, ); }; };
B272F05D3DE14A790E6CECA7CD4E2125 /* LOTShapeStar.h in Headers */ = {isa = PBXBuildFile; fileRef = BF76150560E2782C233F8A2DF0C2E1BB /* LOTShapeStar.h */; settings = {ATTRIBUTES = (Project, ); }; };
B2950850D387507FF7C91D5DD1EB6074 /* MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E9CC59C3DC5B781CE4536CC53B93BDA /* MJRefresh.h */; settings = {ATTRIBUTES = (Public, ); }; };
B2B9EFBB8274117214CA5482B4412248 /* Masonry.h in Headers */ = {isa = PBXBuildFile; fileRef = 411872A1FAE3CDF9390F47D6D9F7F56A /* Masonry.h */; settings = {ATTRIBUTES = (Public, ); }; };
B302184B9FC265E1DDF19DCB36CD0F45 /* MASConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = 999C5839B57A1B51FF5F17CCF52A5993 /* MASConstraint.h */; settings = {ATTRIBUTES = (Public, ); }; };
B44111DB08DE0F8CB0B1C22043079567 /* LOTCompositionContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D1473D7FDD887A29242BB7E3C10D875 /* LOTCompositionContainer.h */; settings = {ATTRIBUTES = (Project, ); }; };
B549700BFE0D2FDCE066730BC32BEC79 /* LOTMask.h in Headers */ = {isa = PBXBuildFile; fileRef = 629704C1423EF0AB16056BA752C8ED0D /* LOTMask.h */; settings = {ATTRIBUTES = (Project, ); }; };
B5F96E16BF868DAD7C5B0D0AD9191370 /* LOTCacheProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 962C7E4760BB74FAEE1930216F091561 /* LOTCacheProvider.m */; };
B63E3C523140AF100C42A9DD05D70EA5 /* DKColor.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D9819669CAEBFBF189A321C65487463 /* DKColor.h */; settings = {ATTRIBUTES = (Public, ); }; };
B7EDF27FC13D95266FE8DB6A1B557C86 /* NSObject+DeallocBlock.h in Headers */ = {isa = PBXBuildFile; fileRef = ADD1EA0F5091C1B5B011B8E49FA5061E /* NSObject+DeallocBlock.h */; settings = {ATTRIBUTES = (Public, ); }; };
B8722D3FFA2E63CFE914D74AEA712312 /* MASConstraintMaker.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C328988DC492AABE165FA2EFF74AA64 /* MASConstraintMaker.m */; };
BB915E71E44E36CF0CC03DA190C0CBC5 /* LOTShapeTransform.m in Sources */ = {isa = PBXBuildFile; fileRef = 047419202AA27FE9C4407DF580AD251E /* LOTShapeTransform.m */; };
BBCCB98CCF10E0FC578E8D2AE58B1219 /* LOTRenderNode.h in Headers */ = {isa = PBXBuildFile; fileRef = DEAE53F81E641B4899DA836B45F2C5DB /* LOTRenderNode.h */; settings = {ATTRIBUTES = (Project, ); }; };
BC150F87A8A96FFEC698A5434BB4E758 /* LOTRenderGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = 993B9D20C4653F33CAB9538918E87AF7 /* LOTRenderGroup.m */; };
BC2E5D686E3C8185D4E859CD2D1929BA /* LOTStrokeRenderer.m in Sources */ = {isa = PBXBuildFile; fileRef = 058E2FE3D91B1C833FB1EB46A4F173CA /* LOTStrokeRenderer.m */; };
BC4B0E7C0ADD72CA5CF3CE76EC10E79A /* Pods-DreamSleep-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = CE6DF0D74F2FC70C3A1FC07E1635D211 /* Pods-DreamSleep-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
BD042B87CA186BEA415DE8F6FC8ECB09 /* LOTBezierData.h in Headers */ = {isa = PBXBuildFile; fileRef = AC6D4A58AF70FAFDF109452A0941B785 /* LOTBezierData.h */; settings = {ATTRIBUTES = (Project, ); }; };
BD952A2920AAA6C2F4A9376CA93EB5B9 /* LOTShapeTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 2423873A2F0D67DE8BF3DC377E8125EA /* LOTShapeTransform.h */; settings = {ATTRIBUTES = (Project, ); }; };
BE0AD960F7C64B92ECBA7CACEDE5EF3A /* UIBezierPath.m in Sources */ = {isa = PBXBuildFile; fileRef = 88D1D7CE4AB9AAC8E79C92EBC79E622D /* UIBezierPath.m */; };
BEF5AC784B027F67FB808CE919DF7F7C /* YTKRequestEventAccessory.h in Headers */ = {isa = PBXBuildFile; fileRef = 437C4F941CFCBF7FEA1B646B040ECDB1 /* YTKRequestEventAccessory.h */; settings = {ATTRIBUTES = (Public, ); }; };
C048F4453504FCC29C4579CD441FE79D /* MJRefreshTrailer.h in Headers */ = {isa = PBXBuildFile; fileRef = 37C161441DA4F4495EA809A3AD08CFF3 /* MJRefreshTrailer.h */; settings = {ATTRIBUTES = (Public, ); }; };
C0B21FD807C9B4F3C4F66C6B6D1EDB95 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 082CFDE879B2B4298D74A195301CB6EE /* Foundation.framework */; };
C1EB599C9E914514947C060C2EE2AD31 /* UIProgressView+Night.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C4A4CE324BEC680FFEFFD8669F0CE36 /* UIProgressView+Night.h */; settings = {ATTRIBUTES = (Public, ); }; };
C2E0D9BB18F6148B20621271FA0D69E4 /* UIColor.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B0AE4F2C9486F01B02DAE031C6F6DF3 /* UIColor.m */; };
C371CD7CFF2D48BAB5B845D805D5640D /* LOTLayerContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FFD66BC92100926B149C59FEEDEBF33 /* LOTLayerContainer.h */; settings = {ATTRIBUTES = (Project, ); }; };
C441A193DFE25A8CDD81BC035C3B02B3 /* MASCompositeConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = 061AC76F7AB568F6C504F93F39934463 /* MASCompositeConstraint.h */; settings = {ATTRIBUTES = (Public, ); }; };
C487C3767519D35DA2E8B9846474BF71 /* DKNightVersion-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E3E8196EA3450DB9E10A4E7C7699E8EB /* DKNightVersion-dummy.m */; };
C622E91D61B094484128B20426842D62 /* MASViewConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = A9275B558E6DEC65D9FFA3272B0AC0DA /* MASViewConstraint.m */; };
C66FC8C7255B92388E5481FC4766EB66 /* MJRefreshComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = F2769B2D4EC8333FA01A07E4B3815FB6 /* MJRefreshComponent.m */; };
C7BC2F5F0EDA19084857D1BAEEC27B43 /* LOTBezierPath.m in Sources */ = {isa = PBXBuildFile; fileRef = 20FB54EFACC3366F12145955160C3CA8 /* LOTBezierPath.m */; };
C7BF2873E0D84EB617B4EC742DA3F063 /* LOTShapeCircle.h in Headers */ = {isa = PBXBuildFile; fileRef = B9206AD59F628862DC109D4AF0F76B66 /* LOTShapeCircle.h */; settings = {ATTRIBUTES = (Project, ); }; };
C80470B9FA84AD5E92D48A8AABF7E6F9 /* UIImageView+Night.h in Headers */ = {isa = PBXBuildFile; fileRef = DDD706213FDF574C07C34575D6472DCF /* UIImageView+Night.h */; settings = {ATTRIBUTES = (Public, ); }; };
C97EB2F0F0E6FE9B71FB7BF986222BF1 /* LOTBezierData.m in Sources */ = {isa = PBXBuildFile; fileRef = BFCC7764814F39BFB20B6B51F1E7AD8A /* LOTBezierData.m */; };
CA6DEB80DC2C89BCE7FF82C86816504A /* UIScrollView+MJExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 13A5324DF7E97814216C8036E610A238 /* UIScrollView+MJExtension.m */; };
CC6B894A8148066DA0726EE8332CCD5E /* LOTAnimationView.m in Sources */ = {isa = PBXBuildFile; fileRef = F456C71CA99B0310E91DCB2904D4F76D /* LOTAnimationView.m */; };
CCCC26F7637425E021939F00165F4C55 /* MJRefreshAutoFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = D75ABDC14D87FAAE7CDAE4178AEBEDE2 /* MJRefreshAutoFooter.h */; settings = {ATTRIBUTES = (Public, ); }; };
CCDA8288061F12AFA336BB09C55BFF1D /* MJRefreshComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 15BF78C366276ABD9542330732B68312 /* MJRefreshComponent.h */; settings = {ATTRIBUTES = (Public, ); }; };
CD3038C5352EA8F805978F6BDE6CD90D /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C5A68F7F052965847D9421FC0E7F8015 /* UIKit.framework */; };
CD97E9C1ACCDCAD4D5634533AF1EA63D /* LOTPathAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AF0F8F8CBDC09FEE1260328379CC44D /* LOTPathAnimator.h */; settings = {ATTRIBUTES = (Project, ); }; };
CDE4D22198DE0504E213B95C1B08E6BF /* LOTTransformInterpolator.h in Headers */ = {isa = PBXBuildFile; fileRef = 16A38B2A03F66049526108BDA69A42C7 /* LOTTransformInterpolator.h */; settings = {ATTRIBUTES = (Project, ); }; };
CE7A622B4E3BC0F1751C6B1FA919857E /* UITextField+Keyboard.m in Sources */ = {isa = PBXBuildFile; fileRef = 83C5185771D11D1B3A9DB98E1DEBFC96 /* UITextField+Keyboard.m */; };
CE8758BC47E6FA48209C4EC758E3C4DB /* MJRefreshFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = E467B165D5FA8DA9B5531598D9534DF9 /* MJRefreshFooter.m */; };
CE9D5A2C73FD2E1E7B262B1103D8380F /* LOTPathInterpolator.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D6DCC0DAB8511C62B997440AD091D94 /* LOTPathInterpolator.m */; };
CFA6FC9E01EC8F6A5ACA702339850515 /* LOTCircleAnimator.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D3ADF6280CDB9E14E0235C20A166A01 /* LOTCircleAnimator.m */; };
CFDA4B704D39E1436FC8CC9D40E51532 /* LOTFillRenderer.h in Headers */ = {isa = PBXBuildFile; fileRef = C68934E114ACB33FA37F673B9D8B3583 /* LOTFillRenderer.h */; settings = {ATTRIBUTES = (Project, ); }; };
D0E345F80E74FEF9A86B519CF671675C /* lottie-ios-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F7334FC119CB25E3AFE12DF09F938CF /* lottie-ios-dummy.m */; };
D119D5048094FEA909FF578E8B5326B5 /* UITextField+Night.m in Sources */ = {isa = PBXBuildFile; fileRef = 874EAD6EF5083404B31F568DD7FB6131 /* UITextField+Night.m */; };
D2127799FF85142D8A4BD5DA67DA639D /* AFHTTPSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = EFEDB6AEB506BFA6ECD1BAE449980870 /* AFHTTPSessionManager.m */; };
D29F7C1B5CCB17B2065411FB2AAC96D4 /* AFURLRequestSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = BEE6BEB35D287AF11A251B0786B02479 /* AFURLRequestSerialization.h */; settings = {ATTRIBUTES = (Public, ); }; };
D38C9D8CE2A7F06E7376FB15FD39192D /* UIView+MJExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AA81DEFA3D87DF7BF4FD8C3AD8955AE /* UIView+MJExtension.h */; settings = {ATTRIBUTES = (Public, ); }; };
D4249C15EEB84C0886B25B4871684041 /* UISlider+Night.h in Headers */ = {isa = PBXBuildFile; fileRef = D4DDB021AB6DC003981DB761DAFF7D5D /* UISlider+Night.h */; settings = {ATTRIBUTES = (Public, ); }; };
D573558775BEF199A0BFBE5C50D31E1E /* LOTShapeFill.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FF0AD71FEBAE2EDDEF3107714DE93EB /* LOTShapeFill.h */; settings = {ATTRIBUTES = (Project, ); }; };
D5BB7E08E9F64E9F4565E6965D794F2E /* LOTShapeGradientFill.m in Sources */ = {isa = PBXBuildFile; fileRef = 750C5122755F1BE935876FE7CAFA3AB0 /* LOTShapeGradientFill.m */; };
D6AB00041E017FC7E2AD80BC4305FC62 /* LOTColorInterpolator.h in Headers */ = {isa = PBXBuildFile; fileRef = CF1B9E3FA8C9356466CA73B4AE861784 /* LOTColorInterpolator.h */; settings = {ATTRIBUTES = (Project, ); }; };
D7A082267C561D6385F049144F49DCC9 /* YTKBatchRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 5CEDA2240351E9F121D19748045077D8 /* YTKBatchRequest.m */; };
D8229283D5A8497A58B1365DA6B9343E /* LOTValueCallback.m in Sources */ = {isa = PBXBuildFile; fileRef = 63D477E7D3FDF686287CD0ECA3934EE6 /* LOTValueCallback.m */; };
D868DB53B92E82F3E8CEFAF4D17B28BC /* LOTLayerGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = 901293E446E7FBB2D4742492A25557B2 /* LOTLayerGroup.m */; };
D87CBCB25978A2CC3C985FE69A462EB0 /* NSBundle+MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = 7497A6F3BB36D327AECC68884A846B4C /* NSBundle+MJRefresh.h */; settings = {ATTRIBUTES = (Public, ); }; };
D9B19D99F158CE4FD06034A31E4B07E4 /* LOTPointInterpolator.h in Headers */ = {isa = PBXBuildFile; fileRef = 419415F71F3AE160EAF60136E4D215E8 /* LOTPointInterpolator.h */; settings = {ATTRIBUTES = (Project, ); }; };
DC2BCCD31CC00E83FF504F126506813A /* MJRefreshBackStateFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = E0E964B7317811D22C0CB960FCE03B20 /* MJRefreshBackStateFooter.h */; settings = {ATTRIBUTES = (Public, ); }; };
DC79DD6A5D45BED435A7572EE1F7507D /* YTKBatchRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 776AB9FBFAC0292754A430124BFAF70F /* YTKBatchRequest.h */; settings = {ATTRIBUTES = (Public, ); }; };
DD073235E8CDD081038663E9801E95ED /* LOTRenderGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FE6004CC1577966DD80799C7531EA79 /* LOTRenderGroup.h */; settings = {ATTRIBUTES = (Project, ); }; };
DDBE19A30BB8F740B1F75CCFBA3CF20F /* LOTTrimPathNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B3CEC082C4788A52B8BF78A78AE3850 /* LOTTrimPathNode.m */; };
DE0EACF14B32E2D421ED4464EA03B47F /* UINavigationBar+Animation.m in Sources */ = {isa = PBXBuildFile; fileRef = 3335C433E09BE753EE38ED82C295A7C6 /* UINavigationBar+Animation.m */; };
DEA792809D8B47C17551B08F026FC7AE /* YTKRequestEventAccessory.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F0FA16019AB32BB2AFB1766061A7FD7 /* YTKRequestEventAccessory.m */; };
DEC12E1A6A3555D9B88120A325B41DEA /* YTKNetwork-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 02D8E936A529D1154DA39CC99AAEFEFA /* YTKNetwork-dummy.m */; };
DEC364F1EDC9D2AFC5849780E1169701 /* UISearchBar+Keyboard.m in Sources */ = {isa = PBXBuildFile; fileRef = 883C8246FD05666876F57B0FF767D070 /* UISearchBar+Keyboard.m */; };
DF98D488AB3724289D1C385669A3E8AA /* NSValue+Compat.h in Headers */ = {isa = PBXBuildFile; fileRef = 97AE4BE4C872EB643E06646EFE308AE7 /* NSValue+Compat.h */; settings = {ATTRIBUTES = (Project, ); }; };
DFF7195C2AB94D2CF165B25B89B42C1E /* View+MASAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = D247C341781D75447AF0F6F294E08557 /* View+MASAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; };
E01EA0E10892D98F08A910EDA71FB443 /* MJRefreshStateHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E2A7FEEBE47A89B865B329279D5B4FB /* MJRefreshStateHeader.h */; settings = {ATTRIBUTES = (Public, ); }; };
E17671B015273174485D400B59BC1C59 /* CALayer+Night.h in Headers */ = {isa = PBXBuildFile; fileRef = AA912DBC1C25C68174C418AA66370ED0 /* CALayer+Night.h */; settings = {ATTRIBUTES = (Public, ); }; };
E1986A96EB7906DFA58BE7569ACCFC97 /* LOTShapeTrimPath.m in Sources */ = {isa = PBXBuildFile; fileRef = A6E27DCE325279E7A18A7EB8C5DF7277 /* LOTShapeTrimPath.m */; };
E1EBE8193D362D5441991CE2EB426E0E /* UISwitch+Night.m in Sources */ = {isa = PBXBuildFile; fileRef = EFD6588B3F3B1D7355D6ED720C13BD50 /* UISwitch+Night.m */; };
E23AD2FA650F1435C25EA40AB6B72E7A /* AFHTTPSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F5B6B64FD034FB2D27E2D0E577F2F91 /* AFHTTPSessionManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
E24B3954FA6CFA3F84C76D97C81BF562 /* MASViewConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = D0469B1BA911250136E58C938E651B4C /* MASViewConstraint.h */; settings = {ATTRIBUTES = (Public, ); }; };
E2DF342DE862282E3F459CD9476B9B71 /* MASViewAttribute.h in Headers */ = {isa = PBXBuildFile; fileRef = D94B27CCBA312615F51BA5C0B6CEDF01 /* MASViewAttribute.h */; settings = {ATTRIBUTES = (Public, ); }; };
E3300222893F44A0514E6AE1A303AFAA /* LOTAnimationTransitionController.h in Headers */ = {isa = PBXBuildFile; fileRef = BCAD9B7AD4D3D6E0E3CFE4999A087127 /* LOTAnimationTransitionController.h */; settings = {ATTRIBUTES = (Public, ); }; };
E378B85D174E658B58A2764FE8731E9D /* UISlider+Night.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E8DFA567CD4B2213E2445D326B4E150 /* UISlider+Night.m */; };
E39D0D38DDD60B00BC1F0884ED28ADF4 /* UITextField+Keyboard.h in Headers */ = {isa = PBXBuildFile; fileRef = 07A069580455C6E3EEDC80235EEFDCB7 /* UITextField+Keyboard.h */; settings = {ATTRIBUTES = (Public, ); }; };
E40E48874A7475AE63E4CDCE1D6988B1 /* LOTMaskContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 85FC7C983C07C14EA0BFBC3701AA68C7 /* LOTMaskContainer.h */; settings = {ATTRIBUTES = (Project, ); }; };
E506A9136613A8F447486984F3D3E944 /* DKNightVersionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1927545D8353CC924CB06C6155221B75 /* DKNightVersionManager.m */; };
E7BB7A2B4314D02FBFE313C0BB395815 /* UIControl+Night.h in Headers */ = {isa = PBXBuildFile; fileRef = 54DCCF8ADE70B7EF2160D30D40C377D1 /* UIControl+Night.h */; settings = {ATTRIBUTES = (Public, ); }; };
E810322AD3FE0A578AFF5CB620AD15C9 /* Lottie.h in Headers */ = {isa = PBXBuildFile; fileRef = AECDEDF270760B0ADEB6917FCE9BCCFC /* Lottie.h */; settings = {ATTRIBUTES = (Public, ); }; };
E89D5D85B92B4543C9C3BC1264C3FC26 /* MJRefreshConst.m in Sources */ = {isa = PBXBuildFile; fileRef = 7448354F5D670DC0E178E1979B3F4D30 /* MJRefreshConst.m */; };
EA4339023A6234E32422672379562EFC /* MJRefreshStateTrailer.m in Sources */ = {isa = PBXBuildFile; fileRef = 912E3EB6481AD3F973E40DADB00C3918 /* MJRefreshStateTrailer.m */; };
EA4D58D8AA1AAD35BE09BEEDEAEF55D2 /* MJRefreshGifHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = DD9D8EFAB671CD661FB7B0EA83F68B90 /* MJRefreshGifHeader.h */; settings = {ATTRIBUTES = (Public, ); }; };
EAA5E957F2B481F81AFA4289F813FC32 /* LOTKeypath.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C16E3F8406BCFF90AEDE9084D643140 /* LOTKeypath.h */; settings = {ATTRIBUTES = (Public, ); }; };
EBBE232DA0F5DBDF5CBCCAF2B504A16A /* MJRefreshAutoNormalFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = D22C4109034720FEBA7D4FAA0F218826 /* MJRefreshAutoNormalFooter.h */; settings = {ATTRIBUTES = (Public, ); }; };
ECBA0A728DDD7BA5F9CB65C2C80950A1 /* LOTSizeInterpolator.h in Headers */ = {isa = PBXBuildFile; fileRef = BC4F7383C3AA04E8CF94F60610314C42 /* LOTSizeInterpolator.h */; settings = {ATTRIBUTES = (Project, ); }; };
ED15A5CF2185C0CDD54580A8899EFF3F /* AFSecurityPolicy.m in Sources */ = {isa = PBXBuildFile; fileRef = 77BC0D258D2D5BB62E2674E91CE6CDF3 /* AFSecurityPolicy.m */; };
EDFB74A884F5486FBB6D84878A47467C /* LOTAnimatorNode.m in Sources */ = {isa = PBXBuildFile; fileRef = BA19038A392AF13432683994EEE23866 /* LOTAnimatorNode.m */; };
EF6CF7ED2624C016079017B4AF5B5500 /* LOTShapeCircle.m in Sources */ = {isa = PBXBuildFile; fileRef = A2E45E3E03516B2E3BEB532390ECEAEE /* LOTShapeCircle.m */; };
F0C593C48C3832EA2FB363B28DDB858D /* MJRefreshFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = D4E7AE2320564BBFD09D1957EFB680A6 /* MJRefreshFooter.h */; settings = {ATTRIBUTES = (Public, ); }; };
F17D14AA419610A24C438010925D5285 /* LOTStrokeRenderer.h in Headers */ = {isa = PBXBuildFile; fileRef = CD622F5F1B909344FD8FD8D339DE2BF0 /* LOTStrokeRenderer.h */; settings = {ATTRIBUTES = (Project, ); }; };
F1F6BE8022B15AF502F605F354CEA770 /* LOTAnimatorNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EA588D8FA07F797A28F3525F9B628C6 /* LOTAnimatorNode.h */; settings = {ATTRIBUTES = (Project, ); }; };
F21EB1AFFEDB5DABC2CEE81C56057E00 /* LOTPolystarAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EE87EFABDE32C86442DEB1A77473129 /* LOTPolystarAnimator.h */; settings = {ATTRIBUTES = (Project, ); }; };
F409514460B49909252092F89D7815B3 /* DKColor.m in Sources */ = {isa = PBXBuildFile; fileRef = 9630547FEF1041179A0CCCC68A5F6D64 /* DKColor.m */; };
F5B05B01C09A9C2687930E80C2F723BB /* MJRefreshConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F69D7314FA372A5CDA43E45AF533F2B /* MJRefreshConfig.h */; settings = {ATTRIBUTES = (Public, ); }; };
F5FB18BD7101E61588E1B1F81B27E93E /* LOTComposition.h in Headers */ = {isa = PBXBuildFile; fileRef = 0364A213BDEFBD59B91B1794C566B42E /* LOTComposition.h */; settings = {ATTRIBUTES = (Public, ); }; };
F66F0A974BA100F86E791CC5D4D71BF7 /* LOTLayerContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = DF5A65FE52A194575CA05FBE39C17B3C /* LOTLayerContainer.m */; };
F6EF1A0FF54545EC905960F2692530F2 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 082CFDE879B2B4298D74A195301CB6EE /* Foundation.framework */; };
F7382EB9CC48DA918F32E899D2957FEF /* UINavigationBar+Animation.h in Headers */ = {isa = PBXBuildFile; fileRef = 56FC62E65B302135B9640D82BF2B5108 /* UINavigationBar+Animation.h */; settings = {ATTRIBUTES = (Public, ); }; };
F846A595257F217CD9BBE376FC9462B7 /* UILabel+Night.m in Sources */ = {isa = PBXBuildFile; fileRef = 783C02520ED8C2081A31E335E7CDE698 /* UILabel+Night.m */; };
F8ADF77FAE104732A909BF9AB189FCA2 /* UIPageControl+Night.h in Headers */ = {isa = PBXBuildFile; fileRef = B6F6A328E50162D4E8546872AC2AB017 /* UIPageControl+Night.h */; settings = {ATTRIBUTES = (Public, ); }; };
FA0A1AFF81F2407ED7E6DE9085368EF5 /* MJRefreshAutoStateFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 26688DE1E374E4A15CB53692B52C6EF3 /* MJRefreshAutoStateFooter.h */; settings = {ATTRIBUTES = (Public, ); }; };
FA240085C778553BBDCD702041559F89 /* LOTShapeStar.m in Sources */ = {isa = PBXBuildFile; fileRef = AA825EEB6529E0C610518AB296CF8037 /* LOTShapeStar.m */; };
FA57A77C0681A62E0EBE4BB346730FA1 /* UITextField+Night.h in Headers */ = {isa = PBXBuildFile; fileRef = 94FB8EA60AE48C9CDC2EE2689622ED61 /* UITextField+Night.h */; settings = {ATTRIBUTES = (Public, ); }; };
FF0881948A7142742503C0A954750E78 /* LOTAnimatedSwitch.h in Headers */ = {isa = PBXBuildFile; fileRef = 61F6B6C07DE841F54CA372CA4970CD45 /* LOTAnimatedSwitch.h */; settings = {ATTRIBUTES = (Public, ); }; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
301FB2E6D0D44D8CF0AC996A8DA32D79 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
proxyType = 1;
remoteGlobalIDString = A10D306FBCE61B6A00F5D9E74036D1E9;
remoteInfo = DKNightVersion;
};
429D7567E449E83622E54A16636654D4 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 0B967D7F8561D42493EE289EC8D450D1;
remoteInfo = "lottie-ios";
};
451E4B2617557A427F10257E58E76306 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 6868056D761E163D10FDAF8CF1C4D9B8;
remoteInfo = MJRefresh;
};
49E19352EC5806AE6909C6B80D2032C7 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 0130B3724283586C0E9D2A112D4F2AA1;
remoteInfo = AFNetworking;
};
8F00DC6C40019772B5B47AE6541516D4 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
proxyType = 1;
remoteGlobalIDString = AC51EA5BE1682F8277BE5F13677E147C;
remoteInfo = YTKNetwork;
};
C9EA58ABB94B21466E18653D1E9C0265 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 55AF53E6C77A10ED4985E04D74A8878E;
remoteInfo = Masonry;
};
FDCC7E64C0ACED4E84735DF6A8F8DA25 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 0130B3724283586C0E9D2A112D4F2AA1;
remoteInfo = AFNetworking;
};
/* End PBXContainerItemProxy section */
/* Begin PBXFileReference section */
021D42115E05AF0933E54345CE3805C9 /* MJRefreshBackStateFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackStateFooter.m; path = MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.m; sourceTree = "<group>"; };
0290D57291FEA3C6F2476E73AC520557 /* LOTSizeInterpolator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTSizeInterpolator.m; path = "lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTSizeInterpolator.m"; sourceTree = "<group>"; };
02C82C7F009BB6B049EBD9E20A0E3BBA /* LOTMaskContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTMaskContainer.m; path = "lottie-ios/Classes/AnimatableLayers/LOTMaskContainer.m"; sourceTree = "<group>"; };
02D8E936A529D1154DA39CC99AAEFEFA /* YTKNetwork-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "YTKNetwork-dummy.m"; sourceTree = "<group>"; };
0364A213BDEFBD59B91B1794C566B42E /* LOTComposition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTComposition.h; path = "lottie-ios/Classes/PublicHeaders/LOTComposition.h"; sourceTree = "<group>"; };
03BBF60D00C005A1CC6F7D1059676DEC /* Masonry-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Masonry-Info.plist"; sourceTree = "<group>"; };
047419202AA27FE9C4407DF580AD251E /* LOTShapeTransform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTShapeTransform.m; path = "lottie-ios/Classes/Models/LOTShapeTransform.m"; sourceTree = "<group>"; };
04D1CA6DA5CB01F110265017EF15816E /* AFURLSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFURLSessionManager.h; path = AFNetworking/AFURLSessionManager.h; sourceTree = "<group>"; };
058E2FE3D91B1C833FB1EB46A4F173CA /* LOTStrokeRenderer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTStrokeRenderer.m; path = "lottie-ios/Classes/RenderSystem/RenderNodes/LOTStrokeRenderer.m"; sourceTree = "<group>"; };
061AC76F7AB568F6C504F93F39934463 /* MASCompositeConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASCompositeConstraint.h; path = Masonry/MASCompositeConstraint.h; sourceTree = "<group>"; };
0668CF24224E2676D68E8744C4CE3FEA /* YTKNetworkPrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YTKNetworkPrivate.h; path = YTKNetwork/YTKNetworkPrivate.h; sourceTree = "<group>"; };
06C5BFC8D5B51026A4A4A6AF33C04915 /* UITextView+Night.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UITextView+Night.h"; path = "DKNightVersion/UIKit/UITextView+Night.h"; sourceTree = "<group>"; };
07088A83B85F7D7F267667B4F60F0D6E /* MJRefreshTrailer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshTrailer.m; path = MJRefresh/Base/MJRefreshTrailer.m; sourceTree = "<group>"; };
07A069580455C6E3EEDC80235EEFDCB7 /* UITextField+Keyboard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UITextField+Keyboard.h"; path = "DKNightVersion/Manual/UITextField+Keyboard.h"; sourceTree = "<group>"; };
07E179F48B01E0F83CC1CA8C2F246ACB /* MASConstraint+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "MASConstraint+Private.h"; path = "Masonry/MASConstraint+Private.h"; sourceTree = "<group>"; };
082CFDE879B2B4298D74A195301CB6EE /* 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; };
098BF26AA1C8611E249012211AADB555 /* UITextView+Keyboard.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UITextView+Keyboard.m"; path = "DKNightVersion/Manual/UITextView+Keyboard.m"; sourceTree = "<group>"; };
0A4135FEBF910AA7E46693704794BB18 /* metamacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metamacros.h; path = DKNightVersion/extobjc/metamacros.h; sourceTree = "<group>"; };
0AA81DEFA3D87DF7BF4FD8C3AD8955AE /* UIView+MJExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+MJExtension.h"; path = "MJRefresh/UIView+MJExtension.h"; sourceTree = "<group>"; };
0AF0F8F8CBDC09FEE1260328379CC44D /* LOTPathAnimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTPathAnimator.h; path = "lottie-ios/Classes/RenderSystem/AnimatorNodes/LOTPathAnimator.h"; sourceTree = "<group>"; };
0B142E7485DDDE1246EE3B240B90F8EB /* YTKNetworkAgent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YTKNetworkAgent.h; path = YTKNetwork/YTKNetworkAgent.h; sourceTree = "<group>"; };
0B3CEC082C4788A52B8BF78A78AE3850 /* LOTTrimPathNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTTrimPathNode.m; path = "lottie-ios/Classes/RenderSystem/ManipulatorNodes/LOTTrimPathNode.m"; sourceTree = "<group>"; };
0B59297FCD4B4694AF5A47F77DC2D7C6 /* DKNightVersion.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DKNightVersion.debug.xcconfig; sourceTree = "<group>"; };
0C37016447AFDD654E6DDCB5FF2369CA /* DKNightVersion-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "DKNightVersion-Info.plist"; sourceTree = "<group>"; };
0D552A9277A4A7BBEA0D261A05A56A36 /* lottie-ios-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "lottie-ios-Info.plist"; sourceTree = "<group>"; };
0D5CAB9661A3AD5A21AE3B5C6AB801EC /* LOTAnimatedControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTAnimatedControl.h; path = "lottie-ios/Classes/PublicHeaders/LOTAnimatedControl.h"; sourceTree = "<group>"; };
0EA588D8FA07F797A28F3525F9B628C6 /* LOTAnimatorNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTAnimatorNode.h; path = "lottie-ios/Classes/RenderSystem/LOTAnimatorNode.h"; sourceTree = "<group>"; };
0F973C9AD26A38EF35071D1A2B41ED72 /* MJRefreshAutoGifFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoGifFooter.m; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.m; sourceTree = "<group>"; };
103BD5215CB7780A10F0737CC5070C4E /* Masonry-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Masonry-dummy.m"; sourceTree = "<group>"; };
112C7BF62481C21E9EDD605579236209 /* LOTAnimationCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTAnimationCache.h; path = "lottie-ios/Classes/PublicHeaders/LOTAnimationCache.h"; sourceTree = "<group>"; };
1339F8C3B7BCBAA0CA23491FE534D136 /* LOTPolygonAnimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTPolygonAnimator.h; path = "lottie-ios/Classes/RenderSystem/AnimatorNodes/LOTPolygonAnimator.h"; sourceTree = "<group>"; };
1342A6F6581A3B5E149C840F6EA2EE7D /* UISearchBar+Night.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UISearchBar+Night.h"; path = "DKNightVersion/UIKit/UISearchBar+Night.h"; sourceTree = "<group>"; };
136C11089E95D1A18704D2A3A3EABB12 /* LOTFillRenderer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTFillRenderer.m; path = "lottie-ios/Classes/RenderSystem/RenderNodes/LOTFillRenderer.m"; sourceTree = "<group>"; };
13A5324DF7E97814216C8036E610A238 /* UIScrollView+MJExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIScrollView+MJExtension.m"; path = "MJRefresh/UIScrollView+MJExtension.m"; sourceTree = "<group>"; };
13FC4E1ED1CCF58A44C5638276B62D01 /* AFNetworking-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AFNetworking-prefix.pch"; sourceTree = "<group>"; };
1425AB8C4AF0C63CA45AC0CBFA89094D /* MJRefresh-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "MJRefresh-Info.plist"; sourceTree = "<group>"; };
14CA1B0CBCD8E9A4B0AAE51AC472A18F /* YTKNetwork.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = YTKNetwork.modulemap; sourceTree = "<group>"; };
1566B0991C0DB7CABA189D2B0CDADC53 /* DKNightVersion-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DKNightVersion-prefix.pch"; sourceTree = "<group>"; };
15BF78C366276ABD9542330732B68312 /* MJRefreshComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshComponent.h; path = MJRefresh/Base/MJRefreshComponent.h; sourceTree = "<group>"; };
15E5F6E4398A87E1A0FD377FF75E144A /* LOTKeyframe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTKeyframe.h; path = "lottie-ios/Classes/AnimatableProperties/LOTKeyframe.h"; sourceTree = "<group>"; };
16A38B2A03F66049526108BDA69A42C7 /* LOTTransformInterpolator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTTransformInterpolator.h; path = "lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTTransformInterpolator.h"; sourceTree = "<group>"; };
17DB18B7E1254DFEFB138C96DA080689 /* YTKBatchRequestAgent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YTKBatchRequestAgent.m; path = YTKNetwork/YTKBatchRequestAgent.m; sourceTree = "<group>"; };
18CAF1B8E5AB31B44016CEE78582DBD0 /* Masonry.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Masonry.release.xcconfig; sourceTree = "<group>"; };
1927545D8353CC924CB06C6155221B75 /* DKNightVersionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DKNightVersionManager.m; path = DKNightVersion/Core/DKNightVersionManager.m; sourceTree = "<group>"; };
19FF690E63EDEF1B93CBFA9813C47910 /* LOTShapeRectangle.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTShapeRectangle.m; path = "lottie-ios/Classes/Models/LOTShapeRectangle.m"; sourceTree = "<group>"; };
1A48C755DC564041D0BF299E3121FDC9 /* Pods-DreamSleep-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-DreamSleep-dummy.m"; sourceTree = "<group>"; };
1B6BB70CB1057E6CAFFFE752D50CEF96 /* UIBarButtonItem+Night.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIBarButtonItem+Night.h"; path = "DKNightVersion/UIKit/UIBarButtonItem+Night.h"; sourceTree = "<group>"; };
1BA83D129865BE8B1AF244FFEE65B02C /* MJRefresh-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "MJRefresh-dummy.m"; sourceTree = "<group>"; };
1BE90946607E56A15EB7B62C033E3F3B /* MJRefreshHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshHeader.m; path = MJRefresh/Base/MJRefreshHeader.m; sourceTree = "<group>"; };
1C328988DC492AABE165FA2EFF74AA64 /* MASConstraintMaker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASConstraintMaker.m; path = Masonry/MASConstraintMaker.m; sourceTree = "<group>"; };
1D54139D007BCD21592C79C592FDAE13 /* AFSecurityPolicy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFSecurityPolicy.h; path = AFNetworking/AFSecurityPolicy.h; sourceTree = "<group>"; };
1D6DCC0DAB8511C62B997440AD091D94 /* LOTPathInterpolator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTPathInterpolator.m; path = "lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTPathInterpolator.m"; sourceTree = "<group>"; };
1D6F46AA0B22BCF108BE8206EC8A8996 /* Pods-DreamSleep.beta.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-DreamSleep.beta.xcconfig"; sourceTree = "<group>"; };
1E577153A43899B8C3580A621842D3B2 /* DKNightVersion-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DKNightVersion-umbrella.h"; sourceTree = "<group>"; };
1F2A25C4BB0A9B0F296F8DACEB31C15A /* MJRefreshBackFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackFooter.h; path = MJRefresh/Base/MJRefreshBackFooter.h; sourceTree = "<group>"; };
1FF0AD71FEBAE2EDDEF3107714DE93EB /* LOTShapeFill.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTShapeFill.h; path = "lottie-ios/Classes/Models/LOTShapeFill.h"; sourceTree = "<group>"; };
1FFD66BC92100926B149C59FEEDEBF33 /* LOTLayerContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTLayerContainer.h; path = "lottie-ios/Classes/AnimatableLayers/LOTLayerContainer.h"; sourceTree = "<group>"; };
1FFED36A657123030ABB700256D73F15 /* Masonry.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Masonry.framework; sourceTree = BUILT_PRODUCTS_DIR; };
20C968A600636E825BD62E66C6C62F15 /* MJRefreshConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshConst.h; path = MJRefresh/MJRefreshConst.h; sourceTree = "<group>"; };
20FB54EFACC3366F12145955160C3CA8 /* LOTBezierPath.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTBezierPath.m; path = "lottie-ios/Classes/Extensions/LOTBezierPath.m"; sourceTree = "<group>"; };
212F30C2E5C57C426C1E18DC50E63BF6 /* UICollectionViewLayout+MJRefresh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UICollectionViewLayout+MJRefresh.h"; path = "MJRefresh/UICollectionViewLayout+MJRefresh.h"; sourceTree = "<group>"; };
2423873A2F0D67DE8BF3DC377E8125EA /* LOTShapeTransform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTShapeTransform.h; path = "lottie-ios/Classes/Models/LOTShapeTransform.h"; sourceTree = "<group>"; };
25044363B352C1C215D420EF8D79BACB /* NSBundle+MJRefresh.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSBundle+MJRefresh.m"; path = "MJRefresh/NSBundle+MJRefresh.m"; sourceTree = "<group>"; };
26688DE1E374E4A15CB53692B52C6EF3 /* MJRefreshAutoStateFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoStateFooter.h; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.h; sourceTree = "<group>"; };
26A7A34A1E55B8F9A5EEEADB44837250 /* Masonry-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Masonry-prefix.pch"; sourceTree = "<group>"; };
29AEF782EF0DEC13019191C65321CEF0 /* MJRefresh-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MJRefresh-prefix.pch"; sourceTree = "<group>"; };
2A5FED7E560C1E8972402F7C17886408 /* MJRefreshBackGifFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackGifFooter.h; path = MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.h; sourceTree = "<group>"; };
2B1717540EBCE063707D442CB3F23B72 /* LOTCacheProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTCacheProvider.h; path = "lottie-ios/Classes/PublicHeaders/LOTCacheProvider.h"; sourceTree = "<group>"; };
2C16E3F8406BCFF90AEDE9084D643140 /* LOTKeypath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTKeypath.h; path = "lottie-ios/Classes/PublicHeaders/LOTKeypath.h"; sourceTree = "<group>"; };
2C48CE3076FA22F67899C70105E863B1 /* LOTShapeRepeater.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTShapeRepeater.h; path = "lottie-ios/Classes/Models/LOTShapeRepeater.h"; sourceTree = "<group>"; };
2C4A4CE324BEC680FFEFFD8669F0CE36 /* UIProgressView+Night.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIProgressView+Night.h"; path = "DKNightVersion/UIKit/UIProgressView+Night.h"; sourceTree = "<group>"; };
2D03CCAA3C10669FA9B7D47458B0F216 /* LOTAnimatedSwitch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTAnimatedSwitch.m; path = "lottie-ios/Classes/Private/LOTAnimatedSwitch.m"; sourceTree = "<group>"; };
2D340B23656249148D2C43A955AD30AD /* LOTMask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTMask.m; path = "lottie-ios/Classes/Models/LOTMask.m"; sourceTree = "<group>"; };
2DF863F55AFEDEAE310363D1C1B94DD5 /* MASLayoutConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASLayoutConstraint.m; path = Masonry/MASLayoutConstraint.m; sourceTree = "<group>"; };
2E9CC59C3DC5B781CE4536CC53B93BDA /* MJRefresh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefresh.h; path = MJRefresh/MJRefresh.h; sourceTree = "<group>"; };
31672F6B4D711C30719B8F128B21DA0E /* Pods-DreamSleep-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-DreamSleep-frameworks.sh"; sourceTree = "<group>"; };
322FFBA62CB415442F0D0123534572BE /* UIControl+Night.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIControl+Night.m"; path = "DKNightVersion/UIKit/UIControl+Night.m"; sourceTree = "<group>"; };
3335C433E09BE753EE38ED82C295A7C6 /* UINavigationBar+Animation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UINavigationBar+Animation.m"; path = "DKNightVersion/Manual/UINavigationBar+Animation.m"; sourceTree = "<group>"; };
35ABA512D22A2B1FDA2B7FB6AF080DFC /* MASConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASConstraint.m; path = Masonry/MASConstraint.m; sourceTree = "<group>"; };
3755996DA506B418D3442283537CC762 /* LOTCompositionContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTCompositionContainer.m; path = "lottie-ios/Classes/AnimatableLayers/LOTCompositionContainer.m"; sourceTree = "<group>"; };
37C161441DA4F4495EA809A3AD08CFF3 /* MJRefreshTrailer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshTrailer.h; path = MJRefresh/Base/MJRefreshTrailer.h; sourceTree = "<group>"; };
37D06DE028CB02FC13F18419F7A64004 /* UITextView+Night.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UITextView+Night.m"; path = "DKNightVersion/UIKit/UITextView+Night.m"; sourceTree = "<group>"; };
3A426F82C42814A6AE724D75CA99938C /* LOTPolygonAnimator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTPolygonAnimator.m; path = "lottie-ios/Classes/RenderSystem/AnimatorNodes/LOTPolygonAnimator.m"; sourceTree = "<group>"; };
3C1E25B193D8B32AF756EE90A20A912B /* DKColorTable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DKColorTable.m; path = DKNightVersion/ColorTable/DKColorTable.m; sourceTree = "<group>"; };
3C25A65E12B6E66FCB8F5A5BE38BD116 /* AFNetworking-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AFNetworking-umbrella.h"; sourceTree = "<group>"; };
3C2B8FC81568645FDBF4A0E550463D05 /* lottie-ios-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "lottie-ios-umbrella.h"; sourceTree = "<group>"; };
3CF45FFE9513C3706D5EEE9F23D8F87C /* UICollectionViewLayout+MJRefresh.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UICollectionViewLayout+MJRefresh.m"; path = "MJRefresh/UICollectionViewLayout+MJRefresh.m"; sourceTree = "<group>"; };
3D3ADF6280CDB9E14E0235C20A166A01 /* LOTCircleAnimator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTCircleAnimator.m; path = "lottie-ios/Classes/RenderSystem/AnimatorNodes/LOTCircleAnimator.m"; sourceTree = "<group>"; };
3D9819669CAEBFBF189A321C65487463 /* DKColor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DKColor.h; path = DKNightVersion/Core/DKColor.h; sourceTree = "<group>"; };
3EA3FE9514517DAB2D1F47ED84C89318 /* Pods-DreamSleep-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-DreamSleep-acknowledgements.plist"; sourceTree = "<group>"; };
3EA87D5FFD821E2A3092CDC6CD1D68EB /* LOTArrayInterpolator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTArrayInterpolator.h; path = "lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTArrayInterpolator.h"; sourceTree = "<group>"; };
3F1F73CDE2A7DB3FB55E7DA6AA75422F /* LOTPathInterpolator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTPathInterpolator.h; path = "lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTPathInterpolator.h"; sourceTree = "<group>"; };
3F217C54F64BD0BEF70A00D6B6942290 /* NSObject+Night.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+Night.h"; path = "DKNightVersion/Core/NSObject+Night.h"; sourceTree = "<group>"; };
3F5B6B64FD034FB2D27E2D0E577F2F91 /* AFHTTPSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFHTTPSessionManager.h; path = AFNetworking/AFHTTPSessionManager.h; sourceTree = "<group>"; };
3F7334FC119CB25E3AFE12DF09F938CF /* lottie-ios-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "lottie-ios-dummy.m"; sourceTree = "<group>"; };
3FC66C726F9D1A05CB12B40FB2EB45B3 /* UITabBar+Night.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UITabBar+Night.m"; path = "DKNightVersion/UIKit/UITabBar+Night.m"; sourceTree = "<group>"; };
4095AE9D9FCDFA960BCC3F9F141E4946 /* UIView+Night.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+Night.m"; path = "DKNightVersion/UIKit/UIView+Night.m"; sourceTree = "<group>"; };
40D938A4E19DD05D98CFE48BAD40FD4F /* 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>"; };
411872A1FAE3CDF9390F47D6D9F7F56A /* Masonry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Masonry.h; path = Masonry/Masonry.h; sourceTree = "<group>"; };
413A82ABF0C0C76A19EF04FED62119F5 /* NSLayoutConstraint+MASDebugAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSLayoutConstraint+MASDebugAdditions.h"; path = "Masonry/NSLayoutConstraint+MASDebugAdditions.h"; sourceTree = "<group>"; };
419415F71F3AE160EAF60136E4D215E8 /* LOTPointInterpolator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTPointInterpolator.h; path = "lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTPointInterpolator.h"; sourceTree = "<group>"; };
428248F1614ED960097FD835AA4E677F /* AFURLResponseSerialization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFURLResponseSerialization.m; path = AFNetworking/AFURLResponseSerialization.m; sourceTree = "<group>"; };
434E0C8B0AE9DA8CCC89E971F43EDC7E /* DKColorTable.txt */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = DKColorTable.txt; path = DKNightVersion/ColorTable/DKColorTable.txt; sourceTree = "<group>"; };
437C4F941CFCBF7FEA1B646B040ECDB1 /* YTKRequestEventAccessory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YTKRequestEventAccessory.h; path = YTKNetwork/YTKRequestEventAccessory.h; sourceTree = "<group>"; };
4397B175B5E5E57C857098E054550B3D /* MASLayoutConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASLayoutConstraint.h; path = Masonry/MASLayoutConstraint.h; sourceTree = "<group>"; };
445B5A172A9BDB77674555B889407BD4 /* MJRefreshBackNormalFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackNormalFooter.m; path = MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.m; sourceTree = "<group>"; };
469130FC0EADDD1694316D32CAFB669C /* UINavigationBar+Night.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UINavigationBar+Night.h"; path = "DKNightVersion/UIKit/UINavigationBar+Night.h"; sourceTree = "<group>"; };
4AB400958E4B7006BD94A4B4474658D2 /* 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; };
4B0AE4F2C9486F01B02DAE031C6F6DF3 /* UIColor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UIColor.m; path = "lottie-ios/Classes/MacCompatibility/UIColor.m"; sourceTree = "<group>"; };
4C63195B17057B4EFA016CA689E3613A /* MJRefreshStateTrailer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshStateTrailer.h; path = MJRefresh/Custom/Trailer/MJRefreshStateTrailer.h; sourceTree = "<group>"; };
4C82ECD42D6BFBABD0B98432782877C2 /* 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>"; };
4C885C921341A76558059347A240D7A2 /* YTKBaseRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YTKBaseRequest.m; path = YTKNetwork/YTKBaseRequest.m; sourceTree = "<group>"; };
4CC21A42C6735FBF6A7364310AD7E2B3 /* DKNightVersion.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DKNightVersion.modulemap; sourceTree = "<group>"; };
4EEE47F47E6D04E29FBE7E09D4A1CCDC /* YTKNetworkPrivate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YTKNetworkPrivate.m; path = YTKNetwork/YTKNetworkPrivate.m; sourceTree = "<group>"; };
513A5A4B9156B9A00DCFC5E08A81FAC3 /* LOTGradientFillRender.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTGradientFillRender.h; path = "lottie-ios/Classes/RenderSystem/RenderNodes/LOTGradientFillRender.h"; sourceTree = "<group>"; };
514420A76EB3160AF5A0C38481A2B32B /* MJRefreshHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshHeader.h; path = MJRefresh/Base/MJRefreshHeader.h; sourceTree = "<group>"; };
51BA97E8B5085EFFB47BC9C0B785CEA7 /* Lottie.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Lottie.framework; sourceTree = BUILT_PRODUCTS_DIR; };
532DA45C34FBFD5D3B2F4C1E00DC890E /* LOTShapeTrimPath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTShapeTrimPath.h; path = "lottie-ios/Classes/Models/LOTShapeTrimPath.h"; sourceTree = "<group>"; };
53DC3490B7639337FD3A77BE6294E3F6 /* DKAlpha.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DKAlpha.h; path = DKNightVersion/Core/DKAlpha.h; sourceTree = "<group>"; };
54DCCF8ADE70B7EF2160D30D40C377D1 /* UIControl+Night.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIControl+Night.h"; path = "DKNightVersion/UIKit/UIControl+Night.h"; sourceTree = "<group>"; };
56FC62E65B302135B9640D82BF2B5108 /* UINavigationBar+Animation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UINavigationBar+Animation.h"; path = "DKNightVersion/Manual/UINavigationBar+Animation.h"; sourceTree = "<group>"; };
57DB92AF3F4BD600FC075F01F4E5F46F /* YTKNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YTKNetwork.h; path = YTKNetwork/YTKNetwork.h; sourceTree = "<group>"; };
58404D88700B3D02419817ECC9358686 /* MASViewAttribute.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASViewAttribute.m; path = Masonry/MASViewAttribute.m; sourceTree = "<group>"; };
5861B83E5F354A3BC5E6428BE4FF7337 /* LOTShapeRectangle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTShapeRectangle.h; path = "lottie-ios/Classes/Models/LOTShapeRectangle.h"; sourceTree = "<group>"; };
5885A3646E95D545186619C3DDEB5467 /* LOTShapeStroke.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTShapeStroke.m; path = "lottie-ios/Classes/Models/LOTShapeStroke.m"; sourceTree = "<group>"; };
59E9F8723D6843A6912D76B9E5CA97D6 /* MJRefresh-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MJRefresh-umbrella.h"; sourceTree = "<group>"; };
59F7512C2D436D1CC741CBF9AA66FCFD /* LOTLayer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTLayer.m; path = "lottie-ios/Classes/Models/LOTLayer.m"; sourceTree = "<group>"; };
5C2127286632A27550A1D4643BCFD73C /* Masonry.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Masonry.modulemap; sourceTree = "<group>"; };
5CEDA2240351E9F121D19748045077D8 /* YTKBatchRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YTKBatchRequest.m; path = YTKNetwork/YTKBatchRequest.m; sourceTree = "<group>"; };
5D6DA6F4B61C0AD832A7FD3EF9882B0B /* LOTShapeStroke.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTShapeStroke.h; path = "lottie-ios/Classes/Models/LOTShapeStroke.h"; sourceTree = "<group>"; };
5DC4838253371635F65F848DBBE7D43C /* UIScrollView+MJExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIScrollView+MJExtension.h"; path = "MJRefresh/UIScrollView+MJExtension.h"; sourceTree = "<group>"; };
5E2A7FEEBE47A89B865B329279D5B4FB /* MJRefreshStateHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshStateHeader.h; path = MJRefresh/Custom/Header/MJRefreshStateHeader.h; sourceTree = "<group>"; };
5E32248877F9FAF43DF3C58EAD186D2F /* Pods-DreamSleep-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-DreamSleep-acknowledgements.markdown"; sourceTree = "<group>"; };
5E8DFA567CD4B2213E2445D326B4E150 /* UISlider+Night.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UISlider+Night.m"; path = "DKNightVersion/UIKit/UISlider+Night.m"; sourceTree = "<group>"; };
5EE87EFABDE32C86442DEB1A77473129 /* LOTPolystarAnimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTPolystarAnimator.h; path = "lottie-ios/Classes/RenderSystem/AnimatorNodes/LOTPolystarAnimator.h"; sourceTree = "<group>"; };
5FC85FD9AD0AAC09998353E4B9FF5F89 /* CAShapeLayer+Night.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "CAShapeLayer+Night.m"; path = "DKNightVersion/CoreAnimation/CAShapeLayer+Night.m"; sourceTree = "<group>"; };
5FDF9B2A2446F661EF0E33CA2A80328E /* YTKChainRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YTKChainRequest.h; path = YTKNetwork/YTKChainRequest.h; sourceTree = "<group>"; };
601EEA66C9A6080A11C1ADE5E2A91AE1 /* YTKNetwork */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = YTKNetwork; path = YTKNetwork.framework; sourceTree = BUILT_PRODUCTS_DIR; };
60F87E7BFAC07776CC05B07E19CEDB79 /* MJRefreshGifHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshGifHeader.m; path = MJRefresh/Custom/Header/MJRefreshGifHeader.m; sourceTree = "<group>"; };
60F9B7A2F46A49A50C3F3FF313FC33F9 /* LOTAssetGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTAssetGroup.m; path = "lottie-ios/Classes/Models/LOTAssetGroup.m"; sourceTree = "<group>"; };
61F6B6C07DE841F54CA372CA4970CD45 /* LOTAnimatedSwitch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTAnimatedSwitch.h; path = "lottie-ios/Classes/PublicHeaders/LOTAnimatedSwitch.h"; sourceTree = "<group>"; };
629704C1423EF0AB16056BA752C8ED0D /* LOTMask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTMask.h; path = "lottie-ios/Classes/Models/LOTMask.h"; sourceTree = "<group>"; };
62AA60601130FBEEB90ED44E4CEB2518 /* UIProgressView+Night.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIProgressView+Night.m"; path = "DKNightVersion/UIKit/UIProgressView+Night.m"; sourceTree = "<group>"; };
63989A571BEB18EA0AD4EB887056803B /* 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>"; };
63D477E7D3FDF686287CD0ECA3934EE6 /* LOTValueCallback.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTValueCallback.m; path = "lottie-ios/Classes/Private/LOTValueCallback.m"; sourceTree = "<group>"; };
657A5C8E6427E7B940554999906C79CF /* LOTShapeFill.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTShapeFill.m; path = "lottie-ios/Classes/Models/LOTShapeFill.m"; sourceTree = "<group>"; };
65939C65BE38659EAB3AFA606FC69B16 /* YTKNetworkConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YTKNetworkConfig.m; path = YTKNetwork/YTKNetworkConfig.m; sourceTree = "<group>"; };
6677657818B4CD33859C735FA5A26987 /* LOTRoundedRectAnimator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTRoundedRectAnimator.m; path = "lottie-ios/Classes/RenderSystem/AnimatorNodes/LOTRoundedRectAnimator.m"; sourceTree = "<group>"; };
6682A146F9E899129E28B1CBD7F757B8 /* NSObject+DeallocBlock.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+DeallocBlock.m"; path = "DKNightVersion/DeallocBlockExecutor/NSObject+DeallocBlock.m"; sourceTree = "<group>"; };
672898D36A06C60379E23B27A0705367 /* YTKBatchRequestAgent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YTKBatchRequestAgent.h; path = YTKNetwork/YTKBatchRequestAgent.h; sourceTree = "<group>"; };
68573A63DD39B62FE238553BABDA8404 /* View+MASAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "View+MASAdditions.m"; path = "Masonry/View+MASAdditions.m"; sourceTree = "<group>"; };
68F034394A9197A08BC51EB02D9F343A /* Pods-DreamSleep.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-DreamSleep.debug.xcconfig"; sourceTree = "<group>"; };
69997A0548E05FFD48AA25A43B7BF208 /* UINavigationBar+Night.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UINavigationBar+Night.m"; path = "DKNightVersion/UIKit/UINavigationBar+Night.m"; sourceTree = "<group>"; };
69F447C0BC3E1578D9C89913516B9E1A /* MJRefreshNormalHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshNormalHeader.h; path = MJRefresh/Custom/Header/MJRefreshNormalHeader.h; sourceTree = "<group>"; };
6A9A4CFD03C9F4FB84D8777D6CEB6633 /* MJRefreshBackFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackFooter.m; path = MJRefresh/Base/MJRefreshBackFooter.m; sourceTree = "<group>"; };
6B3DA8B65E8CD8282ED363FADFA93EB3 /* MJRefreshNormalTrailer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshNormalTrailer.h; path = MJRefresh/Custom/Trailer/MJRefreshNormalTrailer.h; sourceTree = "<group>"; };
6C41B36801E027339CE4C7E903480DA4 /* DKAlpha.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DKAlpha.m; path = DKNightVersion/Core/DKAlpha.m; sourceTree = "<group>"; };
6C438BB4003E8A6AD1D759CF9B4933BB /* DKImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DKImage.m; path = DKNightVersion/Core/DKImage.m; sourceTree = "<group>"; };
6CE07551088B749294EAA7EA21500C6F /* lottie-ios.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "lottie-ios.release.xcconfig"; sourceTree = "<group>"; };
6EBA5F8694EC76C8B282CBA47637267B /* YTKChainRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YTKChainRequest.m; path = YTKNetwork/YTKChainRequest.m; sourceTree = "<group>"; };
6F9AFC91877EE0F6E428E58B693BE3E7 /* UIScrollView+MJRefresh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIScrollView+MJRefresh.h"; path = "MJRefresh/UIScrollView+MJRefresh.h"; sourceTree = "<group>"; };
6FAA583C5413C657BAD2C69B439E761F /* AFURLSessionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFURLSessionManager.m; path = AFNetworking/AFURLSessionManager.m; sourceTree = "<group>"; };
6FE6004CC1577966DD80799C7531EA79 /* LOTRenderGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTRenderGroup.h; path = "lottie-ios/Classes/RenderSystem/RenderNodes/LOTRenderGroup.h"; sourceTree = "<group>"; };
6FF62ADD021803DFB665E5269954E541 /* LOTCircleAnimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTCircleAnimator.h; path = "lottie-ios/Classes/RenderSystem/AnimatorNodes/LOTCircleAnimator.h"; sourceTree = "<group>"; };
706B236F116AADE05F19B126DD74EDC5 /* AFNetworkReachabilityManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFNetworkReachabilityManager.m; path = AFNetworking/AFNetworkReachabilityManager.m; sourceTree = "<group>"; };
70C7E4A91D914EA3FECE16CA3D25F7E9 /* AFURLResponseSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFURLResponseSerialization.h; path = AFNetworking/AFURLResponseSerialization.h; sourceTree = "<group>"; };
7122DC1E5162A0203C2706F4A3A040CD /* YTKNetworkConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YTKNetworkConfig.h; path = YTKNetwork/YTKNetworkConfig.h; sourceTree = "<group>"; };
7163D2F5FC7906B94D1069EC69561F9A /* CoreAnimation+Night.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "CoreAnimation+Night.h"; path = "DKNightVersion/CoreAnimation/CoreAnimation+Night.h"; sourceTree = "<group>"; };
73339B1AEE682F357EBD16E7A7D6BE94 /* UIToolbar+Night.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIToolbar+Night.m"; path = "DKNightVersion/UIKit/UIToolbar+Night.m"; sourceTree = "<group>"; };
735877C35A6FD8E224DAFFE1E089FF42 /* lottie-ios.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "lottie-ios.debug.xcconfig"; sourceTree = "<group>"; };
7448354F5D670DC0E178E1979B3F4D30 /* MJRefreshConst.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshConst.m; path = MJRefresh/MJRefreshConst.m; sourceTree = "<group>"; };
745D34345D0D846EE1AF419968F8EC4F /* YTKChainRequestAgent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YTKChainRequestAgent.m; path = YTKNetwork/YTKChainRequestAgent.m; sourceTree = "<group>"; };
7497A6F3BB36D327AECC68884A846B4C /* NSBundle+MJRefresh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSBundle+MJRefresh.h"; path = "MJRefresh/NSBundle+MJRefresh.h"; sourceTree = "<group>"; };
750C5122755F1BE935876FE7CAFA3AB0 /* LOTShapeGradientFill.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTShapeGradientFill.m; path = "lottie-ios/Classes/Models/LOTShapeGradientFill.m"; sourceTree = "<group>"; };
75A90DEF943AB925A19EFEF587A9BEB1 /* 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>"; };
76AF1E94A63621773F2B09FF01304AF5 /* LOTNumberInterpolator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTNumberInterpolator.h; path = "lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTNumberInterpolator.h"; sourceTree = "<group>"; };
76F2A58EC94F2019FCB4B163AED83395 /* MASCompositeConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASCompositeConstraint.m; path = Masonry/MASCompositeConstraint.m; sourceTree = "<group>"; };
774BD8258EDF17185BE74E946ECB82C8 /* LOTValueInterpolator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTValueInterpolator.m; path = "lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTValueInterpolator.m"; sourceTree = "<group>"; };
776AB9FBFAC0292754A430124BFAF70F /* YTKBatchRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YTKBatchRequest.h; path = YTKNetwork/YTKBatchRequest.h; sourceTree = "<group>"; };
778E15F896CC84E97F9EC5DEA5260CB6 /* YTKBaseRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YTKBaseRequest.h; path = YTKNetwork/YTKBaseRequest.h; sourceTree = "<group>"; };
77BC0D258D2D5BB62E2674E91CE6CDF3 /* AFSecurityPolicy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFSecurityPolicy.m; path = AFNetworking/AFSecurityPolicy.m; sourceTree = "<group>"; };
77DED69D95F694D05F100092E12F69D8 /* NSArray+MASAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSArray+MASAdditions.h"; path = "Masonry/NSArray+MASAdditions.h"; sourceTree = "<group>"; };
783C02520ED8C2081A31E335E7CDE698 /* UILabel+Night.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UILabel+Night.m"; path = "DKNightVersion/UIKit/UILabel+Night.m"; sourceTree = "<group>"; };
78B6013B9756331B3B476CD7C24E6602 /* LOTTransformInterpolator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTTransformInterpolator.m; path = "lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTTransformInterpolator.m"; sourceTree = "<group>"; };
7C91CB4CDDC840A33AB641A7434DAC57 /* LOTBlockCallback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTBlockCallback.h; path = "lottie-ios/Classes/PublicHeaders/LOTBlockCallback.h"; sourceTree = "<group>"; };
7E6950707CFC0E9B2AA716CB285D6D6D /* YTKNetwork.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = YTKNetwork.debug.xcconfig; sourceTree = "<group>"; };
7EA749E281C87CC1E133B3C179943486 /* LOTRoundedRectAnimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTRoundedRectAnimator.h; path = "lottie-ios/Classes/RenderSystem/AnimatorNodes/LOTRoundedRectAnimator.h"; sourceTree = "<group>"; };
7F0FA16019AB32BB2AFB1766061A7FD7 /* YTKRequestEventAccessory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YTKRequestEventAccessory.m; path = YTKNetwork/YTKRequestEventAccessory.m; sourceTree = "<group>"; };
7F5CF98A18F27F2BC294DF8EAE8D7114 /* LOTGradientFillRender.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTGradientFillRender.m; path = "lottie-ios/Classes/RenderSystem/RenderNodes/LOTGradientFillRender.m"; sourceTree = "<group>"; };
811BDB3E8170C9B642FB15CE81D0C389 /* UISearchBar+Night.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UISearchBar+Night.m"; path = "DKNightVersion/UIKit/UISearchBar+Night.m"; sourceTree = "<group>"; };
814071E69C4B113B6DFED00713B3137F /* UILabel+Night.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UILabel+Night.h"; path = "DKNightVersion/UIKit/UILabel+Night.h"; sourceTree = "<group>"; };
832AE0A5DD82855E42538DD89911CEC2 /* NSObject+Night.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+Night.m"; path = "DKNightVersion/Core/NSObject+Night.m"; sourceTree = "<group>"; };
8380A9D2228B9213EBCBEAD77053FEB7 /* MJRefresh.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = MJRefresh.bundle; path = MJRefresh/MJRefresh.bundle; sourceTree = "<group>"; };
83C5185771D11D1B3A9DB98E1DEBFC96 /* UITextField+Keyboard.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UITextField+Keyboard.m"; path = "DKNightVersion/Manual/UITextField+Keyboard.m"; sourceTree = "<group>"; };
8412ABE94492D25B192011885146AB69 /* AFNetworking.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AFNetworking.release.xcconfig; sourceTree = "<group>"; };
85AABC317BAB20D0C4892DB350158B85 /* AFCompatibilityMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFCompatibilityMacros.h; path = AFNetworking/AFCompatibilityMacros.h; sourceTree = "<group>"; };
85FC7C983C07C14EA0BFBC3701AA68C7 /* LOTMaskContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTMaskContainer.h; path = "lottie-ios/Classes/AnimatableLayers/LOTMaskContainer.h"; sourceTree = "<group>"; };
8641E9F9D2C121BF7EEB9C06C5D37BF2 /* AFNetworking-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "AFNetworking-Info.plist"; sourceTree = "<group>"; };
86518BEE578251117498AC5AAB59101D /* MJRefreshAutoNormalFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoNormalFooter.m; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.m; sourceTree = "<group>"; };
874EAD6EF5083404B31F568DD7FB6131 /* UITextField+Night.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UITextField+Night.m"; path = "DKNightVersion/UIKit/UITextField+Night.m"; sourceTree = "<group>"; };
883C8246FD05666876F57B0FF767D070 /* UISearchBar+Keyboard.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UISearchBar+Keyboard.m"; path = "DKNightVersion/Manual/UISearchBar+Keyboard.m"; sourceTree = "<group>"; };
88D1D7CE4AB9AAC8E79C92EBC79E622D /* UIBezierPath.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UIBezierPath.m; path = "lottie-ios/Classes/MacCompatibility/UIBezierPath.m"; sourceTree = "<group>"; };
89FE2622656DF7063F1EC7EA4A16BBE6 /* LOTBezierPath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTBezierPath.h; path = "lottie-ios/Classes/Extensions/LOTBezierPath.h"; sourceTree = "<group>"; };
8A04190846252793512C7E23AA24D4F0 /* LOTKeyframe.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTKeyframe.m; path = "lottie-ios/Classes/AnimatableProperties/LOTKeyframe.m"; sourceTree = "<group>"; };
8B95573967C4CA86B45B589A3C932A17 /* NSLayoutConstraint+MASDebugAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSLayoutConstraint+MASDebugAdditions.m"; path = "Masonry/NSLayoutConstraint+MASDebugAdditions.m"; sourceTree = "<group>"; };
8BE1170959B2A00FA997450E40C2B29B /* LOTRepeaterRenderer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTRepeaterRenderer.m; path = "lottie-ios/Classes/RenderSystem/RenderNodes/LOTRepeaterRenderer.m"; sourceTree = "<group>"; };
8CA091E5938D62587F8B0B0C32710316 /* LOTHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTHelpers.h; path = "lottie-ios/Classes/Extensions/LOTHelpers.h"; sourceTree = "<group>"; };
8CCD7034588C6308E145A85D523AF390 /* MASUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASUtilities.h; path = Masonry/MASUtilities.h; sourceTree = "<group>"; };
8EED1BDED6513C44791E99A442AF3643 /* DKDeallocBlockExecutor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DKDeallocBlockExecutor.m; path = DKNightVersion/DeallocBlockExecutor/DKDeallocBlockExecutor.m; sourceTree = "<group>"; };
8EF4CBD26353C1C96F54ABE037E6C8D5 /* LOTInterpolatorCallback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTInterpolatorCallback.h; path = "lottie-ios/Classes/PublicHeaders/LOTInterpolatorCallback.h"; sourceTree = "<group>"; };
8F4D1BE391F5BE881FDB3A83B9B80FE6 /* MJRefresh.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = MJRefresh.modulemap; sourceTree = "<group>"; };
8F69D7314FA372A5CDA43E45AF533F2B /* MJRefreshConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshConfig.h; path = MJRefresh/MJRefreshConfig.h; sourceTree = "<group>"; };
8F9F2DC8524D6E571C4C3F659DE9C63D /* View+MASShorthandAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "View+MASShorthandAdditions.h"; path = "Masonry/View+MASShorthandAdditions.h"; sourceTree = "<group>"; };
90113D6F483EF84D6564A09EDDC41605 /* LOTRenderNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTRenderNode.m; path = "lottie-ios/Classes/RenderSystem/LOTRenderNode.m"; sourceTree = "<group>"; };
901293E446E7FBB2D4742492A25557B2 /* LOTLayerGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTLayerGroup.m; path = "lottie-ios/Classes/Models/LOTLayerGroup.m"; sourceTree = "<group>"; };
9087CF6CC5B1DC7AE436CC83D09814BF /* Masonry.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Masonry.debug.xcconfig; sourceTree = "<group>"; };
912E3EB6481AD3F973E40DADB00C3918 /* MJRefreshStateTrailer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshStateTrailer.m; path = MJRefresh/Custom/Trailer/MJRefreshStateTrailer.m; sourceTree = "<group>"; };
91E0189ED1D4040FE47F1B26DA12AF16 /* MJRefreshConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshConfig.m; path = MJRefresh/MJRefreshConfig.m; sourceTree = "<group>"; };
928B367255E2A8B5583A35B28C3A600D /* LOTShapeGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTShapeGroup.h; path = "lottie-ios/Classes/Models/LOTShapeGroup.h"; sourceTree = "<group>"; };
92E65603E9B9A0C3EE1B358F5B0C3112 /* UIScrollView+MJRefresh.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIScrollView+MJRefresh.m"; path = "MJRefresh/UIScrollView+MJRefresh.m"; sourceTree = "<group>"; };
94120A594145ADBF2C9B8808FAC69F94 /* UIButton+Night.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIButton+Night.m"; path = "DKNightVersion/Manual/UIButton+Night.m"; sourceTree = "<group>"; };
94FB8EA60AE48C9CDC2EE2689622ED61 /* UITextField+Night.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UITextField+Night.h"; path = "DKNightVersion/UIKit/UITextField+Night.h"; sourceTree = "<group>"; };
95084E2ED1061A2B34985E775A6053D1 /* LOTShapeRepeater.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTShapeRepeater.m; path = "lottie-ios/Classes/Models/LOTShapeRepeater.m"; sourceTree = "<group>"; };
95D080D049DE0ED94BECB1357EBC1A07 /* lottie-ios-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "lottie-ios-prefix.pch"; sourceTree = "<group>"; };
962C7E4760BB74FAEE1930216F091561 /* LOTCacheProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTCacheProvider.m; path = "lottie-ios/Classes/Private/LOTCacheProvider.m"; sourceTree = "<group>"; };
9630547FEF1041179A0CCCC68A5F6D64 /* DKColor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DKColor.m; path = DKNightVersion/Core/DKColor.m; sourceTree = "<group>"; };
96EFA1AF485825E94F7CB0564379D041 /* lottie-ios.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "lottie-ios.modulemap"; sourceTree = "<group>"; };
97AE4BE4C872EB643E06646EFE308AE7 /* 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>"; };
98F06A61CAF0486DFFF0AB4A37997F9C /* AFNetworking.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AFNetworking.debug.xcconfig; sourceTree = "<group>"; };
993B9D20C4653F33CAB9538918E87AF7 /* LOTRenderGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTRenderGroup.m; path = "lottie-ios/Classes/RenderSystem/RenderNodes/LOTRenderGroup.m"; sourceTree = "<group>"; };
99498A147603A7A9E80704F5DFB7FC8F /* LOTLayerGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTLayerGroup.h; path = "lottie-ios/Classes/Models/LOTLayerGroup.h"; sourceTree = "<group>"; };
999C5839B57A1B51FF5F17CCF52A5993 /* MASConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASConstraint.h; path = Masonry/MASConstraint.h; sourceTree = "<group>"; };
999FD8670FA125B68D099344C5F13C0D /* UIView+Night.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+Night.h"; path = "DKNightVersion/UIKit/UIView+Night.h"; sourceTree = "<group>"; };
9A11DA8B07C3D0F7E87A91DF7CB2E6A0 /* YTKNetwork.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = YTKNetwork.release.xcconfig; sourceTree = "<group>"; };
9BD6F0B21CDAE9FA26016DC870A83047 /* Pods-DreamSleep */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-DreamSleep"; path = Pods_DreamSleep.framework; sourceTree = BUILT_PRODUCTS_DIR; };
9D1473D7FDD887A29242BB7E3C10D875 /* LOTCompositionContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTCompositionContainer.h; path = "lottie-ios/Classes/AnimatableLayers/LOTCompositionContainer.h"; sourceTree = "<group>"; };
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; };
9DF162EF229F5A8C80C0072CB2D17A4A /* DKNightVersionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DKNightVersionManager.h; path = DKNightVersion/Core/DKNightVersionManager.h; sourceTree = "<group>"; };
A1963CED2F06784620621B5D51B4A7E3 /* AFNetworking-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AFNetworking-dummy.m"; sourceTree = "<group>"; };
A1A57A01BE57889013BBB9BA0DF7C766 /* LOTLayer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTLayer.h; path = "lottie-ios/Classes/Models/LOTLayer.h"; sourceTree = "<group>"; };
A2E45E3E03516B2E3BEB532390ECEAEE /* LOTShapeCircle.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTShapeCircle.m; path = "lottie-ios/Classes/Models/LOTShapeCircle.m"; sourceTree = "<group>"; };
A2FA167EBBBE574A7E9FFB7A89A34745 /* 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>"; };
A38157B01CC1AAD38A17AFF8611FCF76 /* YTKNetworkAgent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YTKNetworkAgent.m; path = YTKNetwork/YTKNetworkAgent.m; sourceTree = "<group>"; };
A38F5EA757315A0F106468FFAF09AF9E /* MJRefresh.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MJRefresh.debug.xcconfig; sourceTree = "<group>"; };
A3D519128C737D7B273A5E6131CB7B80 /* MJRefreshAutoStateFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoStateFooter.m; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.m; sourceTree = "<group>"; };
A44271C12DFED4D479F34451A91F7B14 /* YTKNetwork-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "YTKNetwork-Info.plist"; sourceTree = "<group>"; };
A4A2A63298AC736EF9C67F3FB0D51C60 /* UISwitch+Night.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UISwitch+Night.h"; path = "DKNightVersion/UIKit/UISwitch+Night.h"; sourceTree = "<group>"; };
A4FA15D44DF6BAC7550EDEED10862AA3 /* AFNetworking */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = AFNetworking; path = AFNetworking.framework; sourceTree = BUILT_PRODUCTS_DIR; };
A58ECDE40DC139D8CC7C8C5ED217B7F1 /* YTKRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YTKRequest.h; path = YTKNetwork/YTKRequest.h; sourceTree = "<group>"; };
A61E6DCEF33FA643F864B5D21667B2E3 /* DKColorTable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DKColorTable.h; path = DKNightVersion/ColorTable/DKColorTable.h; sourceTree = "<group>"; };
A683AFE58658DD38FFF2BC306B542322 /* CAShapeLayer+Night.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "CAShapeLayer+Night.h"; path = "DKNightVersion/CoreAnimation/CAShapeLayer+Night.h"; sourceTree = "<group>"; };
A6BC90D70B0EECC35860A3839FB6338E /* LOTColorInterpolator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTColorInterpolator.m; path = "lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTColorInterpolator.m"; sourceTree = "<group>"; };
A6E27DCE325279E7A18A7EB8C5DF7277 /* LOTShapeTrimPath.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTShapeTrimPath.m; path = "lottie-ios/Classes/Models/LOTShapeTrimPath.m"; sourceTree = "<group>"; };
A751E8AD026BF002A645C697EE62F3F5 /* MJRefreshStateHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshStateHeader.m; path = MJRefresh/Custom/Header/MJRefreshStateHeader.m; sourceTree = "<group>"; };
A9275B558E6DEC65D9FFA3272B0AC0DA /* MASViewConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASViewConstraint.m; path = Masonry/MASViewConstraint.m; sourceTree = "<group>"; };
AA0E5EB8EDE01409230D6BF877DE6A7D /* UIView+MJExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+MJExtension.m"; path = "MJRefresh/UIView+MJExtension.m"; sourceTree = "<group>"; };
AA825EEB6529E0C610518AB296CF8037 /* LOTShapeStar.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTShapeStar.m; path = "lottie-ios/Classes/Models/LOTShapeStar.m"; sourceTree = "<group>"; };
AA912DBC1C25C68174C418AA66370ED0 /* CALayer+Night.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "CALayer+Night.h"; path = "DKNightVersion/CoreAnimation/CALayer+Night.h"; sourceTree = "<group>"; };
AC6D4A58AF70FAFDF109452A0941B785 /* LOTBezierData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTBezierData.h; path = "lottie-ios/Classes/AnimatableProperties/LOTBezierData.h"; sourceTree = "<group>"; };
ACE0D286DDC354BF776ACDBE625A6331 /* UITableView+Night.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UITableView+Night.m"; path = "DKNightVersion/UIKit/UITableView+Night.m"; sourceTree = "<group>"; };
ADD1EA0F5091C1B5B011B8E49FA5061E /* NSObject+DeallocBlock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+DeallocBlock.h"; path = "DKNightVersion/DeallocBlockExecutor/NSObject+DeallocBlock.h"; sourceTree = "<group>"; };
AECDEDF270760B0ADEB6917FCE9BCCFC /* Lottie.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Lottie.h; path = "lottie-ios/Classes/PublicHeaders/Lottie.h"; sourceTree = "<group>"; };
AF562FF67ADA7CBB265000C8BC055B11 /* 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>"; };
AF6909BDBAE32A84F83BCC774B6593A9 /* LOTComposition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTComposition.m; path = "lottie-ios/Classes/Private/LOTComposition.m"; sourceTree = "<group>"; };
B07A0CCA0FD26287B6F079CF2A486F7A /* LOTRadialGradientLayer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTRadialGradientLayer.h; path = "lottie-ios/Classes/Extensions/LOTRadialGradientLayer.h"; sourceTree = "<group>"; };
B1F9266AF0ABA7D0F083FC9834DAF805 /* MASConstraintMaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASConstraintMaker.h; path = Masonry/MASConstraintMaker.h; sourceTree = "<group>"; };
B2A82D85E708C60B2CFC885E577B16FB /* LOTNumberInterpolator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTNumberInterpolator.m; path = "lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTNumberInterpolator.m"; sourceTree = "<group>"; };
B3203EDC0FAFF60C23194D7C08095C71 /* UIColor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UIColor.h; path = "lottie-ios/Classes/MacCompatibility/UIColor.h"; sourceTree = "<group>"; };
B44B47AEEE32236079943734BB90FE84 /* LOTShapeGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTShapeGroup.m; path = "lottie-ios/Classes/Models/LOTShapeGroup.m"; sourceTree = "<group>"; };
B4A2B6CD0BD774F904895EB7041CDE5F /* LOTTrimPathNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTTrimPathNode.h; path = "lottie-ios/Classes/RenderSystem/ManipulatorNodes/LOTTrimPathNode.h"; sourceTree = "<group>"; };
B5383896378A8C9BA4B5597E6CEA9D57 /* LOTPointInterpolator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTPointInterpolator.m; path = "lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTPointInterpolator.m"; sourceTree = "<group>"; };
B6E04B47E61D8F8F434E24ABE164E64B /* Pods-DreamSleep.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-DreamSleep.release.xcconfig"; sourceTree = "<group>"; };
B6F6A328E50162D4E8546872AC2AB017 /* UIPageControl+Night.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIPageControl+Night.h"; path = "DKNightVersion/UIKit/UIPageControl+Night.h"; sourceTree = "<group>"; };
B7F162D7C62993C5D79BBBC850BBC04B /* LOTShapeGradientFill.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTShapeGradientFill.h; path = "lottie-ios/Classes/Models/LOTShapeGradientFill.h"; sourceTree = "<group>"; };
B8471205AA3DCEDA14AD33CBE7DB1674 /* 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>"; };
B9206AD59F628862DC109D4AF0F76B66 /* LOTShapeCircle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTShapeCircle.h; path = "lottie-ios/Classes/Models/LOTShapeCircle.h"; sourceTree = "<group>"; };
BA19038A392AF13432683994EEE23866 /* LOTAnimatorNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTAnimatorNode.m; path = "lottie-ios/Classes/RenderSystem/LOTAnimatorNode.m"; sourceTree = "<group>"; };
BC4F7383C3AA04E8CF94F60610314C42 /* LOTSizeInterpolator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTSizeInterpolator.h; path = "lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTSizeInterpolator.h"; sourceTree = "<group>"; };
BCAD9B7AD4D3D6E0E3CFE4999A087127 /* LOTAnimationTransitionController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTAnimationTransitionController.h; path = "lottie-ios/Classes/PublicHeaders/LOTAnimationTransitionController.h"; sourceTree = "<group>"; };
BDEE8EE2087F5F8378017D6AD37396DA /* Masonry-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Masonry-umbrella.h"; sourceTree = "<group>"; };
BEE6BEB35D287AF11A251B0786B02479 /* AFURLRequestSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFURLRequestSerialization.h; path = AFNetworking/AFURLRequestSerialization.h; sourceTree = "<group>"; };
BF4B64BC498A599A0A8D4066BC0E9720 /* LOTPlatformCompat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTPlatformCompat.h; path = "lottie-ios/Classes/MacCompatibility/LOTPlatformCompat.h"; sourceTree = "<group>"; };
BF583951CB2C82DC0856CB1082B7D1BD /* UIImageView+Night.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+Night.m"; path = "DKNightVersion/Manual/UIImageView+Night.m"; sourceTree = "<group>"; };
BF76150560E2782C233F8A2DF0C2E1BB /* LOTShapeStar.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTShapeStar.h; path = "lottie-ios/Classes/Models/LOTShapeStar.h"; sourceTree = "<group>"; };
BFAF7A479ED9328A0F37D77566388E75 /* LOTRepeaterRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTRepeaterRenderer.h; path = "lottie-ios/Classes/RenderSystem/RenderNodes/LOTRepeaterRenderer.h"; sourceTree = "<group>"; };
BFCC7764814F39BFB20B6B51F1E7AD8A /* LOTBezierData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTBezierData.m; path = "lottie-ios/Classes/AnimatableProperties/LOTBezierData.m"; sourceTree = "<group>"; };
C1EED86E5D5DDE4E77203D72A21D278F /* EXTKeyPathCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXTKeyPathCoding.h; path = DKNightVersion/extobjc/EXTKeyPathCoding.h; sourceTree = "<group>"; };
C2987289680E43F8E5C5896594EBE5B4 /* ViewController+MASAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "ViewController+MASAdditions.m"; path = "Masonry/ViewController+MASAdditions.m"; sourceTree = "<group>"; };
C2DD04DBA9BA71B2BCEEFE4C6ED14B84 /* YTKNetwork-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "YTKNetwork-umbrella.h"; sourceTree = "<group>"; };
C43168ABA4FB354B96A644EACB12EE4C /* AFURLRequestSerialization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFURLRequestSerialization.m; path = AFNetworking/AFURLRequestSerialization.m; sourceTree = "<group>"; };
C4F3D5C4D0A64BC1F5F9433F5D41F264 /* UISearchBar+Keyboard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UISearchBar+Keyboard.h"; path = "DKNightVersion/Manual/UISearchBar+Keyboard.h"; sourceTree = "<group>"; };
C5A68F7F052965847D9421FC0E7F8015 /* 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; };
C68934E114ACB33FA37F673B9D8B3583 /* LOTFillRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTFillRenderer.h; path = "lottie-ios/Classes/RenderSystem/RenderNodes/LOTFillRenderer.h"; sourceTree = "<group>"; };
C8FD31140D99C58C6A37714765237FDF /* LOTAsset.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTAsset.m; path = "lottie-ios/Classes/Models/LOTAsset.m"; sourceTree = "<group>"; };
C94C9FAC9154E8FD309C066C7A9B2951 /* LOTArrayInterpolator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTArrayInterpolator.m; path = "lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTArrayInterpolator.m"; sourceTree = "<group>"; };
C997ED82CB8CF30A51ED7FDAEC1FBBB9 /* AFNetworking.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = AFNetworking.modulemap; sourceTree = "<group>"; };
CABDC61DB8AE80E18A2CA228ADAD29BB /* NSArray+MASShorthandAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSArray+MASShorthandAdditions.h"; path = "Masonry/NSArray+MASShorthandAdditions.h"; sourceTree = "<group>"; };
CB64EEA87DAD2385F437B94B80CA3120 /* YTKRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YTKRequest.m; path = YTKNetwork/YTKRequest.m; sourceTree = "<group>"; };
CBCC3C80A60DDA18669EB495035615CA /* UIPageControl+Night.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIPageControl+Night.m"; path = "DKNightVersion/UIKit/UIPageControl+Night.m"; sourceTree = "<group>"; };
CC5BB803108B22B4A5E3465A2F6326DE /* 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>"; };
CD622F5F1B909344FD8FD8D339DE2BF0 /* LOTStrokeRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTStrokeRenderer.h; path = "lottie-ios/Classes/RenderSystem/RenderNodes/LOTStrokeRenderer.h"; sourceTree = "<group>"; };
CD8A70DF8C11A1FAEAA29773BA2FBF0C /* LOTAnimationCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTAnimationCache.m; path = "lottie-ios/Classes/Private/LOTAnimationCache.m"; sourceTree = "<group>"; };
CE6DF0D74F2FC70C3A1FC07E1635D211 /* Pods-DreamSleep-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-DreamSleep-umbrella.h"; sourceTree = "<group>"; };
CE8B0E5243950E07F74531EC009D0B45 /* LOTAnimationTransitionController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTAnimationTransitionController.m; path = "lottie-ios/Classes/Private/LOTAnimationTransitionController.m"; sourceTree = "<group>"; };
CF1B9E3FA8C9356466CA73B4AE861784 /* LOTColorInterpolator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTColorInterpolator.h; path = "lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTColorInterpolator.h"; sourceTree = "<group>"; };
CFA5C6F6E42856BDA69378126D9DB3FE /* CALayer+Night.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "CALayer+Night.m"; path = "DKNightVersion/CoreAnimation/CALayer+Night.m"; sourceTree = "<group>"; };
D0469B1BA911250136E58C938E651B4C /* MASViewConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASViewConstraint.h; path = Masonry/MASViewConstraint.h; sourceTree = "<group>"; };
D22C4109034720FEBA7D4FAA0F218826 /* MJRefreshAutoNormalFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoNormalFooter.h; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.h; sourceTree = "<group>"; };
D247C341781D75447AF0F6F294E08557 /* View+MASAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "View+MASAdditions.h"; path = "Masonry/View+MASAdditions.h"; sourceTree = "<group>"; };
D3E6CE31C1DA4D87630BA746CF1B7008 /* LOTValueCallback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTValueCallback.h; path = "lottie-ios/Classes/PublicHeaders/LOTValueCallback.h"; sourceTree = "<group>"; };
D49390DC16189A74052FAC3455F18249 /* DKNightVersion.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = DKNightVersion.framework; sourceTree = BUILT_PRODUCTS_DIR; };
D4DDB021AB6DC003981DB761DAFF7D5D /* UISlider+Night.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UISlider+Night.h"; path = "DKNightVersion/UIKit/UISlider+Night.h"; sourceTree = "<group>"; };
D4E7AE2320564BBFD09D1957EFB680A6 /* MJRefreshFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshFooter.h; path = MJRefresh/Base/MJRefreshFooter.h; sourceTree = "<group>"; };
D625C6C0F2976894AA9EA9D6FB8088FF /* MJRefreshBackGifFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackGifFooter.m; path = MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.m; sourceTree = "<group>"; };
D75ABDC14D87FAAE7CDAE4178AEBEDE2 /* MJRefreshAutoFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoFooter.h; path = MJRefresh/Base/MJRefreshAutoFooter.h; sourceTree = "<group>"; };
D87402865D007EB0EEFFD41DC3B06EDB /* LOTAssetGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTAssetGroup.h; path = "lottie-ios/Classes/Models/LOTAssetGroup.h"; sourceTree = "<group>"; };
D94B27CCBA312615F51BA5C0B6CEDF01 /* MASViewAttribute.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASViewAttribute.h; path = Masonry/MASViewAttribute.h; sourceTree = "<group>"; };
D9804E4964AF6BB5E729E85E63CB9403 /* UITextView+Keyboard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UITextView+Keyboard.h"; path = "DKNightVersion/Manual/UITextView+Keyboard.h"; sourceTree = "<group>"; };
D9B889B594EEBB76C8A96C4F8C83808F /* LOTRadialGradientLayer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTRadialGradientLayer.m; path = "lottie-ios/Classes/Extensions/LOTRadialGradientLayer.m"; sourceTree = "<group>"; };
DC226C38ACB79B34317949C4541E8514 /* LOTBlockCallback.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTBlockCallback.m; path = "lottie-ios/Classes/Private/LOTBlockCallback.m"; sourceTree = "<group>"; };
DD9D8EFAB671CD661FB7B0EA83F68B90 /* MJRefreshGifHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshGifHeader.h; path = MJRefresh/Custom/Header/MJRefreshGifHeader.h; sourceTree = "<group>"; };
DDD706213FDF574C07C34575D6472DCF /* UIImageView+Night.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+Night.h"; path = "DKNightVersion/Manual/UIImageView+Night.h"; sourceTree = "<group>"; };
DDEB28C1046F1BB93AD1CFDFB9B46D6C /* LOTAnimatedControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTAnimatedControl.m; path = "lottie-ios/Classes/Private/LOTAnimatedControl.m"; sourceTree = "<group>"; };
DE3C95D9A1FCFAE2F4267E9C5B288AB1 /* MJRefreshNormalHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshNormalHeader.m; path = MJRefresh/Custom/Header/MJRefreshNormalHeader.m; sourceTree = "<group>"; };
DEAE53F81E641B4899DA836B45F2C5DB /* LOTRenderNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTRenderNode.h; path = "lottie-ios/Classes/RenderSystem/LOTRenderNode.h"; sourceTree = "<group>"; };
DEC191C84E14382AA870C1EF4AC86843 /* ViewController+MASAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ViewController+MASAdditions.h"; path = "Masonry/ViewController+MASAdditions.h"; sourceTree = "<group>"; };
DF4EF4119418295F8B518F247C0C858D /* MJRefreshBackNormalFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackNormalFooter.h; path = MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.h; sourceTree = "<group>"; };
DF5A65FE52A194575CA05FBE39C17B3C /* LOTLayerContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTLayerContainer.m; path = "lottie-ios/Classes/AnimatableLayers/LOTLayerContainer.m"; sourceTree = "<group>"; };
E0E964B7317811D22C0CB960FCE03B20 /* MJRefreshBackStateFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackStateFooter.h; path = MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.h; sourceTree = "<group>"; };
E12D81874DE3F4AADC27A8DCCBD0BAAC /* YTKChainRequestAgent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YTKChainRequestAgent.h; path = YTKNetwork/YTKChainRequestAgent.h; sourceTree = "<group>"; };
E18390D13BE34F5115F9B58C32755120 /* DKNightVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DKNightVersion.h; path = DKNightVersion/DKNightVersion.h; sourceTree = "<group>"; };
E3E8196EA3450DB9E10A4E7C7699E8EB /* DKNightVersion-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DKNightVersion-dummy.m"; sourceTree = "<group>"; };
E428F8CCCD87B95CCDC30F75AB773229 /* MJRefreshAutoGifFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoGifFooter.h; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.h; sourceTree = "<group>"; };
E46476EC508053A6618CCEFA8F4670A5 /* MJRefreshAutoFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoFooter.m; path = MJRefresh/Base/MJRefreshAutoFooter.m; sourceTree = "<group>"; };
E467B165D5FA8DA9B5531598D9534DF9 /* MJRefreshFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshFooter.m; path = MJRefresh/Base/MJRefreshFooter.m; sourceTree = "<group>"; };
E49D6D248DD1CEE584E6776B9164A1B2 /* MJRefresh */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = MJRefresh; path = MJRefresh.framework; sourceTree = BUILT_PRODUCTS_DIR; };
E6BE1831A6FDFF44E0A05B6DE2411029 /* UIBarButtonItem+Night.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIBarButtonItem+Night.m"; path = "DKNightVersion/UIKit/UIBarButtonItem+Night.m"; sourceTree = "<group>"; };
E7EBE0B8F439E5A64FD564C8099A37BF /* UIToolbar+Night.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIToolbar+Night.h"; path = "DKNightVersion/UIKit/UIToolbar+Night.h"; sourceTree = "<group>"; };
E846C7317C0B83A5BDA3F4E9CF601EE0 /* LOTAnimationView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTAnimationView.h; path = "lottie-ios/Classes/PublicHeaders/LOTAnimationView.h"; sourceTree = "<group>"; };
E99238B3B7077C904EC25DC5B9ECCC99 /* MJRefresh.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MJRefresh.release.xcconfig; sourceTree = "<group>"; };
ED91BEA3649EDCD4C33829AA48FA308D /* MJRefreshNormalTrailer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshNormalTrailer.m; path = MJRefresh/Custom/Trailer/MJRefreshNormalTrailer.m; sourceTree = "<group>"; };
EE461F563B384AA2E4F0E5AEB29798F5 /* DKImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DKImage.h; path = DKNightVersion/Core/DKImage.h; sourceTree = "<group>"; };
EF04523CE6B6593E979702B05B07FF2D /* DKNightVersion.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DKNightVersion.release.xcconfig; sourceTree = "<group>"; };
EF7B38F237FD7071E03E2CD495442B50 /* Pods-DreamSleep.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-DreamSleep.modulemap"; sourceTree = "<group>"; };
EFD6588B3F3B1D7355D6ED720C13BD50 /* UISwitch+Night.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UISwitch+Night.m"; path = "DKNightVersion/UIKit/UISwitch+Night.m"; sourceTree = "<group>"; };
EFEDB6AEB506BFA6ECD1BAE449980870 /* AFHTTPSessionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFHTTPSessionManager.m; path = AFNetworking/AFHTTPSessionManager.m; sourceTree = "<group>"; };
F08FD375C50251A8723480F92933F004 /* Pods-DreamSleep-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-DreamSleep-Info.plist"; sourceTree = "<group>"; };
F09661C80611EADD06F2D75E9A453FF9 /* UITabBar+Night.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UITabBar+Night.h"; path = "DKNightVersion/UIKit/UITabBar+Night.h"; sourceTree = "<group>"; };
F0EC9D9E1DB2B72B3792228CD7357A22 /* LOTAsset.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTAsset.h; path = "lottie-ios/Classes/Models/LOTAsset.h"; sourceTree = "<group>"; };
F0F68731CD66B673B7CD6E7CE11A1B40 /* LOTModels.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTModels.h; path = "lottie-ios/Classes/Models/LOTModels.h"; sourceTree = "<group>"; };
F191C27DE622F299B8EFD85D95ABCC22 /* DKDeallocBlockExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DKDeallocBlockExecutor.h; path = DKNightVersion/DeallocBlockExecutor/DKDeallocBlockExecutor.h; sourceTree = "<group>"; };
F2769B2D4EC8333FA01A07E4B3815FB6 /* MJRefreshComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshComponent.m; path = MJRefresh/Base/MJRefreshComponent.m; sourceTree = "<group>"; };
F2883B7CEAFE6B347A068DCF15AE1E7A /* LOTPolystarAnimator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTPolystarAnimator.m; path = "lottie-ios/Classes/RenderSystem/AnimatorNodes/LOTPolystarAnimator.m"; sourceTree = "<group>"; };
F2A6BFE9B20C767CC87A10A385A64C19 /* UIBezierPath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UIBezierPath.h; path = "lottie-ios/Classes/MacCompatibility/UIBezierPath.h"; sourceTree = "<group>"; };
F35F28AF8953BE90FC5D123ED55C5A67 /* LOTPathAnimator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTPathAnimator.m; path = "lottie-ios/Classes/RenderSystem/AnimatorNodes/LOTPathAnimator.m"; sourceTree = "<group>"; };
F3EB3539B9375B3D4E74923331249234 /* LOTValueInterpolator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTValueInterpolator.h; path = "lottie-ios/Classes/RenderSystem/InterpolatorNodes/LOTValueInterpolator.h"; sourceTree = "<group>"; };
F412BAE744C60A29AACE5449F5FB118D /* LOTShapePath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTShapePath.h; path = "lottie-ios/Classes/Models/LOTShapePath.h"; sourceTree = "<group>"; };
F456C71CA99B0310E91DCB2904D4F76D /* LOTAnimationView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTAnimationView.m; path = "lottie-ios/Classes/Private/LOTAnimationView.m"; sourceTree = "<group>"; };
F4ADCF2F4364F5B6BB544A3EA7CC47D2 /* LOTKeypath.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTKeypath.m; path = "lottie-ios/Classes/Private/LOTKeypath.m"; sourceTree = "<group>"; };
F4BCB82AF3CFD91A2FB239C7C4F3DC15 /* 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>"; };
F65167DF35C4742F61B65DD57DBB24BB /* YTKNetwork-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "YTKNetwork-prefix.pch"; sourceTree = "<group>"; };
F93186C9850FF5879541C0BF05838D79 /* NSArray+MASAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSArray+MASAdditions.m"; path = "Masonry/NSArray+MASAdditions.m"; sourceTree = "<group>"; };
FA3A2DC256D026CEA15DD4C770212758 /* UIButton+Night.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIButton+Night.h"; path = "DKNightVersion/Manual/UIButton+Night.h"; sourceTree = "<group>"; };
FA9313E2F2C3914AAEFF1A31C4F2F4FB /* LOTShapePath.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTShapePath.m; path = "lottie-ios/Classes/Models/LOTShapePath.m"; sourceTree = "<group>"; };
FCE348DFB7397216EA172656D108A227 /* LOTInterpolatorCallback.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LOTInterpolatorCallback.m; path = "lottie-ios/Classes/Private/LOTInterpolatorCallback.m"; sourceTree = "<group>"; };
FD30A0CEEB8CB8B6D8F2A9F70362AF68 /* UITableView+Night.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UITableView+Night.h"; path = "DKNightVersion/UIKit/UITableView+Night.h"; sourceTree = "<group>"; };
FE0227CD25AB8454730CA28A603804DB /* LOTValueDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LOTValueDelegate.h; path = "lottie-ios/Classes/PublicHeaders/LOTValueDelegate.h"; sourceTree = "<group>"; };
FF388B95F860D6E4B16BEAE0D7BCA22F /* AFNetworkReachabilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFNetworkReachabilityManager.h; path = AFNetworking/AFNetworkReachabilityManager.h; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
3C16BB7A0E3ED61444705FB4AF96A926 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
826BF14E0AE52BA8D9A95A63F4AF4C1E /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
3C8F3783EB65F8EFFD4E15C4739F769A /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
64CF2C397AEEF4FBC982B6D6C65432F4 /* 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 */
02170469F0B79E97E3A6CC27074CF0E4 /* Security */ = {
isa = PBXGroup;
children = (
1D54139D007BCD21592C79C592FDAE13 /* AFSecurityPolicy.h */,
77BC0D258D2D5BB62E2674E91CE6CDF3 /* AFSecurityPolicy.m */,
);
name = Security;
sourceTree = "<group>";
};
03C5C200A0787E300053CFA8F53CA094 /* Frameworks */ = {
isa = PBXGroup;
children = (
93B2E1ED82E746E1586C4B1398E31D12 /* iOS */,
);
name = Frameworks;
sourceTree = "<group>";
};
04DEF84CBC95ED9E11A389D1568D5108 /* Reachability */ = {
isa = PBXGroup;
children = (
FF388B95F860D6E4B16BEAE0D7BCA22F /* AFNetworkReachabilityManager.h */,
706B236F116AADE05F19B126DD74EDC5 /* AFNetworkReachabilityManager.m */,
);
name = Reachability;
sourceTree = "<group>";
};
076D36E52703EA889D71C11D3E5FC581 /* Serialization */ = {
isa = PBXGroup;
children = (
BEE6BEB35D287AF11A251B0786B02479 /* AFURLRequestSerialization.h */,
C43168ABA4FB354B96A644EACB12EE4C /* AFURLRequestSerialization.m */,
70C7E4A91D914EA3FECE16CA3D25F7E9 /* AFURLResponseSerialization.h */,
428248F1614ED960097FD835AA4E677F /* AFURLResponseSerialization.m */,
);
name = Serialization;
sourceTree = "<group>";
};
07C3BC5CBDFE1BF818B1ED61C958B30E /* Resources */ = {
isa = PBXGroup;
children = (
8380A9D2228B9213EBCBEAD77053FEB7 /* MJRefresh.bundle */,
);
name = Resources;
sourceTree = "<group>";
};
25CB3D9E9CC470B231C7571DDC5CEA90 /* Support Files */ = {
isa = PBXGroup;
children = (
14CA1B0CBCD8E9A4B0AAE51AC472A18F /* YTKNetwork.modulemap */,
02D8E936A529D1154DA39CC99AAEFEFA /* YTKNetwork-dummy.m */,
A44271C12DFED4D479F34451A91F7B14 /* YTKNetwork-Info.plist */,
F65167DF35C4742F61B65DD57DBB24BB /* YTKNetwork-prefix.pch */,
C2DD04DBA9BA71B2BCEEFE4C6ED14B84 /* YTKNetwork-umbrella.h */,
7E6950707CFC0E9B2AA716CB285D6D6D /* YTKNetwork.debug.xcconfig */,
9A11DA8B07C3D0F7E87A91DF7CB2E6A0 /* YTKNetwork.release.xcconfig */,
);
name = "Support Files";
path = "../Target Support Files/YTKNetwork";
sourceTree = "<group>";
};
2BBB3C580ABEECC88EFDE1E7CD8B7AC8 /* DKNightVersion */ = {
isa = PBXGroup;
children = (
E18390D13BE34F5115F9B58C32755120 /* DKNightVersion.h */,
9BE1CAD663906F0A6901AB180D2EF31A /* Core */,
DE638BB73C11DAA9DE9F7519F08A1E69 /* CoreAnimation */,
EC524A86485DA3EE9AECBC048A08069C /* Resources */,
D31A7A5FCE1774A2C3190B2B9E00C576 /* Support Files */,
6FA894409E3944DF902E983C3A104747 /* UIKit */,
);
path = DKNightVersion;
sourceTree = "<group>";
};
4BF3D09A49DB1474443C23A030934314 /* MJRefresh */ = {
isa = PBXGroup;
children = (
2E9CC59C3DC5B781CE4536CC53B93BDA /* MJRefresh.h */,
D75ABDC14D87FAAE7CDAE4178AEBEDE2 /* MJRefreshAutoFooter.h */,
E46476EC508053A6618CCEFA8F4670A5 /* MJRefreshAutoFooter.m */,
E428F8CCCD87B95CCDC30F75AB773229 /* MJRefreshAutoGifFooter.h */,
0F973C9AD26A38EF35071D1A2B41ED72 /* MJRefreshAutoGifFooter.m */,
D22C4109034720FEBA7D4FAA0F218826 /* MJRefreshAutoNormalFooter.h */,
86518BEE578251117498AC5AAB59101D /* MJRefreshAutoNormalFooter.m */,
26688DE1E374E4A15CB53692B52C6EF3 /* MJRefreshAutoStateFooter.h */,
A3D519128C737D7B273A5E6131CB7B80 /* MJRefreshAutoStateFooter.m */,
1F2A25C4BB0A9B0F296F8DACEB31C15A /* MJRefreshBackFooter.h */,
6A9A4CFD03C9F4FB84D8777D6CEB6633 /* MJRefreshBackFooter.m */,
2A5FED7E560C1E8972402F7C17886408 /* MJRefreshBackGifFooter.h */,
D625C6C0F2976894AA9EA9D6FB8088FF /* MJRefreshBackGifFooter.m */,
DF4EF4119418295F8B518F247C0C858D /* MJRefreshBackNormalFooter.h */,
445B5A172A9BDB77674555B889407BD4 /* MJRefreshBackNormalFooter.m */,
E0E964B7317811D22C0CB960FCE03B20 /* MJRefreshBackStateFooter.h */,
021D42115E05AF0933E54345CE3805C9 /* MJRefreshBackStateFooter.m */,
15BF78C366276ABD9542330732B68312 /* MJRefreshComponent.h */,
F2769B2D4EC8333FA01A07E4B3815FB6 /* MJRefreshComponent.m */,
8F69D7314FA372A5CDA43E45AF533F2B /* MJRefreshConfig.h */,
91E0189ED1D4040FE47F1B26DA12AF16 /* MJRefreshConfig.m */,
20C968A600636E825BD62E66C6C62F15 /* MJRefreshConst.h */,
7448354F5D670DC0E178E1979B3F4D30 /* MJRefreshConst.m */,
D4E7AE2320564BBFD09D1957EFB680A6 /* MJRefreshFooter.h */,
E467B165D5FA8DA9B5531598D9534DF9 /* MJRefreshFooter.m */,
DD9D8EFAB671CD661FB7B0EA83F68B90 /* MJRefreshGifHeader.h */,
60F87E7BFAC07776CC05B07E19CEDB79 /* MJRefreshGifHeader.m */,
514420A76EB3160AF5A0C38481A2B32B /* MJRefreshHeader.h */,
1BE90946607E56A15EB7B62C033E3F3B /* MJRefreshHeader.m */,
69F447C0BC3E1578D9C89913516B9E1A /* MJRefreshNormalHeader.h */,
DE3C95D9A1FCFAE2F4267E9C5B288AB1 /* MJRefreshNormalHeader.m */,
6B3DA8B65E8CD8282ED363FADFA93EB3 /* MJRefreshNormalTrailer.h */,
ED91BEA3649EDCD4C33829AA48FA308D /* MJRefreshNormalTrailer.m */,
5E2A7FEEBE47A89B865B329279D5B4FB /* MJRefreshStateHeader.h */,
A751E8AD026BF002A645C697EE62F3F5 /* MJRefreshStateHeader.m */,
4C63195B17057B4EFA016CA689E3613A /* MJRefreshStateTrailer.h */,
912E3EB6481AD3F973E40DADB00C3918 /* MJRefreshStateTrailer.m */,
37C161441DA4F4495EA809A3AD08CFF3 /* MJRefreshTrailer.h */,
07088A83B85F7D7F267667B4F60F0D6E /* MJRefreshTrailer.m */,
7497A6F3BB36D327AECC68884A846B4C /* NSBundle+MJRefresh.h */,
25044363B352C1C215D420EF8D79BACB /* NSBundle+MJRefresh.m */,
212F30C2E5C57C426C1E18DC50E63BF6 /* UICollectionViewLayout+MJRefresh.h */,
3CF45FFE9513C3706D5EEE9F23D8F87C /* UICollectionViewLayout+MJRefresh.m */,
5DC4838253371635F65F848DBBE7D43C /* UIScrollView+MJExtension.h */,
13A5324DF7E97814216C8036E610A238 /* UIScrollView+MJExtension.m */,
6F9AFC91877EE0F6E428E58B693BE3E7 /* UIScrollView+MJRefresh.h */,
92E65603E9B9A0C3EE1B358F5B0C3112 /* UIScrollView+MJRefresh.m */,
0AA81DEFA3D87DF7BF4FD8C3AD8955AE /* UIView+MJExtension.h */,
AA0E5EB8EDE01409230D6BF877DE6A7D /* UIView+MJExtension.m */,
07C3BC5CBDFE1BF818B1ED61C958B30E /* Resources */,
B542C8AAE2C85C38C8E3AC1FDD825959 /* Support Files */,
);
path = MJRefresh;
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>";
};
6FA894409E3944DF902E983C3A104747 /* UIKit */ = {
isa = PBXGroup;
children = (
1B6BB70CB1057E6CAFFFE752D50CEF96 /* UIBarButtonItem+Night.h */,
E6BE1831A6FDFF44E0A05B6DE2411029 /* UIBarButtonItem+Night.m */,
FA3A2DC256D026CEA15DD4C770212758 /* UIButton+Night.h */,
94120A594145ADBF2C9B8808FAC69F94 /* UIButton+Night.m */,
54DCCF8ADE70B7EF2160D30D40C377D1 /* UIControl+Night.h */,
322FFBA62CB415442F0D0123534572BE /* UIControl+Night.m */,
DDD706213FDF574C07C34575D6472DCF /* UIImageView+Night.h */,
BF583951CB2C82DC0856CB1082B7D1BD /* UIImageView+Night.m */,
814071E69C4B113B6DFED00713B3137F /* UILabel+Night.h */,
783C02520ED8C2081A31E335E7CDE698 /* UILabel+Night.m */,
56FC62E65B302135B9640D82BF2B5108 /* UINavigationBar+Animation.h */,
3335C433E09BE753EE38ED82C295A7C6 /* UINavigationBar+Animation.m */,
469130FC0EADDD1694316D32CAFB669C /* UINavigationBar+Night.h */,
69997A0548E05FFD48AA25A43B7BF208 /* UINavigationBar+Night.m */,
B6F6A328E50162D4E8546872AC2AB017 /* UIPageControl+Night.h */,
CBCC3C80A60DDA18669EB495035615CA /* UIPageControl+Night.m */,
2C4A4CE324BEC680FFEFFD8669F0CE36 /* UIProgressView+Night.h */,
62AA60601130FBEEB90ED44E4CEB2518 /* UIProgressView+Night.m */,
C4F3D5C4D0A64BC1F5F9433F5D41F264 /* UISearchBar+Keyboard.h */,
883C8246FD05666876F57B0FF767D070 /* UISearchBar+Keyboard.m */,
1342A6F6581A3B5E149C840F6EA2EE7D /* UISearchBar+Night.h */,
811BDB3E8170C9B642FB15CE81D0C389 /* UISearchBar+Night.m */,
D4DDB021AB6DC003981DB761DAFF7D5D /* UISlider+Night.h */,
5E8DFA567CD4B2213E2445D326B4E150 /* UISlider+Night.m */,
A4A2A63298AC736EF9C67F3FB0D51C60 /* UISwitch+Night.h */,
EFD6588B3F3B1D7355D6ED720C13BD50 /* UISwitch+Night.m */,
F09661C80611EADD06F2D75E9A453FF9 /* UITabBar+Night.h */,
3FC66C726F9D1A05CB12B40FB2EB45B3 /* UITabBar+Night.m */,
FD30A0CEEB8CB8B6D8F2A9F70362AF68 /* UITableView+Night.h */,
ACE0D286DDC354BF776ACDBE625A6331 /* UITableView+Night.m */,
07A069580455C6E3EEDC80235EEFDCB7 /* UITextField+Keyboard.h */,
83C5185771D11D1B3A9DB98E1DEBFC96 /* UITextField+Keyboard.m */,
94FB8EA60AE48C9CDC2EE2689622ED61 /* UITextField+Night.h */,
874EAD6EF5083404B31F568DD7FB6131 /* UITextField+Night.m */,
D9804E4964AF6BB5E729E85E63CB9403 /* UITextView+Keyboard.h */,
098BF26AA1C8611E249012211AADB555 /* UITextView+Keyboard.m */,
06C5BFC8D5B51026A4A4A6AF33C04915 /* UITextView+Night.h */,
37D06DE028CB02FC13F18419F7A64004 /* UITextView+Night.m */,
E7EBE0B8F439E5A64FD564C8099A37BF /* UIToolbar+Night.h */,
73339B1AEE682F357EBD16E7A7D6BE94 /* UIToolbar+Night.m */,
999FD8670FA125B68D099344C5F13C0D /* UIView+Night.h */,
4095AE9D9FCDFA960BCC3F9F141E4946 /* UIView+Night.m */,
);
name = UIKit;
sourceTree = "<group>";
};
79CD6C81235B91A16DCEC5F5EBA6FD10 /* AFNetworking */ = {
isa = PBXGroup;
children = (
9BA813E7B463FD602B3EEA47815CEA3B /* NSURLSession */,
04DEF84CBC95ED9E11A389D1568D5108 /* Reachability */,
02170469F0B79E97E3A6CC27074CF0E4 /* Security */,
076D36E52703EA889D71C11D3E5FC581 /* Serialization */,
CA78ACA8CFFD34A12EFE73A9A6E290D4 /* Support Files */,
);
path = AFNetworking;
sourceTree = "<group>";
};
7BC9BA89F371D235AC7900829C37517C /* Masonry */ = {
isa = PBXGroup;
children = (
061AC76F7AB568F6C504F93F39934463 /* MASCompositeConstraint.h */,
76F2A58EC94F2019FCB4B163AED83395 /* MASCompositeConstraint.m */,
999C5839B57A1B51FF5F17CCF52A5993 /* MASConstraint.h */,
35ABA512D22A2B1FDA2B7FB6AF080DFC /* MASConstraint.m */,
07E179F48B01E0F83CC1CA8C2F246ACB /* MASConstraint+Private.h */,
B1F9266AF0ABA7D0F083FC9834DAF805 /* MASConstraintMaker.h */,
1C328988DC492AABE165FA2EFF74AA64 /* MASConstraintMaker.m */,
4397B175B5E5E57C857098E054550B3D /* MASLayoutConstraint.h */,
2DF863F55AFEDEAE310363D1C1B94DD5 /* MASLayoutConstraint.m */,
411872A1FAE3CDF9390F47D6D9F7F56A /* Masonry.h */,
8CCD7034588C6308E145A85D523AF390 /* MASUtilities.h */,
D94B27CCBA312615F51BA5C0B6CEDF01 /* MASViewAttribute.h */,
58404D88700B3D02419817ECC9358686 /* MASViewAttribute.m */,
D0469B1BA911250136E58C938E651B4C /* MASViewConstraint.h */,
A9275B558E6DEC65D9FFA3272B0AC0DA /* MASViewConstraint.m */,
77DED69D95F694D05F100092E12F69D8 /* NSArray+MASAdditions.h */,
F93186C9850FF5879541C0BF05838D79 /* NSArray+MASAdditions.m */,
CABDC61DB8AE80E18A2CA228ADAD29BB /* NSArray+MASShorthandAdditions.h */,
413A82ABF0C0C76A19EF04FED62119F5 /* NSLayoutConstraint+MASDebugAdditions.h */,
8B95573967C4CA86B45B589A3C932A17 /* NSLayoutConstraint+MASDebugAdditions.m */,
D247C341781D75447AF0F6F294E08557 /* View+MASAdditions.h */,
68573A63DD39B62FE238553BABDA8404 /* View+MASAdditions.m */,
8F9F2DC8524D6E571C4C3F659DE9C63D /* View+MASShorthandAdditions.h */,
DEC191C84E14382AA870C1EF4AC86843 /* ViewController+MASAdditions.h */,
C2987289680E43F8E5C5896594EBE5B4 /* ViewController+MASAdditions.m */,
8A2064CBC2A387D970B1D042B8C323CC /* Support Files */,
);
path = Masonry;
sourceTree = "<group>";
};
8994C37504138B8373A79C6389287D5B /* YTKNetwork */ = {
isa = PBXGroup;
children = (
778E15F896CC84E97F9EC5DEA5260CB6 /* YTKBaseRequest.h */,
4C885C921341A76558059347A240D7A2 /* YTKBaseRequest.m */,
776AB9FBFAC0292754A430124BFAF70F /* YTKBatchRequest.h */,
5CEDA2240351E9F121D19748045077D8 /* YTKBatchRequest.m */,
672898D36A06C60379E23B27A0705367 /* YTKBatchRequestAgent.h */,
17DB18B7E1254DFEFB138C96DA080689 /* YTKBatchRequestAgent.m */,
5FDF9B2A2446F661EF0E33CA2A80328E /* YTKChainRequest.h */,
6EBA5F8694EC76C8B282CBA47637267B /* YTKChainRequest.m */,
E12D81874DE3F4AADC27A8DCCBD0BAAC /* YTKChainRequestAgent.h */,
745D34345D0D846EE1AF419968F8EC4F /* YTKChainRequestAgent.m */,
57DB92AF3F4BD600FC075F01F4E5F46F /* YTKNetwork.h */,
0B142E7485DDDE1246EE3B240B90F8EB /* YTKNetworkAgent.h */,
A38157B01CC1AAD38A17AFF8611FCF76 /* YTKNetworkAgent.m */,
7122DC1E5162A0203C2706F4A3A040CD /* YTKNetworkConfig.h */,
65939C65BE38659EAB3AFA606FC69B16 /* YTKNetworkConfig.m */,
0668CF24224E2676D68E8744C4CE3FEA /* YTKNetworkPrivate.h */,
4EEE47F47E6D04E29FBE7E09D4A1CCDC /* YTKNetworkPrivate.m */,
A58ECDE40DC139D8CC7C8C5ED217B7F1 /* YTKRequest.h */,
CB64EEA87DAD2385F437B94B80CA3120 /* YTKRequest.m */,
437C4F941CFCBF7FEA1B646B040ECDB1 /* YTKRequestEventAccessory.h */,
7F0FA16019AB32BB2AFB1766061A7FD7 /* YTKRequestEventAccessory.m */,
25CB3D9E9CC470B231C7571DDC5CEA90 /* Support Files */,
);
path = YTKNetwork;
sourceTree = "<group>";
};
8A2064CBC2A387D970B1D042B8C323CC /* Support Files */ = {
isa = PBXGroup;
children = (
5C2127286632A27550A1D4643BCFD73C /* Masonry.modulemap */,
103BD5215CB7780A10F0737CC5070C4E /* Masonry-dummy.m */,
03BBF60D00C005A1CC6F7D1059676DEC /* Masonry-Info.plist */,
26A7A34A1E55B8F9A5EEEADB44837250 /* Masonry-prefix.pch */,
BDEE8EE2087F5F8378017D6AD37396DA /* Masonry-umbrella.h */,
9087CF6CC5B1DC7AE436CC83D09814BF /* Masonry.debug.xcconfig */,
18CAF1B8E5AB31B44016CEE78582DBD0 /* Masonry.release.xcconfig */,
);
name = "Support Files";
path = "../Target Support Files/Masonry";
sourceTree = "<group>";
};
8A7F87C49B41328748CAE744C26DFD18 /* Support Files */ = {
isa = PBXGroup;
children = (
96EFA1AF485825E94F7CB0564379D041 /* lottie-ios.modulemap */,
3F7334FC119CB25E3AFE12DF09F938CF /* lottie-ios-dummy.m */,
0D552A9277A4A7BBEA0D261A05A56A36 /* lottie-ios-Info.plist */,
95D080D049DE0ED94BECB1357EBC1A07 /* lottie-ios-prefix.pch */,
3C2B8FC81568645FDBF4A0E550463D05 /* lottie-ios-umbrella.h */,
735877C35A6FD8E224DAFFE1E089FF42 /* lottie-ios.debug.xcconfig */,
6CE07551088B749294EAA7EA21500C6F /* lottie-ios.release.xcconfig */,
);
name = "Support Files";
path = "../Target Support Files/lottie-ios";
sourceTree = "<group>";
};
8F684C5D946EF7C2E902C338BF7B51CB /* DeallocBlockExecutor */ = {
isa = PBXGroup;
children = (
F191C27DE622F299B8EFD85D95ABCC22 /* DKDeallocBlockExecutor.h */,
8EED1BDED6513C44791E99A442AF3643 /* DKDeallocBlockExecutor.m */,
ADD1EA0F5091C1B5B011B8E49FA5061E /* NSObject+DeallocBlock.h */,
6682A146F9E899129E28B1CBD7F757B8 /* NSObject+DeallocBlock.m */,
);
name = DeallocBlockExecutor;
sourceTree = "<group>";
};
93B2E1ED82E746E1586C4B1398E31D12 /* iOS */ = {
isa = PBXGroup;
children = (
4AB400958E4B7006BD94A4B4474658D2 /* CFNetwork.framework */,
082CFDE879B2B4298D74A195301CB6EE /* Foundation.framework */,
C5A68F7F052965847D9421FC0E7F8015 /* UIKit.framework */,
);
name = iOS;
sourceTree = "<group>";
};
9BA813E7B463FD602B3EEA47815CEA3B /* NSURLSession */ = {
isa = PBXGroup;
children = (
85AABC317BAB20D0C4892DB350158B85 /* AFCompatibilityMacros.h */,
3F5B6B64FD034FB2D27E2D0E577F2F91 /* AFHTTPSessionManager.h */,
EFEDB6AEB506BFA6ECD1BAE449980870 /* AFHTTPSessionManager.m */,
04D1CA6DA5CB01F110265017EF15816E /* AFURLSessionManager.h */,
6FAA583C5413C657BAD2C69B439E761F /* AFURLSessionManager.m */,
);
name = NSURLSession;
sourceTree = "<group>";
};
9BCB4A36FC7163A3E44E4A38E42FCAAF /* Targets Support Files */ = {
isa = PBXGroup;
children = (
6C9287040D5EBB3387B0217B4E8768CA /* Pods-DreamSleep */,
);
name = "Targets Support Files";
sourceTree = "<group>";
};
9BE1CAD663906F0A6901AB180D2EF31A /* Core */ = {
isa = PBXGroup;
children = (
53DC3490B7639337FD3A77BE6294E3F6 /* DKAlpha.h */,
6C41B36801E027339CE4C7E903480DA4 /* DKAlpha.m */,
3D9819669CAEBFBF189A321C65487463 /* DKColor.h */,
9630547FEF1041179A0CCCC68A5F6D64 /* DKColor.m */,
A61E6DCEF33FA643F864B5D21667B2E3 /* DKColorTable.h */,
3C1E25B193D8B32AF756EE90A20A912B /* DKColorTable.m */,
EE461F563B384AA2E4F0E5AEB29798F5 /* DKImage.h */,
6C438BB4003E8A6AD1D759CF9B4933BB /* DKImage.m */,
9DF162EF229F5A8C80C0072CB2D17A4A /* DKNightVersionManager.h */,
1927545D8353CC924CB06C6155221B75 /* DKNightVersionManager.m */,
3F217C54F64BD0BEF70A00D6B6942290 /* NSObject+Night.h */,
832AE0A5DD82855E42538DD89911CEC2 /* NSObject+Night.m */,
8F684C5D946EF7C2E902C338BF7B51CB /* DeallocBlockExecutor */,
B2F412F82E176F61C8A3E4453ABA057D /* extobjc */,
);
name = Core;
sourceTree = "<group>";
};
AC6E5D78DCAF95C23BF15E4B6EEE78CB /* lottie-ios */ = {
isa = PBXGroup;
children = (
AF562FF67ADA7CBB265000C8BC055B11 /* CALayer+Compat.h */,
B8471205AA3DCEDA14AD33CBE7DB1674 /* CALayer+Compat.m */,
4C82ECD42D6BFBABD0B98432782877C2 /* CGGeometry+LOTAdditions.h */,
75A90DEF943AB925A19EFEF587A9BEB1 /* CGGeometry+LOTAdditions.m */,
0D5CAB9661A3AD5A21AE3B5C6AB801EC /* LOTAnimatedControl.h */,
DDEB28C1046F1BB93AD1CFDFB9B46D6C /* LOTAnimatedControl.m */,
61F6B6C07DE841F54CA372CA4970CD45 /* LOTAnimatedSwitch.h */,
2D03CCAA3C10669FA9B7D47458B0F216 /* LOTAnimatedSwitch.m */,
112C7BF62481C21E9EDD605579236209 /* LOTAnimationCache.h */,
CD8A70DF8C11A1FAEAA29773BA2FBF0C /* LOTAnimationCache.m */,
BCAD9B7AD4D3D6E0E3CFE4999A087127 /* LOTAnimationTransitionController.h */,
CE8B0E5243950E07F74531EC009D0B45 /* LOTAnimationTransitionController.m */,
E846C7317C0B83A5BDA3F4E9CF601EE0 /* LOTAnimationView.h */,
F456C71CA99B0310E91DCB2904D4F76D /* LOTAnimationView.m */,
CC5BB803108B22B4A5E3465A2F6326DE /* LOTAnimationView_Compat.h */,
F4BCB82AF3CFD91A2FB239C7C4F3DC15 /* LOTAnimationView_Internal.h */,
0EA588D8FA07F797A28F3525F9B628C6 /* LOTAnimatorNode.h */,
BA19038A392AF13432683994EEE23866 /* LOTAnimatorNode.m */,
3EA87D5FFD821E2A3092CDC6CD1D68EB /* LOTArrayInterpolator.h */,
C94C9FAC9154E8FD309C066C7A9B2951 /* LOTArrayInterpolator.m */,
F0EC9D9E1DB2B72B3792228CD7357A22 /* LOTAsset.h */,
C8FD31140D99C58C6A37714765237FDF /* LOTAsset.m */,
D87402865D007EB0EEFFD41DC3B06EDB /* LOTAssetGroup.h */,
60F9B7A2F46A49A50C3F3FF313FC33F9 /* LOTAssetGroup.m */,
AC6D4A58AF70FAFDF109452A0941B785 /* LOTBezierData.h */,
BFCC7764814F39BFB20B6B51F1E7AD8A /* LOTBezierData.m */,
89FE2622656DF7063F1EC7EA4A16BBE6 /* LOTBezierPath.h */,
20FB54EFACC3366F12145955160C3CA8 /* LOTBezierPath.m */,
7C91CB4CDDC840A33AB641A7434DAC57 /* LOTBlockCallback.h */,
DC226C38ACB79B34317949C4541E8514 /* LOTBlockCallback.m */,
2B1717540EBCE063707D442CB3F23B72 /* LOTCacheProvider.h */,
962C7E4760BB74FAEE1930216F091561 /* LOTCacheProvider.m */,
6FF62ADD021803DFB665E5269954E541 /* LOTCircleAnimator.h */,
3D3ADF6280CDB9E14E0235C20A166A01 /* LOTCircleAnimator.m */,
CF1B9E3FA8C9356466CA73B4AE861784 /* LOTColorInterpolator.h */,
A6BC90D70B0EECC35860A3839FB6338E /* LOTColorInterpolator.m */,
0364A213BDEFBD59B91B1794C566B42E /* LOTComposition.h */,
AF6909BDBAE32A84F83BCC774B6593A9 /* LOTComposition.m */,
9D1473D7FDD887A29242BB7E3C10D875 /* LOTCompositionContainer.h */,
3755996DA506B418D3442283537CC762 /* LOTCompositionContainer.m */,
C68934E114ACB33FA37F673B9D8B3583 /* LOTFillRenderer.h */,
136C11089E95D1A18704D2A3A3EABB12 /* LOTFillRenderer.m */,
513A5A4B9156B9A00DCFC5E08A81FAC3 /* LOTGradientFillRender.h */,
7F5CF98A18F27F2BC294DF8EAE8D7114 /* LOTGradientFillRender.m */,
8CA091E5938D62587F8B0B0C32710316 /* LOTHelpers.h */,
8EF4CBD26353C1C96F54ABE037E6C8D5 /* LOTInterpolatorCallback.h */,
FCE348DFB7397216EA172656D108A227 /* LOTInterpolatorCallback.m */,
15E5F6E4398A87E1A0FD377FF75E144A /* LOTKeyframe.h */,
8A04190846252793512C7E23AA24D4F0 /* LOTKeyframe.m */,
2C16E3F8406BCFF90AEDE9084D643140 /* LOTKeypath.h */,
F4ADCF2F4364F5B6BB544A3EA7CC47D2 /* LOTKeypath.m */,
A1A57A01BE57889013BBB9BA0DF7C766 /* LOTLayer.h */,
59F7512C2D436D1CC741CBF9AA66FCFD /* LOTLayer.m */,
1FFD66BC92100926B149C59FEEDEBF33 /* LOTLayerContainer.h */,
DF5A65FE52A194575CA05FBE39C17B3C /* LOTLayerContainer.m */,
99498A147603A7A9E80704F5DFB7FC8F /* LOTLayerGroup.h */,
901293E446E7FBB2D4742492A25557B2 /* LOTLayerGroup.m */,
629704C1423EF0AB16056BA752C8ED0D /* LOTMask.h */,
2D340B23656249148D2C43A955AD30AD /* LOTMask.m */,
85FC7C983C07C14EA0BFBC3701AA68C7 /* LOTMaskContainer.h */,
02C82C7F009BB6B049EBD9E20A0E3BBA /* LOTMaskContainer.m */,
F0F68731CD66B673B7CD6E7CE11A1B40 /* LOTModels.h */,
76AF1E94A63621773F2B09FF01304AF5 /* LOTNumberInterpolator.h */,
B2A82D85E708C60B2CFC885E577B16FB /* LOTNumberInterpolator.m */,
0AF0F8F8CBDC09FEE1260328379CC44D /* LOTPathAnimator.h */,
F35F28AF8953BE90FC5D123ED55C5A67 /* LOTPathAnimator.m */,
3F1F73CDE2A7DB3FB55E7DA6AA75422F /* LOTPathInterpolator.h */,
1D6DCC0DAB8511C62B997440AD091D94 /* LOTPathInterpolator.m */,
BF4B64BC498A599A0A8D4066BC0E9720 /* LOTPlatformCompat.h */,
419415F71F3AE160EAF60136E4D215E8 /* LOTPointInterpolator.h */,
B5383896378A8C9BA4B5597E6CEA9D57 /* LOTPointInterpolator.m */,
1339F8C3B7BCBAA0CA23491FE534D136 /* LOTPolygonAnimator.h */,
3A426F82C42814A6AE724D75CA99938C /* LOTPolygonAnimator.m */,
5EE87EFABDE32C86442DEB1A77473129 /* LOTPolystarAnimator.h */,
F2883B7CEAFE6B347A068DCF15AE1E7A /* LOTPolystarAnimator.m */,
B07A0CCA0FD26287B6F079CF2A486F7A /* LOTRadialGradientLayer.h */,
D9B889B594EEBB76C8A96C4F8C83808F /* LOTRadialGradientLayer.m */,
6FE6004CC1577966DD80799C7531EA79 /* LOTRenderGroup.h */,
993B9D20C4653F33CAB9538918E87AF7 /* LOTRenderGroup.m */,
DEAE53F81E641B4899DA836B45F2C5DB /* LOTRenderNode.h */,
90113D6F483EF84D6564A09EDDC41605 /* LOTRenderNode.m */,
BFAF7A479ED9328A0F37D77566388E75 /* LOTRepeaterRenderer.h */,
8BE1170959B2A00FA997450E40C2B29B /* LOTRepeaterRenderer.m */,
7EA749E281C87CC1E133B3C179943486 /* LOTRoundedRectAnimator.h */,
6677657818B4CD33859C735FA5A26987 /* LOTRoundedRectAnimator.m */,
B9206AD59F628862DC109D4AF0F76B66 /* LOTShapeCircle.h */,
A2E45E3E03516B2E3BEB532390ECEAEE /* LOTShapeCircle.m */,
1FF0AD71FEBAE2EDDEF3107714DE93EB /* LOTShapeFill.h */,
657A5C8E6427E7B940554999906C79CF /* LOTShapeFill.m */,
B7F162D7C62993C5D79BBBC850BBC04B /* LOTShapeGradientFill.h */,
750C5122755F1BE935876FE7CAFA3AB0 /* LOTShapeGradientFill.m */,
928B367255E2A8B5583A35B28C3A600D /* LOTShapeGroup.h */,
B44B47AEEE32236079943734BB90FE84 /* LOTShapeGroup.m */,
F412BAE744C60A29AACE5449F5FB118D /* LOTShapePath.h */,
FA9313E2F2C3914AAEFF1A31C4F2F4FB /* LOTShapePath.m */,
5861B83E5F354A3BC5E6428BE4FF7337 /* LOTShapeRectangle.h */,
19FF690E63EDEF1B93CBFA9813C47910 /* LOTShapeRectangle.m */,
2C48CE3076FA22F67899C70105E863B1 /* LOTShapeRepeater.h */,
95084E2ED1061A2B34985E775A6053D1 /* LOTShapeRepeater.m */,
BF76150560E2782C233F8A2DF0C2E1BB /* LOTShapeStar.h */,
AA825EEB6529E0C610518AB296CF8037 /* LOTShapeStar.m */,
5D6DA6F4B61C0AD832A7FD3EF9882B0B /* LOTShapeStroke.h */,
5885A3646E95D545186619C3DDEB5467 /* LOTShapeStroke.m */,
2423873A2F0D67DE8BF3DC377E8125EA /* LOTShapeTransform.h */,
047419202AA27FE9C4407DF580AD251E /* LOTShapeTransform.m */,
532DA45C34FBFD5D3B2F4C1E00DC890E /* LOTShapeTrimPath.h */,
A6E27DCE325279E7A18A7EB8C5DF7277 /* LOTShapeTrimPath.m */,
BC4F7383C3AA04E8CF94F60610314C42 /* LOTSizeInterpolator.h */,
0290D57291FEA3C6F2476E73AC520557 /* LOTSizeInterpolator.m */,
CD622F5F1B909344FD8FD8D339DE2BF0 /* LOTStrokeRenderer.h */,
058E2FE3D91B1C833FB1EB46A4F173CA /* LOTStrokeRenderer.m */,
AECDEDF270760B0ADEB6917FCE9BCCFC /* Lottie.h */,
16A38B2A03F66049526108BDA69A42C7 /* LOTTransformInterpolator.h */,
78B6013B9756331B3B476CD7C24E6602 /* LOTTransformInterpolator.m */,
B4A2B6CD0BD774F904895EB7041CDE5F /* LOTTrimPathNode.h */,
0B3CEC082C4788A52B8BF78A78AE3850 /* LOTTrimPathNode.m */,
D3E6CE31C1DA4D87630BA746CF1B7008 /* LOTValueCallback.h */,
63D477E7D3FDF686287CD0ECA3934EE6 /* LOTValueCallback.m */,
FE0227CD25AB8454730CA28A603804DB /* LOTValueDelegate.h */,
F3EB3539B9375B3D4E74923331249234 /* LOTValueInterpolator.h */,
774BD8258EDF17185BE74E946ECB82C8 /* LOTValueInterpolator.m */,
97AE4BE4C872EB643E06646EFE308AE7 /* NSValue+Compat.h */,
40D938A4E19DD05D98CFE48BAD40FD4F /* NSValue+Compat.m */,
F2A6BFE9B20C767CC87A10A385A64C19 /* UIBezierPath.h */,
88D1D7CE4AB9AAC8E79C92EBC79E622D /* UIBezierPath.m */,
B3203EDC0FAFF60C23194D7C08095C71 /* UIColor.h */,
4B0AE4F2C9486F01B02DAE031C6F6DF3 /* UIColor.m */,
A2FA167EBBBE574A7E9FFB7A89A34745 /* UIColor+Expanded.h */,
63989A571BEB18EA0AD4EB887056803B /* UIColor+Expanded.m */,
8A7F87C49B41328748CAE744C26DFD18 /* Support Files */,
);
path = "lottie-ios";
sourceTree = "<group>";
};
B2F412F82E176F61C8A3E4453ABA057D /* extobjc */ = {
isa = PBXGroup;
children = (
C1EED86E5D5DDE4E77203D72A21D278F /* EXTKeyPathCoding.h */,
0A4135FEBF910AA7E46693704794BB18 /* metamacros.h */,
);
name = extobjc;
sourceTree = "<group>";
};
B542C8AAE2C85C38C8E3AC1FDD825959 /* Support Files */ = {
isa = PBXGroup;
children = (
8F4D1BE391F5BE881FDB3A83B9B80FE6 /* MJRefresh.modulemap */,
1BA83D129865BE8B1AF244FFEE65B02C /* MJRefresh-dummy.m */,
1425AB8C4AF0C63CA45AC0CBFA89094D /* MJRefresh-Info.plist */,
29AEF782EF0DEC13019191C65321CEF0 /* MJRefresh-prefix.pch */,
59E9F8723D6843A6912D76B9E5CA97D6 /* MJRefresh-umbrella.h */,
A38F5EA757315A0F106468FFAF09AF9E /* MJRefresh.debug.xcconfig */,
E99238B3B7077C904EC25DC5B9ECCC99 /* MJRefresh.release.xcconfig */,
);
name = "Support Files";
path = "../Target Support Files/MJRefresh";
sourceTree = "<group>";
};
BAB5687D74ABA27B93F83E31655890B6 /* Pods */ = {
isa = PBXGroup;
children = (
79CD6C81235B91A16DCEC5F5EBA6FD10 /* AFNetworking */,
2BBB3C580ABEECC88EFDE1E7CD8B7AC8 /* DKNightVersion */,
AC6E5D78DCAF95C23BF15E4B6EEE78CB /* lottie-ios */,
7BC9BA89F371D235AC7900829C37517C /* Masonry */,
4BF3D09A49DB1474443C23A030934314 /* MJRefresh */,
8994C37504138B8373A79C6389287D5B /* YTKNetwork */,
);
name = Pods;
sourceTree = "<group>";
};
CA78ACA8CFFD34A12EFE73A9A6E290D4 /* Support Files */ = {
isa = PBXGroup;
children = (
C997ED82CB8CF30A51ED7FDAEC1FBBB9 /* AFNetworking.modulemap */,
A1963CED2F06784620621B5D51B4A7E3 /* AFNetworking-dummy.m */,
8641E9F9D2C121BF7EEB9C06C5D37BF2 /* AFNetworking-Info.plist */,
13FC4E1ED1CCF58A44C5638276B62D01 /* AFNetworking-prefix.pch */,
3C25A65E12B6E66FCB8F5A5BE38BD116 /* AFNetworking-umbrella.h */,
98F06A61CAF0486DFFF0AB4A37997F9C /* AFNetworking.debug.xcconfig */,
8412ABE94492D25B192011885146AB69 /* AFNetworking.release.xcconfig */,
);
name = "Support Files";
path = "../Target Support Files/AFNetworking";
sourceTree = "<group>";
};
CF1408CF629C7361332E53B88F7BD30C = {
isa = PBXGroup;
children = (
9D940727FF8FB9C785EB98E56350EF41 /* Podfile */,
03C5C200A0787E300053CFA8F53CA094 /* Frameworks */,
BAB5687D74ABA27B93F83E31655890B6 /* Pods */,
E955EA86D23C7A7697AA29174214EBC8 /* Products */,
9BCB4A36FC7163A3E44E4A38E42FCAAF /* Targets Support Files */,
);
sourceTree = "<group>";
};
D31A7A5FCE1774A2C3190B2B9E00C576 /* Support Files */ = {
isa = PBXGroup;
children = (
4CC21A42C6735FBF6A7364310AD7E2B3 /* DKNightVersion.modulemap */,
E3E8196EA3450DB9E10A4E7C7699E8EB /* DKNightVersion-dummy.m */,
0C37016447AFDD654E6DDCB5FF2369CA /* DKNightVersion-Info.plist */,
1566B0991C0DB7CABA189D2B0CDADC53 /* DKNightVersion-prefix.pch */,
1E577153A43899B8C3580A621842D3B2 /* DKNightVersion-umbrella.h */,
0B59297FCD4B4694AF5A47F77DC2D7C6 /* DKNightVersion.debug.xcconfig */,
EF04523CE6B6593E979702B05B07FF2D /* DKNightVersion.release.xcconfig */,
);
name = "Support Files";
path = "../Target Support Files/DKNightVersion";
sourceTree = "<group>";
};
DE638BB73C11DAA9DE9F7519F08A1E69 /* CoreAnimation */ = {
isa = PBXGroup;
children = (
AA912DBC1C25C68174C418AA66370ED0 /* CALayer+Night.h */,
CFA5C6F6E42856BDA69378126D9DB3FE /* CALayer+Night.m */,
A683AFE58658DD38FFF2BC306B542322 /* CAShapeLayer+Night.h */,
5FC85FD9AD0AAC09998353E4B9FF5F89 /* CAShapeLayer+Night.m */,
7163D2F5FC7906B94D1069EC69561F9A /* CoreAnimation+Night.h */,
);
name = CoreAnimation;
sourceTree = "<group>";
};
E955EA86D23C7A7697AA29174214EBC8 /* Products */ = {
isa = PBXGroup;
children = (
A4FA15D44DF6BAC7550EDEED10862AA3 /* AFNetworking */,
D49390DC16189A74052FAC3455F18249 /* DKNightVersion.framework */,
51BA97E8B5085EFFB47BC9C0B785CEA7 /* Lottie.framework */,
1FFED36A657123030ABB700256D73F15 /* Masonry.framework */,
E49D6D248DD1CEE584E6776B9164A1B2 /* MJRefresh */,
9BD6F0B21CDAE9FA26016DC870A83047 /* Pods-DreamSleep */,
601EEA66C9A6080A11C1ADE5E2A91AE1 /* YTKNetwork */,
);
name = Products;
sourceTree = "<group>";
};
EC524A86485DA3EE9AECBC048A08069C /* Resources */ = {
isa = PBXGroup;
children = (
434E0C8B0AE9DA8CCC89E971F43EDC7E /* DKColorTable.txt */,
);
name = Resources;
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXHeadersBuildPhase section */
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;
};
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;
};
5E69F467EF00FEE4D71D8EF290CA3063 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
BC4B0E7C0ADD72CA5CF3CE76EC10E79A /* Pods-DreamSleep-umbrella.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 = 68DECF6DC066EDBC4D6A0C4AB4E76015 /* Build configuration list for PBXNativeTarget "Pods-DreamSleep" */;
buildPhases = (
5E69F467EF00FEE4D71D8EF290CA3063 /* Headers */,
27877D0322B5B5708428130F42A3609E /* Sources */,
3C8F3783EB65F8EFFD4E15C4739F769A /* Frameworks */,
C92D1521336AB64E1B69548599B3313C /* Resources */,
);
buildRules = (
);
dependencies = (
6A314DA80A78D30853BD717B061F6CC0 /* PBXTargetDependency */,
3704D61FAC0AA8B68BDC00C544DBB8A1 /* PBXTargetDependency */,
C6C6E72B374704044C6B07719CBAD086 /* PBXTargetDependency */,
B187F40A36104417FD34DBFF0A446053 /* PBXTargetDependency */,
B40D5BBE194441F43485DAE85EB1FF40 /* PBXTargetDependency */,
6EF3260234FA3E27264397435BBD3013 /* PBXTargetDependency */,
);
name = "Pods-DreamSleep";
productName = Pods_DreamSleep;
productReference = 9BD6F0B21CDAE9FA26016DC870A83047 /* Pods-DreamSleep */;
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 = (
EBB4225A253B464D5CEF312AF07909E1 /* 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 = E955EA86D23C7A7697AA29174214EBC8 /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
0130B3724283586C0E9D2A112D4F2AA1 /* AFNetworking */,
A10D306FBCE61B6A00F5D9E74036D1E9 /* DKNightVersion */,
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;
};
79C334604FAF0EE379503CBA0B98D605 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
C92D1521336AB64E1B69548599B3313C /* 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 */
27877D0322B5B5708428130F42A3609E /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
2A255178887519C19685DFA3A3F128B1 /* 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 */
3704D61FAC0AA8B68BDC00C544DBB8A1 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = DKNightVersion;
target = A10D306FBCE61B6A00F5D9E74036D1E9 /* DKNightVersion */;
targetProxy = 301FB2E6D0D44D8CF0AC996A8DA32D79 /* PBXContainerItemProxy */;
};
6A314DA80A78D30853BD717B061F6CC0 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = AFNetworking;
target = 0130B3724283586C0E9D2A112D4F2AA1 /* AFNetworking */;
targetProxy = FDCC7E64C0ACED4E84735DF6A8F8DA25 /* PBXContainerItemProxy */;
};
6EF3260234FA3E27264397435BBD3013 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = "lottie-ios";
target = 0B967D7F8561D42493EE289EC8D450D1 /* lottie-ios */;
targetProxy = 429D7567E449E83622E54A16636654D4 /* PBXContainerItemProxy */;
};
B187F40A36104417FD34DBFF0A446053 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = Masonry;
target = 55AF53E6C77A10ED4985E04D74A8878E /* Masonry */;
targetProxy = C9EA58ABB94B21466E18653D1E9C0265 /* PBXContainerItemProxy */;
};
B40D5BBE194441F43485DAE85EB1FF40 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = YTKNetwork;
target = AC51EA5BE1682F8277BE5F13677E147C /* YTKNetwork */;
targetProxy = 8F00DC6C40019772B5B47AE6541516D4 /* PBXContainerItemProxy */;
};
C6C6E72B374704044C6B07719CBAD086 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = MJRefresh;
target = 6868056D761E163D10FDAF8CF1C4D9B8 /* MJRefresh */;
targetProxy = 451E4B2617557A427F10257E58E76306 /* PBXContainerItemProxy */;
};
EBB4225A253B464D5CEF312AF07909E1 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = AFNetworking;
target = 0130B3724283586C0E9D2A112D4F2AA1 /* AFNetworking */;
targetProxy = 49E19352EC5806AE6909C6B80D2032C7 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin XCBuildConfiguration section */
07A26A8DC3FA2257B9781EEA5425ADA1 /* Beta */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 8412ABE94492D25B192011885146AB69 /* 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 = 18CAF1B8E5AB31B44016CEE78582DBD0 /* 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 = A38F5EA757315A0F106468FFAF09AF9E /* 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 = EF04523CE6B6593E979702B05B07FF2D /* 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 = EF04523CE6B6593E979702B05B07FF2D /* 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 = 6CE07551088B749294EAA7EA21500C6F /* 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;
};
3B7101CF407867C1571E8247841211D7 /* 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;
};
49DA6326327A7F4567066DB8F0948974 /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 735877C35A6FD8E224DAFFE1E089FF42 /* 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;
};
4A8566A846A536E476506E02FD26DA50 /* 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;
};
4D7753F7F97FF192662542E01317BFA1 /* 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;
};
56BC63C3B30F4EEFD492C3A7C1CF7C70 /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 98F06A61CAF0486DFFF0AB4A37997F9C /* 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 = 0B59297FCD4B4694AF5A47F77DC2D7C6 /* 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;
};
5DC22DA1865D0203936326807047AB4C /* Beta */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = E99238B3B7077C904EC25DC5B9ECCC99 /* 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;
};
75F6AB53BD7DBE881729C74DB4F976A4 /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 6CE07551088B749294EAA7EA21500C6F /* 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;
};
887691A6BA28894565425AE29D929982 /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 9A11DA8B07C3D0F7E87A91DF7CB2E6A0 /* 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 = 8412ABE94492D25B192011885146AB69 /* 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 = 9A11DA8B07C3D0F7E87A91DF7CB2E6A0 /* 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 = E99238B3B7077C904EC25DC5B9ECCC99 /* 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 = 7E6950707CFC0E9B2AA716CB285D6D6D /* 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 = 18CAF1B8E5AB31B44016CEE78582DBD0 /* 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;
};
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 = 9087CF6CC5B1DC7AE436CC83D09814BF /* 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;
};
2DB2FE71F92A4525693E4DFD16041F80 /* Build configuration list for PBXNativeTarget "YTKNetwork" */ = {
isa = XCConfigurationList;
buildConfigurations = (
AA36389C9FAC776FD19566EEB8FC0A1F /* Beta */,
DA453A51A500223D4938AFAC46CAEC12 /* Debug */,
887691A6BA28894565425AE29D929982 /* 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;
};
68DECF6DC066EDBC4D6A0C4AB4E76015 /* Build configuration list for PBXNativeTarget "Pods-DreamSleep" */ = {
isa = XCConfigurationList;
buildConfigurations = (
3B7101CF407867C1571E8247841211D7 /* Beta */,
4D7753F7F97FF192662542E01317BFA1 /* Debug */,
4A8566A846A536E476506E02FD26DA50 /* 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 */;
}