-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.pbxproj
More file actions
3705 lines (3693 loc) · 203 KB
/
project.pbxproj
File metadata and controls
3705 lines (3693 loc) · 203 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
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objects = {
/* Begin PBXBuildFile section */
021B162AD29626DB3BF9DD800A0324B1 /* AHFMModuleManager.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D8C23A5804F449EC898D80991657663B /* AHFMModuleManager.framework */; };
02D7B3BBA2DB05CBCF27E873B27F7ECF /* Keychain.swift in Sources */ = {isa = PBXBuildFile; fileRef = D16648E9F08C8867D60DF93151EF4FA4 /* Keychain.swift */; };
032E3611F2551D75AF4A81004054F7C2 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E057CB4FC35BA5D3A7EB072EAA33632A /* Foundation.framework */; };
03BF3196AA17BB82C6F3563EBC645E4C /* Response.swift in Sources */ = {isa = PBXBuildFile; fileRef = F5F7441BC160130B0A5CD9BDFD98AE84 /* Response.swift */; };
0598CE735F4731B2D270CE29BB75BBC7 /* AHFMServices.swift in Sources */ = {isa = PBXBuildFile; fileRef = 43DF7754AE6F8BDE2CDB335315D1C9F1 /* AHFMServices.swift */; };
0798AA6873A0A15F7EC1378692FF9265 /* AHFMDataTransformers.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8212BC8B9E60FC4AEA6AB378EC648ADE /* AHFMDataTransformers.framework */; };
07A5E60837E229D8A40A04C4CDD71CB3 /* AHFMSubscribedShow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8632CE85D9D3FD2FEA3FE73F4E3C5893 /* AHFMSubscribedShow.swift */; };
07F612198032CD3AF00198F98B33BE91 /* AHDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6621B430541CA6D6752C8586575779D6 /* AHDatabase.swift */; };
091CD2CD4160503446DD4F68D0DA0A46 /* AHFMEpisodeInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 91F029BBDB40417C86F39352470F9D7A /* AHFMEpisodeInfo.swift */; };
0A53D7B5A76FBFC0FBAB456FD871AD1A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E057CB4FC35BA5D3A7EB072EAA33632A /* Foundation.framework */; };
0C1F07A6A7DE900F0EA9DF0EF9361F18 /* Notifications.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3CCAB82DAC27A5BACC753E6519093BD4 /* Notifications.swift */; };
0DE24BBA949385A1908C8866640A3E0A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E057CB4FC35BA5D3A7EB072EAA33632A /* Foundation.framework */; };
0EF687CAE7BE1DE4FA3EC5BA1D17EDF2 /* ParameterEncoding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 077B91EF15FF6E632CFA22F402005904 /* ParameterEncoding.swift */; };
16D380E8E88117EBA4CB20051CF92689 /* AHFMDownloadListServices-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 39006336C3E9FC7AFC076A66269ECC71 /* AHFMDownloadListServices-dummy.m */; };
180256E6E778FFE30134F2BD35E50216 /* AFError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 060B2E6D69A4DCC1898E9CCB42EB0119 /* AFError.swift */; };
197AA1E5909CAD7EC9756167CB136FBC /* Validation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 05A9349D58842FD4302D846DE7858422 /* Validation.swift */; };
20BD6D1587B4249B949754E60580AE74 /* AHFMDataCenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4DFDD1A00530751F5136120D5DE19C26 /* AHFMDataCenter.swift */; };
25A6CB63A53FFEF583E65212DB5676DF /* Timeline.swift in Sources */ = {isa = PBXBuildFile; fileRef = 216B462600AA2A7C9119DAE0E92475ED /* Timeline.swift */; };
264A18DEA779B6CB51E18F37232925F8 /* AHFMServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 49C9B7523BC7C0FA9F9373E57E2E9933 /* AHFMServices.framework */; };
29CF40A26C283E245D8E35CB9841DAA3 /* Alamofire.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E7272BC19DA52F8D258A22D1C8295B44 /* Alamofire.framework */; };
29EA86E05D5CA579464B34D5565F52D5 /* AHFMNetworking.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D92DCE5D998958465BBDAC2907283B85 /* AHFMNetworking.framework */; };
2B5588F794764EC8A06EE4AC2C8A60BF /* AHFMDownloadListService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8833E3D39312A9E0A0EECA4572BD3561 /* AHFMDownloadListService.swift */; };
2F9A0013CA2432AF4536E95723B8B019 /* UIDeviceExtension-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 12C9764293689D62D6399324DEEF9B3A /* UIDeviceExtension-dummy.m */; };
31C942E2ACFD80D63AEB99EF45C3DA50 /* AHDataModelQuery.swift in Sources */ = {isa = PBXBuildFile; fileRef = E6AB68BAE5246D215E988A150221C89C /* AHDataModelQuery.swift */; };
326D6DBF5CE359DB981C0A7913DC024F /* ServerTrustPolicy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9B6C793F5C0B5BCAD6E56C826633771D /* ServerTrustPolicy.swift */; };
32A16F3BB3E05501846FCEE1D6FF9E0A /* AHFMShowTransform.swift in Sources */ = {isa = PBXBuildFile; fileRef = 669294609D5FF5554CB7B16A7381CA06 /* AHFMShowTransform.swift */; };
32C67FD25A2827FB7DC080CCC5C25C34 /* AHFMDownloadCenterServices-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 933136F8F406808079CAC22590A01004 /* AHFMDownloadCenterServices-dummy.m */; };
3354A1C9782FA4828E90F75ADE6B3EB8 /* Pods-AHFMDownloadListManager_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 35CB2638F053CAE3683B8EC11DBF0301 /* Pods-AHFMDownloadListManager_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
3676828323CE201A956CC33B1669435C /* MultipartFormData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 467F20C77660C7B898D18E334C443065 /* MultipartFormData.swift */; };
36983FD65BA2F41AB4DADD35E3D1150E /* AHFMShow.swift in Sources */ = {isa = PBXBuildFile; fileRef = C079C0677213E63BBD339ECECA852E1E /* AHFMShow.swift */; };
3BB613FE31A4E954B748E961BDD31E71 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E057CB4FC35BA5D3A7EB072EAA33632A /* Foundation.framework */; };
3DC090B6C3C2240140ED92E593C234F6 /* AHFMBottomPlayerServices.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE3506C178CA865F23E24A28BEB5E990 /* AHFMBottomPlayerServices.swift */; };
3E004113024187B4D22F2E97D939CCB9 /* AHFMDownloadListManager-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D40E331414C46B2A905ED1DF27A7122 /* AHFMDownloadListManager-dummy.m */; };
4395197E68728BD208DFD23E4BC2C38A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E057CB4FC35BA5D3A7EB072EAA33632A /* Foundation.framework */; };
44A22D271AD37088556B5285ED52A89B /* Migration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3F5374E73E46254F83E925ADE306636D /* Migration.swift */; };
461731A766D9B37FAE098A992A7B6AD9 /* AHFMDownloadListServices-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E5A744B099471BAFA6777088218C080 /* AHFMDownloadListServices-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
4894D8714668A8D59130FF85746C1051 /* KeychainAccess.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0F59FD881A1D20A5AE07C94F02C2B0A5 /* KeychainAccess.framework */; };
4BD5EB7257634C0D6BB8B2D7CCB9CCB7 /* AHFMBottomPlayerServices-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D11ACF49BE6416D931EBB2479A1929B6 /* AHFMBottomPlayerServices-dummy.m */; };
4E00B3D0186F0516EC1A2AEC38C0FDF8 /* AHServiceRouter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 733EDADDC0CC37777557DA38069FDF80 /* AHServiceRouter.swift */; };
4EEE6F31829B94C057E75C4EAFF2EA70 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E057CB4FC35BA5D3A7EB072EAA33632A /* Foundation.framework */; };
51116B09F8854E2522CF292A0AF49193 /* Alamofire-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A04BA9C0781E43220380A945877A8C3 /* Alamofire-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
5515D8354B789BD08F4DB2C6A0211DC2 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E057CB4FC35BA5D3A7EB072EAA33632A /* Foundation.framework */; };
5D9BCFFAAF02E8C054049C50D7FB40C3 /* KeychainAccess-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D27807473348E8F774CE941A037FA7F2 /* KeychainAccess-dummy.m */; };
5E600509C8677CE64AEE686434159490 /* DispatchQueue+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7F83D51B5D4DF6B2D158A89E35E34563 /* DispatchQueue+Alamofire.swift */; };
62EB447CD35174F326FB00E3A90732F5 /* AHDB.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D1205A8EB6075CE7211676C9C2A535B /* AHDB.swift */; };
643D9B03C6EC84FD3D338DC84489A65C /* UIDeviceExtension.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F782B5ACEE08A8BC1A607B7DACC752CE /* UIDeviceExtension.framework */; };
6AB52CE3E0A28FA60837790EFC1AF44D /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E057CB4FC35BA5D3A7EB072EAA33632A /* Foundation.framework */; };
6D6B8A5B4F64B4101361ED4D851754F2 /* ResponseSerialization.swift in Sources */ = {isa = PBXBuildFile; fileRef = E8E6A5393BB12E3B73BE307C403992C3 /* ResponseSerialization.swift */; };
7129155284390922247EF7D8B877D703 /* Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = BEA107643EBD81BBE618AA20A4A07B74 /* Alamofire.swift */; };
718AE3961AFB3CE8D046C9AC896C5247 /* AHServiceRouter-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = B31B866D1DCDFE680C8F2425BADBFF17 /* AHServiceRouter-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
735845A54D77EFFCC10BFD5192037F49 /* NetworkReachabilityManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = FAEB7D25F764BB11F041A64E81B64031 /* NetworkReachabilityManager.swift */; };
7476818E4CBE153EA05B00FA5B1EC211 /* AHFMDataCenter-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C01E587CB0D436E24FB389B01A748F3 /* AHFMDataCenter-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
756ED8E5A3272F51E9B1784A50E59453 /* AHFMModuleManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = A2E226A26930678C2196AC64814B8129 /* AHFMModuleManager.swift */; };
75CFD5AF55981E69459402A6F1D6E372 /* Request.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7E77370AFF527AB21C6AC5B7923A0709 /* Request.swift */; };
76980E93F96E57CEE41EDC4FC57C7786 /* KeychainAccess-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = F535E7715CE97BE496753C7AE8B14DEF /* KeychainAccess-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
77A77FF94D6E9BA86811C5D16A3A7ADB /* AHServiceRouter.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EC790844D884553D49FF89A426EB8D6F /* AHServiceRouter.framework */; };
799010F4D96955C6E5B001251DE6A6D8 /* AHServiceRouter-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C876E978ECB495C2A479267D1BCCD1CB /* AHServiceRouter-dummy.m */; };
7AC60B47FAC45A05D7FD166FFB96AEA6 /* AHFMNetworking-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B6EFE611945D2FCAECFD071F99A524D /* AHFMNetworking-dummy.m */; };
7BBE0870C5F3C9F58E84D938FA4EFD24 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E057CB4FC35BA5D3A7EB072EAA33632A /* Foundation.framework */; };
7D4238CC09B0D0FD4BF30E6D33F241E7 /* AHFMDownloadListManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 99BA57023B84394A597CE2B007DC89F5 /* AHFMDownloadListManager.swift */; };
7E31C678E4B036BE8C1A01984FE58C43 /* AHFMDownloadCenterServices.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF26FF6DD2D7C46838D8338E1AC507B0 /* AHFMDownloadCenterServices.swift */; };
80CAD763929B7CEE8D78450FBF9641D9 /* AHFMModuleManager-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 92FD55F182A8C8499865F422CD640BD8 /* AHFMModuleManager-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
816B89B457C4E75B04210A37DA4F3AE6 /* module.modulemap in Sources */ = {isa = PBXBuildFile; fileRef = AEB2DEAA5EEC2635A55582B701824A54 /* module.modulemap */; };
82223E634611AA235CFCE61B3784F4AE /* AHFMDataCenter-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D3971D35D09E52AA2B47D300745BEA84 /* AHFMDataCenter-dummy.m */; };
822D63FE4AC0900EDA7299614C5656B6 /* SwiftyJSON.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AEB59A2D9E099A774A5FBF51CAA95B80 /* SwiftyJSON.framework */; };
8426D017CAFF19347FAF72F6A0903A0F /* AHFMBottomPlayerServices-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D2E7A5FB90B0017F0E841223A708C722 /* AHFMBottomPlayerServices-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
8A43301A1FD1C5B83B57B60A76DA9886 /* SwiftyJSON.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AEB59A2D9E099A774A5FBF51CAA95B80 /* SwiftyJSON.framework */; };
8B387AE80B7CE5528B5EA8530B7E9173 /* AHDataModel-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C00461727460DEA92F7341D6849992B9 /* AHDataModel-dummy.m */; };
8C41A2B6BA4500CDD843A9856BC3B25A /* AHFMDownloadListManager-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = E77E791760640B46C14F7183D0DC6379 /* AHFMDownloadListManager-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
8E746070489515D6DC619B33C8A77AFF /* AHFMDownloadCenterServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3C980341F46237CE9F9B98D4CCDF670B /* AHFMDownloadCenterServices.framework */; };
8F9D518DD286515FB433392194E168C6 /* AHFMDownloadListServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 878E9A0640011D87B623C20AC1CF19D4 /* AHFMDownloadListServices.framework */; };
903EFCA68B1500F2472DD967E8683E62 /* AHDataModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 714F9E5A19CD08D7FD56550D43042F42 /* AHDataModel.swift */; };
90D91E367B83E443D7B2487AC99C682D /* AHFMDataCenter.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0683CE554612127A3E98EAF12CAECCE0 /* AHFMDataCenter.framework */; };
9144BAC928C194A951AB74091F6CCB2F /* Pods-AHFMDownloadListManager_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = BC3DE9674069D19AC857C44FDB503AF8 /* Pods-AHFMDownloadListManager_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
9517FF3DF55776B4927407BBB5C66884 /* SessionDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 02140326AB66070F0E225B029AFBEDE7 /* SessionDelegate.swift */; };
95CE55CB17944E5498A1ACCDC250DC08 /* AHFMEpisodeTransform.swift in Sources */ = {isa = PBXBuildFile; fileRef = CB883CDD7C1910A8D39646F5EBD0BE6D /* AHFMEpisodeTransform.swift */; };
96F8EEEC59E2F591C5027D9577732B9D /* AHFMServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 49C9B7523BC7C0FA9F9373E57E2E9933 /* AHFMServices.framework */; };
9DCB18FD7DDE588090ECA202786A66FC /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E057CB4FC35BA5D3A7EB072EAA33632A /* Foundation.framework */; };
A5068F3D2B2FFAA5F22177BC7026F21B /* UIDeviceExtension-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 52D8A360427D3533ED923E5A6A635D9F /* UIDeviceExtension-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
A586A6A878CB413F5672A939CECA7BFB /* AHFMDataTransformers-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F87558E54450D0ECA1A00D7ED1B293A1 /* AHFMDataTransformers-dummy.m */; };
AB2E638C38C54111C700A6E06E3F10AC /* AHDataModel.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3C1F0F2D9D7260DA380F688D77CE5A56 /* AHDataModel.framework */; };
AD6C6028EF860C3961B4410C76EE94BA /* Manager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3C54696E985B1A00FEDA56D9CECCEBC9 /* Manager.swift */; };
AE4DF20360653F2D22563D6C7B29BCC9 /* AHFMEpisode.swift in Sources */ = {isa = PBXBuildFile; fileRef = C425FA1E6F8D1E1722979A33E543A3C2 /* AHFMEpisode.swift */; };
AE70A5B292B35F090433AFEEC1A2234B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E057CB4FC35BA5D3A7EB072EAA33632A /* Foundation.framework */; };
B1D0CB89982FC8DAB74254794B6B8DFE /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E057CB4FC35BA5D3A7EB072EAA33632A /* Foundation.framework */; };
B4B9E30B53AEB1C380C9C0127B745495 /* AHFMDataTransformers-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 715CD933BE89001402A63287D437ADDF /* AHFMDataTransformers-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
B5F0007CEDF8921CF49F6AE64197C442 /* UIDeviceExtension.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F782B5ACEE08A8BC1A607B7DACC752CE /* UIDeviceExtension.framework */; };
B8B32B9F15B11ACD3F619D027E07D4D9 /* AHFMServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 49C9B7523BC7C0FA9F9373E57E2E9933 /* AHFMServices.framework */; };
BA507E67DD83E6117FCCAD1C5D2F5CEB /* Result.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8F38ED8D7B3AC653FE1E6D58E709E1FB /* Result.swift */; };
BAAC4293A822346B1F27573BF927E1BE /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E057CB4FC35BA5D3A7EB072EAA33632A /* Foundation.framework */; };
BDB39D8A5271840091C2FEDAC4227ECB /* SwiftyJSON.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AEB59A2D9E099A774A5FBF51CAA95B80 /* SwiftyJSON.framework */; };
C050ACC8FA54AC5A6152AE638159FA91 /* AHFMNetworking-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 90787BEB71ACD1B7E65D78F333DE5C80 /* AHFMNetworking-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
C1A19DEB127001BCBE55C9F978215D14 /* AHKeychain.swift in Sources */ = {isa = PBXBuildFile; fileRef = 76352CC9CD61FFF0AFAAADF941616CC5 /* AHKeychain.swift */; };
C2E5E75A1885D76B6C49CA925B2D2252 /* AHFMDownloadCenterServices-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 9568AD1A276F5C94DA2301208F93D60A /* AHFMDownloadCenterServices-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
C59B9CC3A3AD80FD21D729BBDB4F9E5F /* Alamofire-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 823A20346870C904887E3D1FA9B9724E /* Alamofire-dummy.m */; };
C771EF72D11AD7C35B3219814EB4829E /* SessionManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7B49CC732F6AAD83BE99D276217E7ECC /* SessionManager.swift */; };
C8A6B9A377696EFA06DF4E7884928EA0 /* TaskDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = EC52ED3F01430653F79E97DDE06FEDB7 /* TaskDelegate.swift */; };
CD3C1E69BEDB9C08B2596DE536F0B335 /* Migrator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2FE168C9C0ABBF0CFB8C281B1E9687E5 /* Migrator.swift */; };
CEC905D7CA8E5F75FAF34DCC841AD866 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E057CB4FC35BA5D3A7EB072EAA33632A /* Foundation.framework */; };
D12B8D45D63E0511EA511D9A07A9E799 /* AHFMModuleManager-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 333463A8FF2C55ADC7B0B232DFA80B5F /* AHFMModuleManager-dummy.m */; };
D5B3D8C2D59E9FFD96AB2D3C39768F2C /* AHDataModel.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3C1F0F2D9D7260DA380F688D77CE5A56 /* AHDataModel.framework */; };
D64FE85AC3C06F7D41D9FE1CD85B9B03 /* AHFMEpisodeHistory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 873101BB44CF07C4DD9C8B4EE88C8F01 /* AHFMEpisodeHistory.swift */; };
D6D7C7C19366E1763F31CCB5A0ED4925 /* module.modulemap in Sources */ = {isa = PBXBuildFile; fileRef = 503B706F2A7CD677D83A4AB43351AE96 /* module.modulemap */; };
D7BEC70186B9A6413CC9F888980D5472 /* Alamofire.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E7272BC19DA52F8D258A22D1C8295B44 /* Alamofire.framework */; };
D844D0763A90423A15D2ED4F4B26FE96 /* AHFMBottomPlayerServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A479FBD15E4920B07B48DC97FDF4B483 /* AHFMBottomPlayerServices.framework */; };
D97A02594385F188100C50EF3544CCAC /* AHFMServices-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 54BF1F94D91D2D75C5732BBF9E9560F9 /* AHFMServices-dummy.m */; };
DC5C5F536087B53D9F2A21ECBD3D6AC6 /* Pods-AHFMDownloadListManager_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4ADE73CE314EB479FAD04EC37699AA39 /* Pods-AHFMDownloadListManager_Tests-dummy.m */; };
DFC99FEE9E1FDEF1A62A7F33B8A1A4A5 /* AHNetworkConstants.swift in Sources */ = {isa = PBXBuildFile; fileRef = 685495B51D825F0C9802A9340FA16CCB /* AHNetworkConstants.swift */; };
E27E1606616B143FCA883D371E0A38AA /* KeychainAccess.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0F59FD881A1D20A5AE07C94F02C2B0A5 /* KeychainAccess.framework */; };
E3A59E60DABAB10E2F6EC8452AADECAE /* UIDevice+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3CB2E0994B7B13B270F058445B60E96E /* UIDevice+Extension.swift */; };
E48A0477E0D9A1A5155398F6650E7021 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E057CB4FC35BA5D3A7EB072EAA33632A /* Foundation.framework */; };
E8856DCBBD8410624FFED283B38F64FA /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E057CB4FC35BA5D3A7EB072EAA33632A /* Foundation.framework */; };
E886601C65F6A7AFF40781123E84556E /* SwiftyJSON.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5B10665BABEA124AAEF33E5E9982C0FB /* SwiftyJSON.swift */; };
EB9FCDD307E288E6F785E195DFE276BB /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E057CB4FC35BA5D3A7EB072EAA33632A /* Foundation.framework */; };
EBB0B36F14342B1132D3C4C0A19BAB08 /* SwiftyJSON-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 22A5DDF2A4D1B965C57E554C84A501AA /* SwiftyJSON-dummy.m */; };
ED74D6C8098DA3FBDE71F9F2C3B4343A /* AHFMServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 49C9B7523BC7C0FA9F9373E57E2E9933 /* AHFMServices.framework */; };
EE147E0DA928218E73A4A5A6A11A262B /* AHFMNetworking.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0172868897AFD39F4BF01ED8A04F4DAF /* AHFMNetworking.swift */; };
F1CC403B475A55892913D014B94E6EB3 /* SwiftyJSON-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DCE62EC33AD85474FDCE1E5BAC54AD9 /* SwiftyJSON-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
F1E0647F2108F3BAB31A738964057F53 /* OAuth2Handler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4FF8EE05AA7D5A5059FF9287D7DC67AD /* OAuth2Handler.swift */; };
F7C2B26233D486908A223D7AD91321E7 /* AHFMServices-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = DF8DA03D9CA4103DABFA319E4AF64AEC /* AHFMServices-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
F9733CB4932C2DEBDBB574480D2A788F /* AHDataModel-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = FAC236FB71C0C7762136FCFD407F56BF /* AHDataModel-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
FBEB93C14BEB82C970FCCA3D63F295A4 /* AHDBColumnInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = A5F5266A67D0F50882B25D84CEE4D7C4 /* AHDBColumnInfo.swift */; };
FCE04E54925C41AC25A34ECDD20D96C1 /* Pods-AHFMDownloadListManager_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F222C98AA3A0C805B736F925507F89E7 /* Pods-AHFMDownloadListManager_Example-dummy.m */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
0284ACD022C1AD8F8E191365DDBD4E7E /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 816374D115E6FB620EA7042CF7C05739;
remoteInfo = SwiftyJSON;
};
03D25E6A390F52A359A2DCDD28E3C709 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = E1F6066DAC0E9293305836FE01990C48;
remoteInfo = AHDataModel;
};
0BCA24B5E4FFE965A61152D713B71A5B /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 2C0556B697F065A1896342A6B2D98A86;
remoteInfo = AHFMDownloadListServices;
};
0CCF395EF2B2913C7D956A68BBDCE625 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = B48DEE1DBB9E26724B1403271EA952F9;
remoteInfo = AHFMNetworking;
};
10A5921C952F94ED443A13FD59EC3599 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 8DAD3B43F22ED746357F81FC6664D10E;
remoteInfo = Alamofire;
};
12734081A7DE70455C831F8AC892E898 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 820131156757CAB66181ACAEE457B109;
remoteInfo = UIDeviceExtension;
};
14A1BA0A3D22A8931947E26D82F15726 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = D696384A07265F2377B580A248B06C19;
remoteInfo = AHFMModuleManager;
};
1A2B263487D5350E0C10436AEC799D56 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = B6B749285B2BCE20FE45EF0783729029;
remoteInfo = AHFMServices;
};
1FD1B6AF963B14FB6845482F3C0CB0F5 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 8C1EE9091653098E2BCC00F7B1FC00DB;
remoteInfo = AHFMBottomPlayerServices;
};
252D6374965F98E7F9B39F0D6CB33525 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = F5A18086F9846E2596BB93AB753080C9;
remoteInfo = AHServiceRouter;
};
25420D4ECFE432BB3B92154FE3BA8800 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 8C1EE9091653098E2BCC00F7B1FC00DB;
remoteInfo = AHFMBottomPlayerServices;
};
2C039A973F4CC47B307245AAF15C022F /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = DDAFE4CACFA94F5E55117A74924B8BCF;
remoteInfo = AHFMDownloadListManager;
};
2EBCF637032D6346206FBC694203FFE5 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = E1F6066DAC0E9293305836FE01990C48;
remoteInfo = AHDataModel;
};
3936754472EAC5FCC86BB512610DBA5A /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = B6B749285B2BCE20FE45EF0783729029;
remoteInfo = AHFMServices;
};
44DC5B21991FC8D50B0265DEFB40C1E9 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = B6B749285B2BCE20FE45EF0783729029;
remoteInfo = AHFMServices;
};
4A5F234384CE4F458F65985B45F7E03B /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 816374D115E6FB620EA7042CF7C05739;
remoteInfo = SwiftyJSON;
};
4C2430BEC737D310DD25DF2D676A9F98 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = F5A18086F9846E2596BB93AB753080C9;
remoteInfo = AHServiceRouter;
};
5E53DF545CCF9855E126482B0559241A /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 242E2B6A13B700C0010A6133159D615B;
remoteInfo = KeychainAccess;
};
69DC52D2075EC3772BF37010ECF841B0 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = B48DEE1DBB9E26724B1403271EA952F9;
remoteInfo = AHFMNetworking;
};
763DBA01FA60E74450545E5B4B3B9021 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 8DAD3B43F22ED746357F81FC6664D10E;
remoteInfo = Alamofire;
};
82E435EE5444FE2B8A6BB31A1CBAEB1C /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 092D0A40D6045DE75C3E46BC3B97370D;
remoteInfo = AHFMDataCenter;
};
86758C5BEBECA7F3CC2A51CAAB904BE3 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 242E2B6A13B700C0010A6133159D615B;
remoteInfo = KeychainAccess;
};
8D1A1BD2806F27F8C403DF80EA723A47 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = D696384A07265F2377B580A248B06C19;
remoteInfo = AHFMModuleManager;
};
99711E5A4AB7F06362A31959F3DEB950 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 8BEFE67F2AFB4E63B16DACA16FBC1FC1;
remoteInfo = AHFMDownloadCenterServices;
};
A991DF83381D271929EC631979F18C96 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 092D0A40D6045DE75C3E46BC3B97370D;
remoteInfo = AHFMDataCenter;
};
ABE58F48633F0107065B585552938099 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = B6B749285B2BCE20FE45EF0783729029;
remoteInfo = AHFMServices;
};
AF93A69D695CAACBA113F3FF629323B2 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = DC6434385E58C47B3D9AFEEFCA3C083F;
remoteInfo = AHFMDataTransformers;
};
B842AC78252D1B96E05A63B3CAB75FEC /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = E1F6066DAC0E9293305836FE01990C48;
remoteInfo = AHDataModel;
};
BD40D62FBA643AF00C5D56AE59E10105 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 820131156757CAB66181ACAEE457B109;
remoteInfo = UIDeviceExtension;
};
C4DFC3EA0AAE038D28B3D22602ADB7AC /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = DC6434385E58C47B3D9AFEEFCA3C083F;
remoteInfo = AHFMDataTransformers;
};
CEDDB1034FADA42D9010A0620863D290 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = B6B749285B2BCE20FE45EF0783729029;
remoteInfo = AHFMServices;
};
D3402880BC7B5E064467817D3090676F /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 816374D115E6FB620EA7042CF7C05739;
remoteInfo = SwiftyJSON;
};
DD85139E8F7B88F0A312C0202A0927F1 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 8BEFE67F2AFB4E63B16DACA16FBC1FC1;
remoteInfo = AHFMDownloadCenterServices;
};
E2AC30B0D1238BD02D6930A332F76CC3 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 820131156757CAB66181ACAEE457B109;
remoteInfo = UIDeviceExtension;
};
EA3820B92378F39B9456A9E12442677D /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 2C0556B697F065A1896342A6B2D98A86;
remoteInfo = AHFMDownloadListServices;
};
F0009A8A657A5A14F6EE80202BB3B087 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 816374D115E6FB620EA7042CF7C05739;
remoteInfo = SwiftyJSON;
};
F278EED8ABB8C0E498A65E7FC1344EFF /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 8DAD3B43F22ED746357F81FC6664D10E;
remoteInfo = Alamofire;
};
FD4923B50E820E0144CD3A1E31EA4448 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 242E2B6A13B700C0010A6133159D615B;
remoteInfo = KeychainAccess;
};
/* End PBXContainerItemProxy section */
/* Begin PBXFileReference section */
0172868897AFD39F4BF01ED8A04F4DAF /* AHFMNetworking.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMNetworking.swift; path = AHFMNetworking/Classes/AHFMNetworking.swift; sourceTree = "<group>"; };
02140326AB66070F0E225B029AFBEDE7 /* SessionDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionDelegate.swift; path = Source/SessionDelegate.swift; sourceTree = "<group>"; };
032D555BA34D0C9BE3CE34D97969DBC3 /* AHFMDataTransformers-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMDataTransformers-prefix.pch"; sourceTree = "<group>"; };
037B2A7BDCA61259987BA9A31DA7E66E /* AHFMDataCenter.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHFMDataCenter.xcconfig; sourceTree = "<group>"; };
05A9349D58842FD4302D846DE7858422 /* Validation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Validation.swift; path = Source/Validation.swift; sourceTree = "<group>"; };
060B2E6D69A4DCC1898E9CCB42EB0119 /* AFError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AFError.swift; path = Source/AFError.swift; sourceTree = "<group>"; };
0632B6BF34436DAC410ECDF769673855 /* UIDeviceExtension.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = UIDeviceExtension.modulemap; sourceTree = "<group>"; };
065C1A55CC5A7039320900EE9A35E0B1 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
0683CE554612127A3E98EAF12CAECCE0 /* AHFMDataCenter.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHFMDataCenter.framework; sourceTree = BUILT_PRODUCTS_DIR; };
069865F509815E0C5D8B8B27B8AFD0BC /* Pods-AHFMDownloadListManager_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AHFMDownloadListManager_Example.release.xcconfig"; sourceTree = "<group>"; };
077B91EF15FF6E632CFA22F402005904 /* ParameterEncoding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ParameterEncoding.swift; path = Source/ParameterEncoding.swift; sourceTree = "<group>"; };
0C6EB3CFDB53DAE035CF59947D005A63 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
0F59FD881A1D20A5AE07C94F02C2B0A5 /* KeychainAccess.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = KeychainAccess.framework; sourceTree = BUILT_PRODUCTS_DIR; };
104105D24E74E8B6A6EB1E4FF61AFF75 /* AHFMNetworking.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHFMNetworking.xcconfig; sourceTree = "<group>"; };
111D6993B312E192D30BD3487718958E /* KeychainAccess-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "KeychainAccess-prefix.pch"; sourceTree = "<group>"; };
112F651FFE9455AFE10B4F86F0E5EF4A /* SwiftyJSON-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SwiftyJSON-prefix.pch"; sourceTree = "<group>"; };
12C9764293689D62D6399324DEEF9B3A /* UIDeviceExtension-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIDeviceExtension-dummy.m"; sourceTree = "<group>"; };
133983AACAA226235DE3A2488E3BA179 /* Pods-AHFMDownloadListManager_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AHFMDownloadListManager_Tests.release.xcconfig"; sourceTree = "<group>"; };
13B2BDBF69A36980C8637B61A2E3E3E5 /* AHServiceRouter-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHServiceRouter-prefix.pch"; sourceTree = "<group>"; };
1985C8CFFD69842782231079C8ACD8DD /* AHFMDownloadListManager.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHFMDownloadListManager.xcconfig; sourceTree = "<group>"; };
1A76779621C6D03BC455506B82EAF819 /* KeychainAccess.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = KeychainAccess.framework; path = KeychainAccess.framework; sourceTree = BUILT_PRODUCTS_DIR; };
1DE152647AFAA09E50C8B12176077D08 /* AHFMDataCenter-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMDataCenter-prefix.pch"; sourceTree = "<group>"; };
1DF62AD9CDD963D6853E92193E9B6EFD /* Pods-AHFMDownloadListManager_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AHFMDownloadListManager_Example-frameworks.sh"; sourceTree = "<group>"; };
1FA5C5A50FE5E87394E59B54A6F69D10 /* AHFMDownloadCenterServices.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHFMDownloadCenterServices.xcconfig; sourceTree = "<group>"; };
1FDEFC1EDCAE0274EF0EAEAD87C9BD2A /* AHFMDownloadListServices.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHFMDownloadListServices.xcconfig; sourceTree = "<group>"; };
216B462600AA2A7C9119DAE0E92475ED /* Timeline.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Timeline.swift; path = Source/Timeline.swift; sourceTree = "<group>"; };
21A47E7433B90A5221AEAC6B1BE1BCBC /* AHFMBottomPlayerServices-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMBottomPlayerServices-prefix.pch"; sourceTree = "<group>"; };
22A5DDF2A4D1B965C57E554C84A501AA /* SwiftyJSON-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SwiftyJSON-dummy.m"; sourceTree = "<group>"; };
2512CDD9BE1F68EE5D098E1A4550FF05 /* UIDeviceExtension-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIDeviceExtension-prefix.pch"; sourceTree = "<group>"; };
2657364D0F26A81BEEC31AEB2D7D8587 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
2850A2313247B9EF3F89F79B2E4624C7 /* Pods-AHFMDownloadListManager_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = "Pods-AHFMDownloadListManager_Example.modulemap"; sourceTree = "<group>"; };
2C2F95AC6A7F53AAD007D494A5F15BF1 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
2C90385B146E98A68E514837C9214B7A /* SwiftyJSON.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = SwiftyJSON.modulemap; sourceTree = "<group>"; };
2FE168C9C0ABBF0CFB8C281B1E9687E5 /* Migrator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Migrator.swift; path = AHDataModel/Classes/Migrator.swift; sourceTree = "<group>"; };
333463A8FF2C55ADC7B0B232DFA80B5F /* AHFMModuleManager-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHFMModuleManager-dummy.m"; sourceTree = "<group>"; };
33902CD89E0EB270D28ADC2702B91B0E /* AHDataModel.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = AHDataModel.modulemap; sourceTree = "<group>"; };
344F67645EAB8306BB81E50CE1401C55 /* AHFMDataCenter.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = AHFMDataCenter.framework; path = AHFMDataCenter.framework; sourceTree = BUILT_PRODUCTS_DIR; };
359B798DDB895F397276BC8F4209968E /* AHFMDownloadListServices.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = AHFMDownloadListServices.modulemap; sourceTree = "<group>"; };
35CB2638F053CAE3683B8EC11DBF0301 /* Pods-AHFMDownloadListManager_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-AHFMDownloadListManager_Example-umbrella.h"; sourceTree = "<group>"; };
39006336C3E9FC7AFC076A66269ECC71 /* AHFMDownloadListServices-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHFMDownloadListServices-dummy.m"; sourceTree = "<group>"; };
3C1F0F2D9D7260DA380F688D77CE5A56 /* AHDataModel.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHDataModel.framework; sourceTree = BUILT_PRODUCTS_DIR; };
3C54696E985B1A00FEDA56D9CECCEBC9 /* Manager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = Manager.swift; sourceTree = "<group>"; };
3C980341F46237CE9F9B98D4CCDF670B /* AHFMDownloadCenterServices.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHFMDownloadCenterServices.framework; sourceTree = BUILT_PRODUCTS_DIR; };
3CB2E0994B7B13B270F058445B60E96E /* UIDevice+Extension.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIDevice+Extension.swift"; path = "UIDeviceExtension/Classes/UIDevice+Extension.swift"; sourceTree = "<group>"; };
3CCAB82DAC27A5BACC753E6519093BD4 /* Notifications.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Notifications.swift; path = Source/Notifications.swift; sourceTree = "<group>"; };
3D24D10A47CC98761C4BC426F0044EE4 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
3F5374E73E46254F83E925ADE306636D /* Migration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Migration.swift; path = AHDataModel/Classes/Migration.swift; sourceTree = "<group>"; };
4066F2898D125E3352244FBDF0755B71 /* AHFMDownloadCenterServices.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = AHFMDownloadCenterServices.modulemap; sourceTree = "<group>"; };
42B4EED056AE3EF22BE5DF062A32E53C /* AHFMServices.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = AHFMServices.modulemap; sourceTree = "<group>"; };
43DF7754AE6F8BDE2CDB335315D1C9F1 /* AHFMServices.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMServices.swift; path = AHFMServices/Classes/AHFMServices.swift; sourceTree = "<group>"; };
467F20C77660C7B898D18E334C443065 /* MultipartFormData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MultipartFormData.swift; path = Source/MultipartFormData.swift; sourceTree = "<group>"; };
469722CB4D29F7431DC63F87D02FB43A /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
47517E694FC3E8E844E0853D1D4F870C /* SwiftyJSON.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = SwiftyJSON.framework; path = SwiftyJSON.framework; sourceTree = BUILT_PRODUCTS_DIR; };
483029DA88FAE26BEA76C8A05F0450B9 /* AHFMNetworking.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = AHFMNetworking.framework; path = AHFMNetworking.framework; sourceTree = BUILT_PRODUCTS_DIR; };
48370E444158A3CA7A6C1682E2C396E6 /* AHFMNetworking-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMNetworking-prefix.pch"; sourceTree = "<group>"; };
49C9B7523BC7C0FA9F9373E57E2E9933 /* AHFMServices.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHFMServices.framework; sourceTree = BUILT_PRODUCTS_DIR; };
4ACB113FADA457550A800CA9227B4F8D /* AHFMDataTransformers.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHFMDataTransformers.xcconfig; sourceTree = "<group>"; };
4ADE73CE314EB479FAD04EC37699AA39 /* Pods-AHFMDownloadListManager_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-AHFMDownloadListManager_Tests-dummy.m"; sourceTree = "<group>"; };
4DFDD1A00530751F5136120D5DE19C26 /* AHFMDataCenter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMDataCenter.swift; path = AHFMDataCenter/Classes/AHFMDataCenter.swift; sourceTree = "<group>"; };
4E5A744B099471BAFA6777088218C080 /* AHFMDownloadListServices-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMDownloadListServices-umbrella.h"; sourceTree = "<group>"; };
4FF8EE05AA7D5A5059FF9287D7DC67AD /* OAuth2Handler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OAuth2Handler.swift; path = AHFMNetworking/Classes/OAuth2Handler.swift; sourceTree = "<group>"; };
503B706F2A7CD677D83A4AB43351AE96 /* module.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; name = module.modulemap; path = ModuleMaps/iphonesimulator/module.modulemap; sourceTree = "<group>"; };
52D8A360427D3533ED923E5A6A635D9F /* UIDeviceExtension-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIDeviceExtension-umbrella.h"; sourceTree = "<group>"; };
54BF1F94D91D2D75C5732BBF9E9560F9 /* AHFMServices-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHFMServices-dummy.m"; sourceTree = "<group>"; };
577E0918A9C07E950AD7B9F7A62A940F /* Alamofire-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Alamofire-prefix.pch"; sourceTree = "<group>"; };
5A49AC8D75F6613DB734EA1AD95E9E82 /* Pods_AHFMDownloadListManager_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_AHFMDownloadListManager_Tests.framework; path = "Pods-AHFMDownloadListManager_Tests.framework"; sourceTree = BUILT_PRODUCTS_DIR; };
5B10665BABEA124AAEF33E5E9982C0FB /* SwiftyJSON.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftyJSON.swift; path = Source/SwiftyJSON.swift; sourceTree = "<group>"; };
5B6EFE611945D2FCAECFD071F99A524D /* AHFMNetworking-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHFMNetworking-dummy.m"; sourceTree = "<group>"; };
5C01E587CB0D436E24FB389B01A748F3 /* AHFMDataCenter-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMDataCenter-umbrella.h"; sourceTree = "<group>"; };
6621B430541CA6D6752C8586575779D6 /* AHDatabase.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHDatabase.swift; path = AHDataModel/Classes/AHDatabase.swift; sourceTree = "<group>"; };
669294609D5FF5554CB7B16A7381CA06 /* AHFMShowTransform.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMShowTransform.swift; path = AHFMDataTransformers/Classes/AHFMShowTransform.swift; sourceTree = "<group>"; };
685495B51D825F0C9802A9340FA16CCB /* AHNetworkConstants.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHNetworkConstants.swift; path = AHFMNetworking/Classes/AHNetworkConstants.swift; sourceTree = "<group>"; };
68D082542B32FF556239E9B6FE586FF3 /* AHFMBottomPlayerServices.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHFMBottomPlayerServices.xcconfig; sourceTree = "<group>"; };
6A04BA9C0781E43220380A945877A8C3 /* Alamofire-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Alamofire-umbrella.h"; sourceTree = "<group>"; };
6D1205A8EB6075CE7211676C9C2A535B /* AHDB.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHDB.swift; path = AHDataModel/Classes/AHDB.swift; sourceTree = "<group>"; };
6D40E331414C46B2A905ED1DF27A7122 /* AHFMDownloadListManager-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHFMDownloadListManager-dummy.m"; sourceTree = "<group>"; };
6D940651CFB55C52D14C108980A07654 /* AHServiceRouter.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHServiceRouter.xcconfig; sourceTree = "<group>"; };
7009EE781BAE784CFC0F40AA475F1875 /* AHFMModuleManager.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = AHFMModuleManager.modulemap; sourceTree = "<group>"; };
706FA9DF8909BB48A71E670FC956B7CE /* AHFMServices.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = AHFMServices.framework; path = AHFMServices.framework; sourceTree = BUILT_PRODUCTS_DIR; };
714F9E5A19CD08D7FD56550D43042F42 /* AHDataModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHDataModel.swift; path = AHDataModel/Classes/AHDataModel.swift; sourceTree = "<group>"; };
715CD933BE89001402A63287D437ADDF /* AHFMDataTransformers-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMDataTransformers-umbrella.h"; sourceTree = "<group>"; };
733EDADDC0CC37777557DA38069FDF80 /* AHServiceRouter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHServiceRouter.swift; path = AHServiceRouter/Classes/AHServiceRouter.swift; sourceTree = "<group>"; };
737D6582AD9C7149529B5AB183CACC6C /* AHFMModuleManager.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHFMModuleManager.xcconfig; sourceTree = "<group>"; };
759C8DB48C29031CCFDA007CC2DB5739 /* AHDataModel.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = AHDataModel.framework; path = AHDataModel.framework; sourceTree = BUILT_PRODUCTS_DIR; };
76352CC9CD61FFF0AFAAADF941616CC5 /* AHKeychain.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHKeychain.swift; path = AHFMNetworking/Classes/AHKeychain.swift; sourceTree = "<group>"; };
765C1F16FE0E339880FFD07881DEE6B5 /* AHFMServices-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMServices-prefix.pch"; sourceTree = "<group>"; };
7A2DE128366A5ECC648A4478A9AEF7CA /* UIDeviceExtension.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UIDeviceExtension.xcconfig; sourceTree = "<group>"; };
7A41EEFAB31E791A14FA66A9463271CB /* Alamofire.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Alamofire.framework; path = Alamofire.framework; sourceTree = BUILT_PRODUCTS_DIR; };
7B338F67CFA190EE6AC520FC613452F0 /* Pods-AHFMDownloadListManager_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = "Pods-AHFMDownloadListManager_Tests.modulemap"; sourceTree = "<group>"; };
7B49CC732F6AAD83BE99D276217E7ECC /* SessionManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionManager.swift; path = Source/SessionManager.swift; sourceTree = "<group>"; };
7E77370AFF527AB21C6AC5B7923A0709 /* Request.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Request.swift; path = Source/Request.swift; sourceTree = "<group>"; };
7F83D51B5D4DF6B2D158A89E35E34563 /* DispatchQueue+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DispatchQueue+Alamofire.swift"; path = "Source/DispatchQueue+Alamofire.swift"; sourceTree = "<group>"; };
8212BC8B9E60FC4AEA6AB378EC648ADE /* AHFMDataTransformers.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHFMDataTransformers.framework; sourceTree = BUILT_PRODUCTS_DIR; };
823A20346870C904887E3D1FA9B9724E /* Alamofire-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Alamofire-dummy.m"; sourceTree = "<group>"; };
8632CE85D9D3FD2FEA3FE73F4E3C5893 /* AHFMSubscribedShow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMSubscribedShow.swift; path = AHFMDataCenter/Classes/AHFMSubscribedShow.swift; sourceTree = "<group>"; };
873101BB44CF07C4DD9C8B4EE88C8F01 /* AHFMEpisodeHistory.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMEpisodeHistory.swift; path = AHFMDataCenter/Classes/AHFMEpisodeHistory.swift; sourceTree = "<group>"; };
878E9A0640011D87B623C20AC1CF19D4 /* AHFMDownloadListServices.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHFMDownloadListServices.framework; sourceTree = BUILT_PRODUCTS_DIR; };
8833E3D39312A9E0A0EECA4572BD3561 /* AHFMDownloadListService.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMDownloadListService.swift; path = AHFMDownloadListServices/Classes/AHFMDownloadListService.swift; sourceTree = "<group>"; };
8A39DCCF2198D88AA3D4A38B743D0EF7 /* Pods-AHFMDownloadListManager_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-AHFMDownloadListManager_Example-acknowledgements.markdown"; sourceTree = "<group>"; };
8AC36FC5365671C576708021A58C8FC3 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
8CB7F2B79334A33AEEC69AEC4680D012 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
8DCE62EC33AD85474FDCE1E5BAC54AD9 /* SwiftyJSON-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SwiftyJSON-umbrella.h"; sourceTree = "<group>"; };
8F38ED8D7B3AC653FE1E6D58E709E1FB /* Result.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Result.swift; path = Source/Result.swift; sourceTree = "<group>"; };
90787BEB71ACD1B7E65D78F333DE5C80 /* AHFMNetworking-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMNetworking-umbrella.h"; sourceTree = "<group>"; };
913FA673940A976EB584CD158EDDFF0E /* AHFMDownloadListManager.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = AHFMDownloadListManager.modulemap; sourceTree = "<group>"; };
91F029BBDB40417C86F39352470F9D7A /* AHFMEpisodeInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMEpisodeInfo.swift; path = AHFMDataCenter/Classes/AHFMEpisodeInfo.swift; sourceTree = "<group>"; };
92FD55F182A8C8499865F422CD640BD8 /* AHFMModuleManager-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMModuleManager-umbrella.h"; sourceTree = "<group>"; };
933136F8F406808079CAC22590A01004 /* AHFMDownloadCenterServices-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHFMDownloadCenterServices-dummy.m"; sourceTree = "<group>"; };
93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
944ADD373BC480E713561BE7BF9B8827 /* AHFMNetworking.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = AHFMNetworking.modulemap; sourceTree = "<group>"; };
9568AD1A276F5C94DA2301208F93D60A /* AHFMDownloadCenterServices-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMDownloadCenterServices-umbrella.h"; sourceTree = "<group>"; };
99BA57023B84394A597CE2B007DC89F5 /* AHFMDownloadListManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = AHFMDownloadListManager.swift; sourceTree = "<group>"; };
9B6C793F5C0B5BCAD6E56C826633771D /* ServerTrustPolicy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerTrustPolicy.swift; path = Source/ServerTrustPolicy.swift; sourceTree = "<group>"; };
9FD4A6036A813F8F43BDAAD07EFA8CBA /* AHFMDataTransformers.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = AHFMDataTransformers.modulemap; sourceTree = "<group>"; };
A0B48C8BAB603FC165F1AB9A9A5BFB1C /* AHFMDownloadListServices-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMDownloadListServices-prefix.pch"; sourceTree = "<group>"; };
A2E226A26930678C2196AC64814B8129 /* AHFMModuleManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMModuleManager.swift; path = AHFMModuleManager/Classes/AHFMModuleManager.swift; sourceTree = "<group>"; };
A2FD1984D60412B202FE7AEA55340921 /* AHDataModel-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHDataModel-prefix.pch"; sourceTree = "<group>"; };
A479FBD15E4920B07B48DC97FDF4B483 /* AHFMBottomPlayerServices.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHFMBottomPlayerServices.framework; sourceTree = BUILT_PRODUCTS_DIR; };
A5F5266A67D0F50882B25D84CEE4D7C4 /* AHDBColumnInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHDBColumnInfo.swift; path = AHDataModel/Classes/AHDBColumnInfo.swift; sourceTree = "<group>"; };
AA6BF4933E0CF54F3FB719798B1FF17D /* SwiftyJSON.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SwiftyJSON.xcconfig; sourceTree = "<group>"; };
AB3E8DE0D3930A7D6FBC572DB0B28909 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
ACDC633B5CDC938302999A84960B06B4 /* AHFMServices.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHFMServices.xcconfig; sourceTree = "<group>"; };
AD6262F63ED61A6C238FE75288CD0150 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
AE57C8BF5A584612DF688B27866AFBA8 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
AEB2DEAA5EEC2635A55582B701824A54 /* module.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; name = module.modulemap; path = ModuleMaps/iphoneos/module.modulemap; sourceTree = "<group>"; };
AEB59A2D9E099A774A5FBF51CAA95B80 /* SwiftyJSON.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = SwiftyJSON.framework; sourceTree = BUILT_PRODUCTS_DIR; };
AF26FF6DD2D7C46838D8338E1AC507B0 /* AHFMDownloadCenterServices.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMDownloadCenterServices.swift; path = AHFMDownloadCenterServices/Classes/AHFMDownloadCenterServices.swift; sourceTree = "<group>"; };
B31B866D1DCDFE680C8F2425BADBFF17 /* AHServiceRouter-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHServiceRouter-umbrella.h"; sourceTree = "<group>"; };
B51D189D523347337DB365EA9D3D3217 /* Pods-AHFMDownloadListManager_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AHFMDownloadListManager_Example-acknowledgements.plist"; sourceTree = "<group>"; };
B580A12BE20F57E53F531E52A384CAB6 /* AHFMDownloadListManager-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMDownloadListManager-prefix.pch"; sourceTree = "<group>"; };
B5AC35EE95564DF72AC364052DF8370E /* KeychainAccess.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = KeychainAccess.modulemap; sourceTree = "<group>"; };
B5D1A92AD953D6C5C70A70B405A186DC /* AHServiceRouter.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = AHServiceRouter.modulemap; sourceTree = "<group>"; };
B6ABBD7670C36778AD9144B60EB301DE /* KeychainAccess.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = KeychainAccess.xcconfig; sourceTree = "<group>"; };
BBFDD38C406F60EBB43746C610041139 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
BC3DE9674069D19AC857C44FDB503AF8 /* Pods-AHFMDownloadListManager_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-AHFMDownloadListManager_Tests-umbrella.h"; sourceTree = "<group>"; };
BE3506C178CA865F23E24A28BEB5E990 /* AHFMBottomPlayerServices.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMBottomPlayerServices.swift; path = AHFMBottomPlayerServices/Classes/AHFMBottomPlayerServices.swift; sourceTree = "<group>"; };
BEA107643EBD81BBE618AA20A4A07B74 /* Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Alamofire.swift; path = Source/Alamofire.swift; sourceTree = "<group>"; };
BFDDF634BD01F61E2B88EC5D161D3A95 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
C00461727460DEA92F7341D6849992B9 /* AHDataModel-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHDataModel-dummy.m"; sourceTree = "<group>"; };
C079C0677213E63BBD339ECECA852E1E /* AHFMShow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMShow.swift; path = AHFMDataCenter/Classes/AHFMShow.swift; sourceTree = "<group>"; };
C3E55631D3035FC7D646BCE7A5D1EC46 /* AHFMDownloadCenterServices-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMDownloadCenterServices-prefix.pch"; sourceTree = "<group>"; };
C425FA1E6F8D1E1722979A33E543A3C2 /* AHFMEpisode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMEpisode.swift; path = AHFMDataCenter/Classes/AHFMEpisode.swift; sourceTree = "<group>"; };
C4EFD83CD28C68E85DE77942FBD3AC43 /* Alamofire.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = Alamofire.modulemap; sourceTree = "<group>"; };
C50A2E90680B93562014105EC3786719 /* Pods-AHFMDownloadListManager_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AHFMDownloadListManager_Tests.debug.xcconfig"; sourceTree = "<group>"; };
C6B271474095394FCB9E5F6A674F3D8F /* AHFMDataTransformers.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = AHFMDataTransformers.framework; path = AHFMDataTransformers.framework; sourceTree = BUILT_PRODUCTS_DIR; };
C876E978ECB495C2A479267D1BCCD1CB /* AHServiceRouter-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHServiceRouter-dummy.m"; sourceTree = "<group>"; };
C8A214FE53EA4CFA91BADAF0E9316713 /* Pods_AHFMDownloadListManager_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_AHFMDownloadListManager_Example.framework; path = "Pods-AHFMDownloadListManager_Example.framework"; sourceTree = BUILT_PRODUCTS_DIR; };
CB883CDD7C1910A8D39646F5EBD0BE6D /* AHFMEpisodeTransform.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMEpisodeTransform.swift; path = AHFMDataTransformers/Classes/AHFMEpisodeTransform.swift; sourceTree = "<group>"; };
CCF9AC4B3E133F5E2AA6625602BB1F38 /* UIDeviceExtension.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = UIDeviceExtension.framework; path = UIDeviceExtension.framework; sourceTree = BUILT_PRODUCTS_DIR; };
CD2BD9CDC5DB5392B850F4686D32A6A2 /* AHFMDownloadListServices.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = AHFMDownloadListServices.framework; path = AHFMDownloadListServices.framework; sourceTree = BUILT_PRODUCTS_DIR; };
CEC46A353F251BDFC53207E2F1F4B499 /* AHFMBottomPlayerServices.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = AHFMBottomPlayerServices.modulemap; sourceTree = "<group>"; };
CF638BA55971A54A190C6092C669FDE3 /* AHServiceRouter.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = AHServiceRouter.framework; path = AHServiceRouter.framework; sourceTree = BUILT_PRODUCTS_DIR; };
CFC2391F16ABE55644F976400F1C58C0 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
D0DF43C251BDBA93B09639612D093EAC /* AHFMDownloadCenterServices.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = AHFMDownloadCenterServices.framework; path = AHFMDownloadCenterServices.framework; sourceTree = BUILT_PRODUCTS_DIR; };
D11ACF49BE6416D931EBB2479A1929B6 /* AHFMBottomPlayerServices-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHFMBottomPlayerServices-dummy.m"; sourceTree = "<group>"; };
D132A1DBE9FA8166BA168A3EDF43C9C7 /* AHDataModel.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHDataModel.xcconfig; sourceTree = "<group>"; };
D16648E9F08C8867D60DF93151EF4FA4 /* Keychain.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Keychain.swift; path = Lib/KeychainAccess/Keychain.swift; sourceTree = "<group>"; };
D27807473348E8F774CE941A037FA7F2 /* KeychainAccess-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "KeychainAccess-dummy.m"; sourceTree = "<group>"; };
D2E7A5FB90B0017F0E841223A708C722 /* AHFMBottomPlayerServices-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMBottomPlayerServices-umbrella.h"; sourceTree = "<group>"; };
D3971D35D09E52AA2B47D300745BEA84 /* AHFMDataCenter-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHFMDataCenter-dummy.m"; sourceTree = "<group>"; };
D808BEA92F15DC581B244DE8C9049F6C /* AHFMModuleManager-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMModuleManager-prefix.pch"; sourceTree = "<group>"; };
D8C23A5804F449EC898D80991657663B /* AHFMModuleManager.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHFMModuleManager.framework; sourceTree = BUILT_PRODUCTS_DIR; };
D92DCE5D998958465BBDAC2907283B85 /* AHFMNetworking.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHFMNetworking.framework; sourceTree = BUILT_PRODUCTS_DIR; };
DB25A773E7831E3EC826C25A7FD30616 /* Pods-AHFMDownloadListManager_Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AHFMDownloadListManager_Example-resources.sh"; sourceTree = "<group>"; };
DDC8AA8E5160F1D84486CF60E29E24D4 /* Pods-AHFMDownloadListManager_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AHFMDownloadListManager_Example.debug.xcconfig"; sourceTree = "<group>"; };
DF8DA03D9CA4103DABFA319E4AF64AEC /* AHFMServices-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMServices-umbrella.h"; sourceTree = "<group>"; };
E057CB4FC35BA5D3A7EB072EAA33632A /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.3.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; };
E1735F6F15FD43C5A05F14E7B6395DC0 /* Pods-AHFMDownloadListManager_Tests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AHFMDownloadListManager_Tests-resources.sh"; sourceTree = "<group>"; };
E49EDE8F4A6763B87466F94F26D608A4 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
E6AB68BAE5246D215E988A150221C89C /* AHDataModelQuery.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHDataModelQuery.swift; path = AHDataModel/Classes/AHDataModelQuery.swift; sourceTree = "<group>"; };
E7272BC19DA52F8D258A22D1C8295B44 /* Alamofire.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Alamofire.framework; sourceTree = BUILT_PRODUCTS_DIR; };
E77E791760640B46C14F7183D0DC6379 /* AHFMDownloadListManager-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMDownloadListManager-umbrella.h"; sourceTree = "<group>"; };
E8E6A5393BB12E3B73BE307C403992C3 /* ResponseSerialization.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ResponseSerialization.swift; path = Source/ResponseSerialization.swift; sourceTree = "<group>"; };
E9D6501155B3EB5F0D8040A7DD82D14F /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
EC52ED3F01430653F79E97DDE06FEDB7 /* TaskDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TaskDelegate.swift; path = Source/TaskDelegate.swift; sourceTree = "<group>"; };
EC790844D884553D49FF89A426EB8D6F /* AHServiceRouter.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHServiceRouter.framework; sourceTree = BUILT_PRODUCTS_DIR; };
F0A0A8A47A9DB945D25CB2457DC01EC6 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
F222C98AA3A0C805B736F925507F89E7 /* Pods-AHFMDownloadListManager_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-AHFMDownloadListManager_Example-dummy.m"; sourceTree = "<group>"; };
F51EAB20516F7449226757C62D2D67CE /* AHFMDownloadListManager.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = AHFMDownloadListManager.framework; path = AHFMDownloadListManager.framework; sourceTree = BUILT_PRODUCTS_DIR; };
F535E7715CE97BE496753C7AE8B14DEF /* KeychainAccess-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "KeychainAccess-umbrella.h"; sourceTree = "<group>"; };
F5F7441BC160130B0A5CD9BDFD98AE84 /* Response.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Response.swift; path = Source/Response.swift; sourceTree = "<group>"; };
F782B5ACEE08A8BC1A607B7DACC752CE /* UIDeviceExtension.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = UIDeviceExtension.framework; sourceTree = BUILT_PRODUCTS_DIR; };
F79E23F5A524B31D43DA087D190758C4 /* Pods-AHFMDownloadListManager_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AHFMDownloadListManager_Tests-acknowledgements.plist"; sourceTree = "<group>"; };
F87558E54450D0ECA1A00D7ED1B293A1 /* AHFMDataTransformers-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHFMDataTransformers-dummy.m"; sourceTree = "<group>"; };
F88F1016861D1458B31E4CFB2CA69AF3 /* AHFMModuleManager.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = AHFMModuleManager.framework; path = AHFMModuleManager.framework; sourceTree = BUILT_PRODUCTS_DIR; };
FA262A7DEC2253E9904BA2271B5E8FCB /* Alamofire.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Alamofire.xcconfig; sourceTree = "<group>"; };
FAC236FB71C0C7762136FCFD407F56BF /* AHDataModel-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHDataModel-umbrella.h"; sourceTree = "<group>"; };
FAEB7D25F764BB11F041A64E81B64031 /* NetworkReachabilityManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NetworkReachabilityManager.swift; path = Source/NetworkReachabilityManager.swift; sourceTree = "<group>"; };
FB219770E8CB77649515FC4A0F0ACE07 /* Pods-AHFMDownloadListManager_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-AHFMDownloadListManager_Tests-acknowledgements.markdown"; sourceTree = "<group>"; };
FBB127DC1A0E71E66F39637D2A5CCB83 /* Pods-AHFMDownloadListManager_Tests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AHFMDownloadListManager_Tests-frameworks.sh"; sourceTree = "<group>"; };
FD88AD32B48392F4A14C47F5DA6E0AFC /* AHFMDataCenter.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = AHFMDataCenter.modulemap; sourceTree = "<group>"; };
FDAE90F42C056321DFB34B4D1BDA1776 /* AHFMBottomPlayerServices.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = AHFMBottomPlayerServices.framework; path = AHFMBottomPlayerServices.framework; sourceTree = BUILT_PRODUCTS_DIR; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
05138588A2D6EF96B4AC2B332D757381 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
9DCB18FD7DDE588090ECA202786A66FC /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
05CCAA56FEF08BF773590F5E8BB7D7AD /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
D5B3D8C2D59E9FFD96AB2D3C39768F2C /* AHDataModel.framework in Frameworks */,
D844D0763A90423A15D2ED4F4B26FE96 /* AHFMBottomPlayerServices.framework in Frameworks */,
90D91E367B83E443D7B2487AC99C682D /* AHFMDataCenter.framework in Frameworks */,
0798AA6873A0A15F7EC1378692FF9265 /* AHFMDataTransformers.framework in Frameworks */,
8E746070489515D6DC619B33C8A77AFF /* AHFMDownloadCenterServices.framework in Frameworks */,
8F9D518DD286515FB433392194E168C6 /* AHFMDownloadListServices.framework in Frameworks */,
021B162AD29626DB3BF9DD800A0324B1 /* AHFMModuleManager.framework in Frameworks */,
29EA86E05D5CA579464B34D5565F52D5 /* AHFMNetworking.framework in Frameworks */,
96F8EEEC59E2F591C5027D9577732B9D /* AHFMServices.framework in Frameworks */,
77A77FF94D6E9BA86811C5D16A3A7ADB /* AHServiceRouter.framework in Frameworks */,
D7BEC70186B9A6413CC9F888980D5472 /* Alamofire.framework in Frameworks */,
3BB613FE31A4E954B748E961BDD31E71 /* Foundation.framework in Frameworks */,
4894D8714668A8D59130FF85746C1051 /* KeychainAccess.framework in Frameworks */,
BDB39D8A5271840091C2FEDAC4227ECB /* SwiftyJSON.framework in Frameworks */,
643D9B03C6EC84FD3D338DC84489A65C /* UIDeviceExtension.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
10D942BCA420589087A16144B2124E95 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
E48A0477E0D9A1A5155398F6650E7021 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
21290C11B6BF1B5B6BE51985EEBD79CC /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
EB9FCDD307E288E6F785E195DFE276BB /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
3B79C91C85C1F5AEA0330E96DBA67D51 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
B1D0CB89982FC8DAB74254794B6B8DFE /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
555BABDA9D97937439ADDF5AD80AE647 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
B8B32B9F15B11ACD3F619D027E07D4D9 /* AHFMServices.framework in Frameworks */,
4395197E68728BD208DFD23E4BC2C38A /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
61177F725E811FEB74A2EC4719DD716D /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
E8856DCBBD8410624FFED283B38F64FA /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
70A156244513DB5B1A87C98D920CCBEF /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
CEC905D7CA8E5F75FAF34DCC841AD866 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
8CC044F547B3735497C65FDD756E705F /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
7BBE0870C5F3C9F58E84D938FA4EFD24 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
9FD7941CE3937D40F4E1C2FC6F9DB8DB /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
29CF40A26C283E245D8E35CB9841DAA3 /* Alamofire.framework in Frameworks */,
5515D8354B789BD08F4DB2C6A0211DC2 /* Foundation.framework in Frameworks */,
E27E1606616B143FCA883D371E0A38AA /* KeychainAccess.framework in Frameworks */,
822D63FE4AC0900EDA7299614C5656B6 /* SwiftyJSON.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
A1ED3E73DAB3AE14378DD6CF1A76AE8C /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
BAAC4293A822346B1F27573BF927E1BE /* Foundation.framework in Frameworks */,
8A43301A1FD1C5B83B57B60A76DA9886 /* SwiftyJSON.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
A74FA9C37F0F8DDB6AC86B9B0972E9AA /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
6AB52CE3E0A28FA60837790EFC1AF44D /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
B4BB870B2DE0EE169F0F5B868C6FB387 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
AE70A5B292B35F090433AFEEC1A2234B /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
CBA18CB5255D54DCA5F18B22B74EDB2E /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
264A18DEA779B6CB51E18F37232925F8 /* AHFMServices.framework in Frameworks */,
032E3611F2551D75AF4A81004054F7C2 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
CC94C857FCF6CF66F779649354883F92 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
AB2E638C38C54111C700A6E06E3F10AC /* AHDataModel.framework in Frameworks */,
0A53D7B5A76FBFC0FBAB456FD871AD1A /* Foundation.framework in Frameworks */,
B5F0007CEDF8921CF49F6AE64197C442 /* UIDeviceExtension.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
F33E2B55D567338F8F39F6684220F412 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
ED74D6C8098DA3FBDE71F9F2C3B4343A /* AHFMServices.framework in Frameworks */,
4EEE6F31829B94C057E75C4EAFF2EA70 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
F90104E5558E8D6585E110C2D7A7595F /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
0DE24BBA949385A1908C8866640A3E0A /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
09CD6EA10627AA0DCD1284533C879260 /* Support Files */ = {
isa = PBXGroup;
children = (
C4EFD83CD28C68E85DE77942FBD3AC43 /* Alamofire.modulemap */,
FA262A7DEC2253E9904BA2271B5E8FCB /* Alamofire.xcconfig */,
823A20346870C904887E3D1FA9B9724E /* Alamofire-dummy.m */,
577E0918A9C07E950AD7B9F7A62A940F /* Alamofire-prefix.pch */,
6A04BA9C0781E43220380A945877A8C3 /* Alamofire-umbrella.h */,
8AC36FC5365671C576708021A58C8FC3 /* Info.plist */,
);
name = "Support Files";
path = "../Target Support Files/Alamofire";
sourceTree = "<group>";
};
0CD93DA92E2BD0207F7FC66793097B1F /* Targets Support Files */ = {
isa = PBXGroup;
children = (
687CA6BED01D87C5B389D9FD93C25DCA /* Pods-AHFMDownloadListManager_Example */,
1C986066C5956220B5485F13C0A4B742 /* Pods-AHFMDownloadListManager_Tests */,
);
name = "Targets Support Files";
sourceTree = "<group>";
};
0DB106DE290D6FE285DED7BE2D5B674D /* Support Files */ = {
isa = PBXGroup;
children = (
F0A0A8A47A9DB945D25CB2457DC01EC6 /* Info.plist */,
2C90385B146E98A68E514837C9214B7A /* SwiftyJSON.modulemap */,
AA6BF4933E0CF54F3FB719798B1FF17D /* SwiftyJSON.xcconfig */,
22A5DDF2A4D1B965C57E554C84A501AA /* SwiftyJSON-dummy.m */,
112F651FFE9455AFE10B4F86F0E5EF4A /* SwiftyJSON-prefix.pch */,
8DCE62EC33AD85474FDCE1E5BAC54AD9 /* SwiftyJSON-umbrella.h */,
);
name = "Support Files";
path = "../Target Support Files/SwiftyJSON";
sourceTree = "<group>";
};
124AB269CE0CDADACDF8B728E0A2D4D0 /* AHDataModel */ = {
isa = PBXGroup;
children = (
6621B430541CA6D6752C8586575779D6 /* AHDatabase.swift */,
714F9E5A19CD08D7FD56550D43042F42 /* AHDataModel.swift */,
E6AB68BAE5246D215E988A150221C89C /* AHDataModelQuery.swift */,
6D1205A8EB6075CE7211676C9C2A535B /* AHDB.swift */,
A5F5266A67D0F50882B25D84CEE4D7C4 /* AHDBColumnInfo.swift */,
3F5374E73E46254F83E925ADE306636D /* Migration.swift */,
2FE168C9C0ABBF0CFB8C281B1E9687E5 /* Migrator.swift */,
AEB2DEAA5EEC2635A55582B701824A54 /* module.modulemap */,
503B706F2A7CD677D83A4AB43351AE96 /* module.modulemap */,
2934C47F978CCCFD1382DF4006FE016B /* Support Files */,
);
name = AHDataModel;
path = AHDataModel;
sourceTree = "<group>";
};
131A77F8B2CC27DAFECB8989D0DD7D13 /* AHFMDownloadListManager */ = {
isa = PBXGroup;
children = (
91812850AFC37A4985A0D34F91656946 /* Classes */,
);
name = AHFMDownloadListManager;
path = AHFMDownloadListManager;
sourceTree = "<group>";
};
161966474733F9C0D3E50B459B3239B8 /* Frameworks */ = {
isa = PBXGroup;
children = (
3C1F0F2D9D7260DA380F688D77CE5A56 /* AHDataModel.framework */,
A479FBD15E4920B07B48DC97FDF4B483 /* AHFMBottomPlayerServices.framework */,
0683CE554612127A3E98EAF12CAECCE0 /* AHFMDataCenter.framework */,
8212BC8B9E60FC4AEA6AB378EC648ADE /* AHFMDataTransformers.framework */,
3C980341F46237CE9F9B98D4CCDF670B /* AHFMDownloadCenterServices.framework */,
878E9A0640011D87B623C20AC1CF19D4 /* AHFMDownloadListServices.framework */,
D8C23A5804F449EC898D80991657663B /* AHFMModuleManager.framework */,
D92DCE5D998958465BBDAC2907283B85 /* AHFMNetworking.framework */,
49C9B7523BC7C0FA9F9373E57E2E9933 /* AHFMServices.framework */,
EC790844D884553D49FF89A426EB8D6F /* AHServiceRouter.framework */,
E7272BC19DA52F8D258A22D1C8295B44 /* Alamofire.framework */,
0F59FD881A1D20A5AE07C94F02C2B0A5 /* KeychainAccess.framework */,
AEB59A2D9E099A774A5FBF51CAA95B80 /* SwiftyJSON.framework */,
F782B5ACEE08A8BC1A607B7DACC752CE /* UIDeviceExtension.framework */,
BE38A1037D175E6A145A6FD04B532E98 /* iOS */,
);
name = Frameworks;
sourceTree = "<group>";
};
1C986066C5956220B5485F13C0A4B742 /* Pods-AHFMDownloadListManager_Tests */ = {
isa = PBXGroup;
children = (
AD6262F63ED61A6C238FE75288CD0150 /* Info.plist */,
7B338F67CFA190EE6AC520FC613452F0 /* Pods-AHFMDownloadListManager_Tests.modulemap */,
FB219770E8CB77649515FC4A0F0ACE07 /* Pods-AHFMDownloadListManager_Tests-acknowledgements.markdown */,
F79E23F5A524B31D43DA087D190758C4 /* Pods-AHFMDownloadListManager_Tests-acknowledgements.plist */,
4ADE73CE314EB479FAD04EC37699AA39 /* Pods-AHFMDownloadListManager_Tests-dummy.m */,
FBB127DC1A0E71E66F39637D2A5CCB83 /* Pods-AHFMDownloadListManager_Tests-frameworks.sh */,
E1735F6F15FD43C5A05F14E7B6395DC0 /* Pods-AHFMDownloadListManager_Tests-resources.sh */,
BC3DE9674069D19AC857C44FDB503AF8 /* Pods-AHFMDownloadListManager_Tests-umbrella.h */,
C50A2E90680B93562014105EC3786719 /* Pods-AHFMDownloadListManager_Tests.debug.xcconfig */,
133983AACAA226235DE3A2488E3BA179 /* Pods-AHFMDownloadListManager_Tests.release.xcconfig */,
);
name = "Pods-AHFMDownloadListManager_Tests";
path = "Target Support Files/Pods-AHFMDownloadListManager_Tests";
sourceTree = "<group>";
};
21EA2F2F7419E4C76A911BA784AEC312 /* Support Files */ = {
isa = PBXGroup;
children = (
944ADD373BC480E713561BE7BF9B8827 /* AHFMNetworking.modulemap */,
104105D24E74E8B6A6EB1E4FF61AFF75 /* AHFMNetworking.xcconfig */,
5B6EFE611945D2FCAECFD071F99A524D /* AHFMNetworking-dummy.m */,
48370E444158A3CA7A6C1682E2C396E6 /* AHFMNetworking-prefix.pch */,
90787BEB71ACD1B7E65D78F333DE5C80 /* AHFMNetworking-umbrella.h */,
469722CB4D29F7431DC63F87D02FB43A /* Info.plist */,
);
name = "Support Files";
path = "../Target Support Files/AHFMNetworking";
sourceTree = "<group>";
};
2934C47F978CCCFD1382DF4006FE016B /* Support Files */ = {
isa = PBXGroup;
children = (
33902CD89E0EB270D28ADC2702B91B0E /* AHDataModel.modulemap */,
D132A1DBE9FA8166BA168A3EDF43C9C7 /* AHDataModel.xcconfig */,
C00461727460DEA92F7341D6849992B9 /* AHDataModel-dummy.m */,
A2FD1984D60412B202FE7AEA55340921 /* AHDataModel-prefix.pch */,
FAC236FB71C0C7762136FCFD407F56BF /* AHDataModel-umbrella.h */,
3D24D10A47CC98761C4BC426F0044EE4 /* Info.plist */,
);
name = "Support Files";
path = "../Target Support Files/AHDataModel";
sourceTree = "<group>";
};
2DF89F9879548CB2AA164AF8F796E3E5 /* Support Files */ = {
isa = PBXGroup;
children = (
B5D1A92AD953D6C5C70A70B405A186DC /* AHServiceRouter.modulemap */,
6D940651CFB55C52D14C108980A07654 /* AHServiceRouter.xcconfig */,
C876E978ECB495C2A479267D1BCCD1CB /* AHServiceRouter-dummy.m */,
13B2BDBF69A36980C8637B61A2E3E3E5 /* AHServiceRouter-prefix.pch */,
B31B866D1DCDFE680C8F2425BADBFF17 /* AHServiceRouter-umbrella.h */,
CFC2391F16ABE55644F976400F1C58C0 /* Info.plist */,
);
name = "Support Files";
path = "../Target Support Files/AHServiceRouter";
sourceTree = "<group>";
};
42D07A5DBBC6E990D41E4855669162F2 /* AHFMDownloadListManager */ = {
isa = PBXGroup;
children = (
131A77F8B2CC27DAFECB8989D0DD7D13 /* AHFMDownloadListManager */,
478CCBA5645B51346CAC83C30B761B81 /* Support Files */,
);
name = AHFMDownloadListManager;
path = ../..;
sourceTree = "<group>";
};
42E1175DC6E12AF28739D7D5D6D3ACEE /* AHFMBottomPlayerServices */ = {
isa = PBXGroup;
children = (
BE3506C178CA865F23E24A28BEB5E990 /* AHFMBottomPlayerServices.swift */,
97609827D5E0C17813C593BF2EACD142 /* Support Files */,
);
name = AHFMBottomPlayerServices;
path = AHFMBottomPlayerServices;
sourceTree = "<group>";
};
4523216A3C948B4CE7549FEBABD473DA /* AHFMDownloadListServices */ = {
isa = PBXGroup;
children = (
8833E3D39312A9E0A0EECA4572BD3561 /* AHFMDownloadListService.swift */,
73088F9D471F32B7BC25079260C1A8FE /* Support Files */,
);
name = AHFMDownloadListServices;
path = AHFMDownloadListServices;
sourceTree = "<group>";
};
478CCBA5645B51346CAC83C30B761B81 /* Support Files */ = {
isa = PBXGroup;
children = (
913FA673940A976EB584CD158EDDFF0E /* AHFMDownloadListManager.modulemap */,
1985C8CFFD69842782231079C8ACD8DD /* AHFMDownloadListManager.xcconfig */,
6D40E331414C46B2A905ED1DF27A7122 /* AHFMDownloadListManager-dummy.m */,
B580A12BE20F57E53F531E52A384CAB6 /* AHFMDownloadListManager-prefix.pch */,
E77E791760640B46C14F7183D0DC6379 /* AHFMDownloadListManager-umbrella.h */,
8CB7F2B79334A33AEEC69AEC4680D012 /* Info.plist */,
);
name = "Support Files";
path = "Example/Pods/Target Support Files/AHFMDownloadListManager";
sourceTree = "<group>";
};
5B0ADF4B1CBE71455C3B3A959B84A8DF /* Support Files */ = {
isa = PBXGroup;
children = (
4066F2898D125E3352244FBDF0755B71 /* AHFMDownloadCenterServices.modulemap */,
1FA5C5A50FE5E87394E59B54A6F69D10 /* AHFMDownloadCenterServices.xcconfig */,
933136F8F406808079CAC22590A01004 /* AHFMDownloadCenterServices-dummy.m */,
C3E55631D3035FC7D646BCE7A5D1EC46 /* AHFMDownloadCenterServices-prefix.pch */,
9568AD1A276F5C94DA2301208F93D60A /* AHFMDownloadCenterServices-umbrella.h */,
2C2F95AC6A7F53AAD007D494A5F15BF1 /* Info.plist */,
);
name = "Support Files";
path = "../Target Support Files/AHFMDownloadCenterServices";
sourceTree = "<group>";
};
5B17067920F9D9001C8757AA35FB8B18 /* Support Files */ = {
isa = PBXGroup;
children = (
9FD4A6036A813F8F43BDAAD07EFA8CBA /* AHFMDataTransformers.modulemap */,
4ACB113FADA457550A800CA9227B4F8D /* AHFMDataTransformers.xcconfig */,
F87558E54450D0ECA1A00D7ED1B293A1 /* AHFMDataTransformers-dummy.m */,
032D555BA34D0C9BE3CE34D97969DBC3 /* AHFMDataTransformers-prefix.pch */,
715CD933BE89001402A63287D437ADDF /* AHFMDataTransformers-umbrella.h */,
0C6EB3CFDB53DAE035CF59947D005A63 /* Info.plist */,
);
name = "Support Files";
path = "../Target Support Files/AHFMDataTransformers";
sourceTree = "<group>";
};
6542FF0DC1809B0C0911A39FBE304564 /* Support Files */ = {
isa = PBXGroup;
children = (
42B4EED056AE3EF22BE5DF062A32E53C /* AHFMServices.modulemap */,
ACDC633B5CDC938302999A84960B06B4 /* AHFMServices.xcconfig */,
54BF1F94D91D2D75C5732BBF9E9560F9 /* AHFMServices-dummy.m */,
765C1F16FE0E339880FFD07881DEE6B5 /* AHFMServices-prefix.pch */,
DF8DA03D9CA4103DABFA319E4AF64AEC /* AHFMServices-umbrella.h */,
E49EDE8F4A6763B87466F94F26D608A4 /* Info.plist */,
);
name = "Support Files";
path = "../Target Support Files/AHFMServices";
sourceTree = "<group>";
};
673985658001B6300F1E5D27B8D1A1B4 /* Support Files */ = {
isa = PBXGroup;
children = (
FD88AD32B48392F4A14C47F5DA6E0AFC /* AHFMDataCenter.modulemap */,
037B2A7BDCA61259987BA9A31DA7E66E /* AHFMDataCenter.xcconfig */,
D3971D35D09E52AA2B47D300745BEA84 /* AHFMDataCenter-dummy.m */,
1DE152647AFAA09E50C8B12176077D08 /* AHFMDataCenter-prefix.pch */,