-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.pbxproj
More file actions
4301 lines (4289 loc) · 236 KB
/
project.pbxproj
File metadata and controls
4301 lines (4289 loc) · 236 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 */
01E76CFA1430D7705D4A94B72BF922A9 /* AHFMModuleManager.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DC81A8FC7826242C1FFE964DBCB6D4B6 /* AHFMModuleManager.framework */; };
025641D58A2FB15A5E5BD7FA6DA10EDD /* KeychainAccess.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 066EBF44CDCE253BE3BD656D133B25FD /* KeychainAccess.framework */; };
029598A8A443974F786ECFC65992FD83 /* AHServiceRouter-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F3A9C51E14271978F63DA4E1AF843CBD /* AHServiceRouter-dummy.m */; };
0760722D89057BBE35F2D5E6D91BD99E /* Manger.swift in Sources */ = {isa = PBXBuildFile; fileRef = 85424906A7F7D5E96A55D8F72BBAF9A2 /* Manger.swift */; };
076B0F3AD41E3FBC3AAA000E382C1D19 /* Timeline.swift in Sources */ = {isa = PBXBuildFile; fileRef = D0FAB4C09C9FFC1DF55DA4971425D795 /* Timeline.swift */; };
0798281F2B1E682F5808633933744A1E /* ServerTrustPolicy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9B69FDFA6DEF921D0FE36B4EB3A8D936 /* ServerTrustPolicy.swift */; };
07A5E60837E229D8A40A04C4CDD71CB3 /* AHFMSubscribedShow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 44D5B16DF66DBC2B9F9DC60010531119 /* AHFMSubscribedShow.swift */; };
0826946EA3B3FE92626706D2437476BE /* AHServiceRouter.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7070DC6DBAA046F5A1D8664D7F1E6F59 /* AHServiceRouter.framework */; };
089376426529595C084BD18FF691EF9C /* AHDataModel-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FB33D4D8AFD8A7D0B2481E43A8CB45E /* AHDataModel-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
091CD2CD4160503446DD4F68D0DA0A46 /* AHFMEpisodeInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0C5EB6A41270578E458A370060DE9623 /* AHFMEpisodeInfo.swift */; };
0965A148DD7E14AE49966213E3BC07B7 /* Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9C8FC136B43A409D2A7137C9B90A27CE /* Alamofire.swift */; };
0A53D7B5A76FBFC0FBAB456FD871AD1A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C032DFF644CFFDD685190EBDA0C053D7 /* Foundation.framework */; };
0DE24BBA949385A1908C8866640A3E0A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C032DFF644CFFDD685190EBDA0C053D7 /* Foundation.framework */; };
0EBF217AED2E7F9C2E52B51B2B466D2A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C032DFF644CFFDD685190EBDA0C053D7 /* Foundation.framework */; };
0EFAFF69BDF516E2F02E45EFBA30CFBF /* AHFMModuleManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8430BAAAED35BE4C433A7D4D5E77FC57 /* AHFMModuleManager.swift */; };
102B595D80CE582F24BD35FBCBB1CF0C /* AHFMDataCenter.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5605AF1D1735D0C9090D974A798EA96C /* AHFMDataCenter.framework */; };
11F5707644C3089487A07031C3EF7A38 /* AHFMDataTransformers.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EC39FF5B1C38D9F51F527365089AE4D /* AHFMDataTransformers.framework */; };
1898367D07E60F8F3ABED4F3A27FD91B /* AHDataModel.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9186629D444885164E571986A049C538 /* AHDataModel.framework */; };
1B9A48C2EC8A6E3B649F801E52128021 /* AHFileSizeProbe.swift in Sources */ = {isa = PBXBuildFile; fileRef = D9C19BC9822F4F9F435C9A28B0D04C77 /* AHFileSizeProbe.swift */; };
1C8268B9202D5E4E056BCB38E2267EBF /* Alamofire-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 49B132F7E08985E5EB729BD7B465297E /* Alamofire-dummy.m */; };
20BD6D1587B4249B949754E60580AE74 /* AHFMDataCenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = B3E60A18C02EF52B9DBD02AEB62DD780 /* AHFMDataCenter.swift */; };
2487B0600FFD38E76E4E5D454B9D7615 /* AHDownloadTool.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AA36A6EE6501310C6D2AC1B4C909A7E9 /* AHDownloadTool.framework */; };
2654EBF76703DBE9E9FB414962BA45FE /* AHDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = 809650F527D09D945A2F4CA3F329B118 /* AHDatabase.swift */; };
26B1663F309FAAD0ED0A02FC26A3E100 /* AHServiceRouter.swift in Sources */ = {isa = PBXBuildFile; fileRef = A877CC8EC5D474155C5445D559CB06A1 /* AHServiceRouter.swift */; };
26C907B357E442B7946F0638911BB6C9 /* Notifications.swift in Sources */ = {isa = PBXBuildFile; fileRef = 70AB67A1D0A7F5EEC36AE4A5FE847910 /* Notifications.swift */; };
28C3C2D2520CF2A05CE235F72F5A5185 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C032DFF644CFFDD685190EBDA0C053D7 /* Foundation.framework */; };
292755C38CB72967EE0E99F1B1C14CCA /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C032DFF644CFFDD685190EBDA0C053D7 /* Foundation.framework */; };
2983270BA8A5E6B0C41E212B159551DE /* AHDownloadTool-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CEFB8404A5CBD18DFA927696BB4ED5C /* AHDownloadTool-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
2EA3E61620765BDE78B7084F5B8ED2F1 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C032DFF644CFFDD685190EBDA0C053D7 /* Foundation.framework */; };
2F9A0013CA2432AF4536E95723B8B019 /* UIDeviceExtension-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F1F32AC276CA56171805977B8A38B360 /* UIDeviceExtension-dummy.m */; };
2F9F1C45FB922FE86B381AEF6038CF3F /* AHDataModelQuery.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7A553CC7F4DD685A20E6AB3701D4EAA5 /* AHDataModelQuery.swift */; };
30FF99F714C82D77BDFD8ECE46CEB1F4 /* AHFMDownloadCenterServices-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E403DFF21A4FE75EA0AB37B57547DCC /* AHFMDownloadCenterServices-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
32A16F3BB3E05501846FCEE1D6FF9E0A /* AHFMShowTransform.swift in Sources */ = {isa = PBXBuildFile; fileRef = D8763183AF637CA23C9B3EBF8864C288 /* AHFMShowTransform.swift */; };
35CBE304490484AD75278065A1FD2C5C /* AHFMShowPageServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2E741FF8FAFC1EC387E7DDEEB0222E24 /* AHFMShowPageServices.framework */; };
36983FD65BA2F41AB4DADD35E3D1150E /* AHFMShow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8087B76DE32AF25BA45F4EE9DB1132D5 /* AHFMShow.swift */; };
3792CC18617E09CEFE3E7D18CBAC1DA2 /* Alamofire.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 374C366DB4D303175D65E0555697B6C1 /* Alamofire.framework */; };
3A872EB205BD12B5A103A2B7AB739177 /* AHFMServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 91772A9C4054DCD19EC1A90EF20F27DF /* AHFMServices.framework */; };
3D22A033EA3FA7F195158305EC80F458 /* UIDeviceExtension.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AD9964F1CBF0DFB94E948D6627F7D80D /* UIDeviceExtension.framework */; };
3DC090B6C3C2240140ED92E593C234F6 /* AHFMBottomPlayerServices.swift in Sources */ = {isa = PBXBuildFile; fileRef = D93D6875BF9EF1BC5E1987B9BB0C8701 /* AHFMBottomPlayerServices.swift */; };
40E8D46A3AECCA0C00E7C68ECA05CE8D /* AHFMDownloadCenterManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0966579E912EEC6F25A30A460A1DF38 /* AHFMDownloadCenterManager.swift */; };
43CB622A4CBF6B783164548A383C747C /* Validation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4AB8F91C13C92382DFA1F553E7DE8F2A /* Validation.swift */; };
45AEA155190F769C06C60040C472A89E /* AHDataModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8C023DF41E367CA974FB6D6A74B77455 /* AHDataModel.swift */; };
487CF8DD86B5E05B5EB6A795D3DBA76C /* AHFMServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 91772A9C4054DCD19EC1A90EF20F27DF /* AHFMServices.framework */; };
4A177BA0C4049CACFC00E67A701108F4 /* AHFMDownloadListServices-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 405288CF1BD098E3D0BB527774389ACE /* AHFMDownloadListServices-dummy.m */; };
4BD5EB7257634C0D6BB8B2D7CCB9CCB7 /* AHFMBottomPlayerServices-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BABB864A938451FECF0481D92DAA17E /* AHFMBottomPlayerServices-dummy.m */; };
4EEE6F31829B94C057E75C4EAFF2EA70 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C032DFF644CFFDD685190EBDA0C053D7 /* Foundation.framework */; };
57284DA2EB5AA768BFA3ACF88C03B2B1 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C032DFF644CFFDD685190EBDA0C053D7 /* Foundation.framework */; };
5BA9A3DEDF4FDFFF7BD67DA5C1B8D7F0 /* AHFMShowPageServices.swift in Sources */ = {isa = PBXBuildFile; fileRef = 55EAF3BF13377DD3DACFABB097B23D56 /* AHFMShowPageServices.swift */; };
5DA99C6666E835466825498B7D442F28 /* SessionManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 44918BCB7E483E1912AF356CC33B39F8 /* SessionManager.swift */; };
5F96F66538EC8FD3759BE1ABA499E7EB /* AHFMModuleManager-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = F51CE36B3779475FDAB757A4CD34AD49 /* AHFMModuleManager-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
60DAD4DB69C3296A8D31800BE05F04D1 /* AHFMServices-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A32D6B4FBE604DA6187F69AE2C933C6 /* AHFMServices-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
61C913F9323C718596BD218B51EB408C /* AHFMBottomPlayerServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 141227E81EE5E19F778C92596189DD6F /* AHFMBottomPlayerServices.framework */; };
61FC7CAB78CF92CAF6D490B035F19E76 /* NetworkReachabilityManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = D0F0D1A375463D16ED206E1794F66129 /* NetworkReachabilityManager.swift */; };
6840600D0401722D71E60D6E10A6149C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C032DFF644CFFDD685190EBDA0C053D7 /* Foundation.framework */; };
6A8C075C3C7853EAAEE6AEF007D54041 /* AHFMAudioPlayerVCServices-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D98A6CACF114D06E8544466CEB4684CD /* AHFMAudioPlayerVCServices-dummy.m */; };
6BE656C6DF2F251D5866A3CEE950609C /* AHFMModuleManager-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A874D899AF0BAB5F5B28798315A525B4 /* AHFMModuleManager-dummy.m */; };
6EB5E62160ED9057CEAE8F883179A89A /* AHFileTool.swift in Sources */ = {isa = PBXBuildFile; fileRef = 11A6E55D9C54A7E6A1CF61DB7F7D26AB /* AHFileTool.swift */; };
73EB4D0A6650D94F6BC338CAF044487D /* AHFMDownloadListService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 27E58F6597F7299FFD831A983C8EA275 /* AHFMDownloadListService.swift */; };
7476818E4CBE153EA05B00FA5B1EC211 /* AHFMDataCenter-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DF42A4920026B97D0F426A71EAE71F7 /* AHFMDataCenter-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
7596607984DE56E19390632E67394028 /* Alamofire-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = F854F414E32DB3F9AFDFE83BBD045D69 /* Alamofire-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
76C567AF3FE11BA5DAECB3A9ECE3838B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C032DFF644CFFDD685190EBDA0C053D7 /* Foundation.framework */; };
78F64296BF942C1EEBAA9D7C3E609661 /* AHFMDownloadListServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FFBA7C7EA888E12E38D49D2A0AB69C34 /* AHFMDownloadListServices.framework */; };
7A1DED74661BA174DFF74591639A636E /* AHFMAudioPlayerVCServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E6ACC6A9E323D43940806AAA945F86C2 /* AHFMAudioPlayerVCServices.framework */; };
7C659CBE5E529DBA72BD26D709B5778E /* TaskDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = D266902733C43C76575D79146E7D1746 /* TaskDelegate.swift */; };
7D26178531BC6F5F5D0473F74ACB4533 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C032DFF644CFFDD685190EBDA0C053D7 /* Foundation.framework */; };
7DBFE00052B73FAB8297446F1914489B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C032DFF644CFFDD685190EBDA0C053D7 /* Foundation.framework */; };
7ED6E1B8A5A9E7CB4E020A642454734D /* AHFMServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 91772A9C4054DCD19EC1A90EF20F27DF /* AHFMServices.framework */; };
7F5545EF83716D1879EFA819A6F64B8F /* AHFMDownloadCenterManager-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 93DE93D2B91F98AD30D1EC59B9B2245A /* AHFMDownloadCenterManager-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
7F6E55627D497607731D57A9EFAFF815 /* Pods-AHFMDownloadCenterManager_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F1A3B375569042A65382BDE4D99E1498 /* Pods-AHFMDownloadCenterManager_Tests-dummy.m */; };
7FCF5D6D63F59FEFD0A1944934909739 /* KeychainAccess-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = EF61489D49F1FF40206C04DDBD5D78A8 /* KeychainAccess-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
82223E634611AA235CFCE61B3784F4AE /* AHFMDataCenter-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A16ABF0CFF7FA96F5CF8893BAF54F23 /* AHFMDataCenter-dummy.m */; };
83BB20973512DD9B0498FB857FCAC19A /* AHFMNetworking-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = C6CFFCA6E60A263C47D62A536F5FEEAB /* AHFMNetworking-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
8426D017CAFF19347FAF72F6A0903A0F /* AHFMBottomPlayerServices-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DE983278406104ADF6C6129009DC791 /* AHFMBottomPlayerServices-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
84C06CA728812A945DC86D715B14A0C2 /* AHFMServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 91772A9C4054DCD19EC1A90EF20F27DF /* AHFMServices.framework */; };
85B8E2ADC17C2C94221FAF2D7E6857B9 /* SessionDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = B8998A94E82764F2DCFBD09B67231125 /* SessionDelegate.swift */; };
8806DF44E76FA1B0E30EC6AED19A5E73 /* AHFMNetworking-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 826007FA442855EB3BEF1F71811C449D /* AHFMNetworking-dummy.m */; };
8A43301A1FD1C5B83B57B60A76DA9886 /* SwiftyJSON.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 56B4B60A0F389426DA68A5E55C0A68DD /* SwiftyJSON.framework */; };
8B9CD8EC4724FE8A415B4A09D6FA910B /* AHDataTask.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7AE857A1043311CD7FBA9F380A2170F /* AHDataTask.swift */; };
8E357A8575E7F57FAD16D1A2E6C07DC7 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C032DFF644CFFDD685190EBDA0C053D7 /* Foundation.framework */; };
937383D976B5FEFF0A38C50FC6596EF9 /* AHFMDownloadCenterServices.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9483DED0428691F078505DAF044560AD /* AHFMDownloadCenterServices.swift */; };
93EFC69031B7F4AF40DC9FC52B4A4C28 /* MultipartFormData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7D6231ADE2E96CCF9AC84299668A62F5 /* MultipartFormData.swift */; };
94DC547BDBC273D6C081FBE43AF06998 /* Result.swift in Sources */ = {isa = PBXBuildFile; fileRef = 07BDDE0F94912EDD9B000BF72FD1A3DF /* Result.swift */; };
95CE55CB17944E5498A1ACCDC250DC08 /* AHFMEpisodeTransform.swift in Sources */ = {isa = PBXBuildFile; fileRef = 730F4AE00CEE5F3D285E8317DFBD9E3A /* AHFMEpisodeTransform.swift */; };
9948B99E63C147C89AF568E060D5E1AB /* AHDB.swift in Sources */ = {isa = PBXBuildFile; fileRef = 861949A9FD97DF404BBCABF1509DCAB1 /* AHDB.swift */; };
9AB681EAEC23F4CB82D5AAFC97F6798E /* Alamofire.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 374C366DB4D303175D65E0555697B6C1 /* Alamofire.framework */; };
A1D83C61E83145F8968922A4A66A6609 /* AHFMShowPageServices-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A9CB0069F315B7CBDD2AD566CD1AC9D /* AHFMShowPageServices-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
A5068F3D2B2FFAA5F22177BC7026F21B /* UIDeviceExtension-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 449C656F1D898BB13E1BE3AEE0EDDE95 /* UIDeviceExtension-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
A586A6A878CB413F5672A939CECA7BFB /* AHFMDataTransformers-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B07E21C2462B27983FCDC6B277A1FBB0 /* AHFMDataTransformers-dummy.m */; };
A7308A6945BC38CD642571F8233C949A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C032DFF644CFFDD685190EBDA0C053D7 /* Foundation.framework */; };
A73630160858F94277F9970DB15EA2A8 /* AHFMAudioPlayerVCServices-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = A02EF8C0A895100D0D05A56AED76CF14 /* AHFMAudioPlayerVCServices-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
A8F294E2DDBD4AE96F46F2E31C7AD6AC /* KeychainAccess-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FD74E470361B9F417FB9FFE0DAAF77E6 /* KeychainAccess-dummy.m */; };
A9EC39F9F9C7687CAAC60E894C34B471 /* Pods-AHFMDownloadCenterManager_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 29456FFDA0FD554F8450F6D2441BA670 /* Pods-AHFMDownloadCenterManager_Example-dummy.m */; };
AA218C2806FB7106F1C1D6E02A85B154 /* AHNetworkConstants.swift in Sources */ = {isa = PBXBuildFile; fileRef = E195EDDC80D48252765E8A2E1E5DFB89 /* AHNetworkConstants.swift */; };
AB2E638C38C54111C700A6E06E3F10AC /* AHDataModel.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9186629D444885164E571986A049C538 /* AHDataModel.framework */; };
AB9E7A741F6418AE6471CD89B0F11760 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C032DFF644CFFDD685190EBDA0C053D7 /* Foundation.framework */; };
ABF3557D5C31EF5A054BCB3A1F226014 /* AHFMServices.swift in Sources */ = {isa = PBXBuildFile; fileRef = 67F024B3BE490E9FD8E799AAD7C0FD7A /* AHFMServices.swift */; };
ACB9E7638CC28B209404774B912C9C3A /* Response.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3B1430DD610FCF6DF1B9AA92B8FB3F94 /* Response.swift */; };
AD618C25DBCBD01E4844DDAFEC37747D /* AHDBColumnInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC213E598A3076B07B27CED8A7932673 /* AHDBColumnInfo.swift */; };
AE4DF20360653F2D22563D6C7B29BCC9 /* AHFMEpisode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9C91B14B83CD8C7F90005439F10B6168 /* AHFMEpisode.swift */; };
B34FDF0E26DBB1D129F43C3645C84D0C /* KeychainAccess.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 066EBF44CDCE253BE3BD656D133B25FD /* KeychainAccess.framework */; };
B4B9E30B53AEB1C380C9C0127B745495 /* AHFMDataTransformers-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F7B8BC8EB485B9CBDE9EF082590746 /* AHFMDataTransformers-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
B5F0007CEDF8921CF49F6AE64197C442 /* UIDeviceExtension.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AD9964F1CBF0DFB94E948D6627F7D80D /* UIDeviceExtension.framework */; };
B9F8074B829E6E099F82F8AE273BD2FA /* AHKeychain.swift in Sources */ = {isa = PBXBuildFile; fileRef = CB54133445BB8C050B90558CD2DCAFBD /* AHKeychain.swift */; };
BAAC4293A822346B1F27573BF927E1BE /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C032DFF644CFFDD685190EBDA0C053D7 /* Foundation.framework */; };
BC2210997B59B360061F41BA2071274C /* AFError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6EA17CA4186AAAE34A19BEDFB452BE76 /* AFError.swift */; };
BD845512A9C5CA23EB8D5A6140C669AA /* AHFMNetworking.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2E814A79840A368012F42B14D99C87DE /* AHFMNetworking.framework */; };
C1EBF8CE1C69DE2C1C450325344F2878 /* Migration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1D47C00B8C1F2C6A808F243EE0A0B641 /* Migration.swift */; };
C2E23EB41DAE24BBA5AB7D22C106BE16 /* OAuth2Handler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0630CF3A5DCE959A349AAC8495AA84B7 /* OAuth2Handler.swift */; };
C31DFDC3F14DF9C6738368FA98BA084C /* ParameterEncoding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7526B7EAE8E3F37B35ABF157E592960D /* ParameterEncoding.swift */; };
C55AA6C67E99C1FAFC3BAC71027B0F0A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C032DFF644CFFDD685190EBDA0C053D7 /* Foundation.framework */; };
C5A20D14B043009931C6CE4CBDC0EE06 /* Pods-AHFMDownloadCenterManager_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = A8C9815ED0E5DCD8C5240696CC3B96A1 /* Pods-AHFMDownloadCenterManager_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
C74B9578EB03A19FEB659320D9BDB3B2 /* AHFMNetworking.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FC553EB047C01BE1ADDC6831FBE91C3 /* AHFMNetworking.swift */; };
C9F1B91E1B6B60CC53D21BBEA04E28B3 /* AHFMDownloadListServices-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 27E5E8DE8D40B03D0E3A6044F51D2E66 /* AHFMDownloadListServices-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
D1BC0C9BF05B65CAF222AC33FB3D65E3 /* Migrator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 18A336068CB98AABF91CE1F82BC01552 /* Migrator.swift */; };
D2A7AAB2766A5EF117422763FBA1E00B /* AHFMAudioPlayerVCServices.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4D58E4BB390A23AB945D4AF4B20BA19F /* AHFMAudioPlayerVCServices.swift */; };
D630413845C96FEF512B142E7F553C31 /* AHFMDownloadCenterServices-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 761D4FDF85D67412D20B49692A8A9442 /* AHFMDownloadCenterServices-dummy.m */; };
D64FE85AC3C06F7D41D9FE1CD85B9B03 /* AHFMEpisodeHistory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3F4B791B600F84D5B4DD6DF6F4FD8BE3 /* AHFMEpisodeHistory.swift */; };
E030FA532B82974EC2E8CF31ABCB4E86 /* ResponseSerialization.swift in Sources */ = {isa = PBXBuildFile; fileRef = F04CA73A2B779C4D1C4E06A82174A3AB /* ResponseSerialization.swift */; };
E262045C2C9FB75F50AD707056B00001 /* AHServiceRouter-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 0670295ACBCF8098C8DA4AC6D8D26B7A /* AHServiceRouter-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
E2D3520233DAA14F501F8E558CFB3EC1 /* DispatchQueue+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E95F0CCEE374E7D3D6422B119B7A04E /* DispatchQueue+Alamofire.swift */; };
E3A59E60DABAB10E2F6EC8452AADECAE /* UIDevice+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = E4210121F18C61402E2449A63161BD49 /* UIDevice+Extension.swift */; };
E48A0477E0D9A1A5155398F6650E7021 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C032DFF644CFFDD685190EBDA0C053D7 /* Foundation.framework */; };
E48A3E1BD2A4AEEA927429A2E9298260 /* AHFMDownloadCenterServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 39F73F3B7113D8B83BF1DCCDD70C2EC2 /* AHFMDownloadCenterServices.framework */; };
E886601C65F6A7AFF40781123E84556E /* SwiftyJSON.swift in Sources */ = {isa = PBXBuildFile; fileRef = D748F6DADFFC8522161F19F66C884631 /* SwiftyJSON.swift */; };
EAF5B1CC1F464BE3E9F2666384540E1B /* Pods-AHFMDownloadCenterManager_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FA0F2EE10FA0D7CD97273FDFA875552 /* Pods-AHFMDownloadCenterManager_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
EBB0B36F14342B1132D3C4C0A19BAB08 /* SwiftyJSON-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 079C3B8D16BA58394E640F9C9E4E2F1B /* SwiftyJSON-dummy.m */; };
EC2DD47173699EF2CB6F845D4CA19C7C /* AHDownloadTool-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9473B289328138CE860D0E4FA730B347 /* AHDownloadTool-dummy.m */; };
ED74D6C8098DA3FBDE71F9F2C3B4343A /* AHFMServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 91772A9C4054DCD19EC1A90EF20F27DF /* AHFMServices.framework */; };
ED8592911D8769A730CC10F323CD91EE /* SwiftyJSON.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 56B4B60A0F389426DA68A5E55C0A68DD /* SwiftyJSON.framework */; };
EFC76090884A4FEF371BF910206E3944 /* AHFMDownloadCenterManager-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 909AF0612AE2EBB4C702F5992CCA9CE3 /* AHFMDownloadCenterManager-dummy.m */; };
F0BA6053F3FF1E9AA1E2112B37C920AB /* Keychain.swift in Sources */ = {isa = PBXBuildFile; fileRef = 397B594F2B471DCFD876C7B3F309677C /* Keychain.swift */; };
F1CC403B475A55892913D014B94E6EB3 /* SwiftyJSON-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 265B016E340FBD740E0B89D0973E3A0D /* SwiftyJSON-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
F1F33F989830B6CAE2E8C31B4C59ECC3 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C032DFF644CFFDD685190EBDA0C053D7 /* Foundation.framework */; };
F57D5B6D2DD00C8401ED8F5D8CE8CD97 /* AHFMServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 91772A9C4054DCD19EC1A90EF20F27DF /* AHFMServices.framework */; };
F7ECA1D56564BD0368FA957BCB9ED6A7 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C032DFF644CFFDD685190EBDA0C053D7 /* Foundation.framework */; };
F96653C05B1749D4D0AA6747174C0568 /* AHDataTaskManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1B97A9649C05F967BF8F5E38F99B5180 /* AHDataTaskManager.swift */; };
F9D8E5FECFFC18C79E89B2374CA7D102 /* Request.swift in Sources */ = {isa = PBXBuildFile; fileRef = BB8A0FDDAB1010A83D7EF65F4B402E76 /* Request.swift */; };
FA3659BCE4FFA8DF45F3F4608F2BE4A5 /* AHFMShowPageServices-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F6F93908DEBEFF2C19A3F7BC577C32AB /* AHFMShowPageServices-dummy.m */; };
FB7F6146FB91963D61AFA6DABAAF3150 /* AHDataModel-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9CAA735F01D56390BB590AAEFB90769D /* AHDataModel-dummy.m */; };
FBD9454CF1C35C63311A3857E2C12F6E /* AHFMServices-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B80534E76DFC56426BD4DD286DA2D1C /* AHFMServices-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 = ED502015755919A139C59C7E499296E5;
remoteInfo = AHDataModel;
};
0585C9D282D44951D233C34BF1841BDB /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 842EB1FE1C6C03705ED6CD3F882CDBC8;
remoteInfo = AHFMDownloadCenterServices;
};
17C176E9DE0E527136DBEECF9CD6391D /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = BED45BF61BDECD9D2BB8B23AE9D53D3D;
remoteInfo = AHFMShowPageServices;
};
19234AECFAF984241C2EF4124AAF25B0 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = DC6434385E58C47B3D9AFEEFCA3C083F;
remoteInfo = AHFMDataTransformers;
};
1A2B263487D5350E0C10436AEC799D56 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 58B959FA607D16B45162E1722671DCC6;
remoteInfo = AHFMServices;
};
21D3FED9B07C7A74A408A3C1A73064C0 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 5345C7FC94331BF4868BA42103640073;
remoteInfo = Alamofire;
};
300F33A2FD1FC6FC1A36A0F60B9C5A94 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = BEF6A7F98020F19C17D7B5F1EDC58542;
remoteInfo = AHFMAudioPlayerVCServices;
};
32358BFB6CC6A00AFD48367F19ECCDEC /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 532FB8A94F5CA9915504AA89470E53A1;
remoteInfo = AHDownloadTool;
};
3EFEFBC1A41E31B5108C9C5A6894D928 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 816374D115E6FB620EA7042CF7C05739;
remoteInfo = SwiftyJSON;
};
4584CE672F18ABEE50F2521ACAEA62AA /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 58B959FA607D16B45162E1722671DCC6;
remoteInfo = AHFMServices;
};
476A3EF96658DF97D6F8D2EBCF6B38E1 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 58B959FA607D16B45162E1722671DCC6;
remoteInfo = AHFMServices;
};
56681C0C74AA4EA5E5A051E8232C7220 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = E29C9718D9B9A80FED84459EBA1C2BB4;
remoteInfo = AHFMModuleManager;
};
5D9B461F62130B90DE1BF02220AD10E1 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 820131156757CAB66181ACAEE457B109;
remoteInfo = UIDeviceExtension;
};
5F5A6678A11126419F4E194DA9D6C850 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 183940A268DE97DF764E9BE6F9B3FCEA;
remoteInfo = AHFMNetworking;
};
5F9486867580C7CE061EA83385E602A3 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = ED502015755919A139C59C7E499296E5;
remoteInfo = AHDataModel;
};
6D5C9630212A823B849037C2D9268ED3 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 092D0A40D6045DE75C3E46BC3B97370D;
remoteInfo = AHFMDataCenter;
};
6F379F2B9E74FD6DCCDAD6E690569331 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = BE11E00D3FB3BC9A4002B422C85D76F2;
remoteInfo = AHFMDownloadCenterManager;
};
76344A0B54AC0EEF91FE70D500A74237 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = ED502015755919A139C59C7E499296E5;
remoteInfo = AHDataModel;
};
77170969A1A1915EDEDADFC78D8427A0 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 8C1EE9091653098E2BCC00F7B1FC00DB;
remoteInfo = AHFMBottomPlayerServices;
};
7D09CAC8193BEA62DFEEA4282D3BBFFA /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 58B959FA607D16B45162E1722671DCC6;
remoteInfo = AHFMServices;
};
7F180B87595C073A3296AE5F9B52EE38 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = E29C9718D9B9A80FED84459EBA1C2BB4;
remoteInfo = AHFMModuleManager;
};
8463584850C388AD2069554B5720DA8B /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 58B959FA607D16B45162E1722671DCC6;
remoteInfo = AHFMServices;
};
85B8CDF3402583CEAAE8F66D67BDA008 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 092D0A40D6045DE75C3E46BC3B97370D;
remoteInfo = AHFMDataCenter;
};
8B541659DBEEB6AA43029BA23A16E29F /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 0706E6C55AA7192DFD97FBA10F294A98;
remoteInfo = AHServiceRouter;
};
90475BBA4FC312F2B67864A4DD6D8D7B /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 5345C7FC94331BF4868BA42103640073;
remoteInfo = Alamofire;
};
98AE7B24C16FE7DEB0E14DDE474F2EB3 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 0706E6C55AA7192DFD97FBA10F294A98;
remoteInfo = AHServiceRouter;
};
9D73D6729DE0F8E8A6CA362396D2D187 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 842EB1FE1C6C03705ED6CD3F882CDBC8;
remoteInfo = AHFMDownloadCenterServices;
};
A5CAC11821588BE87D8B8B67347E1366 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 532FB8A94F5CA9915504AA89470E53A1;
remoteInfo = AHDownloadTool;
};
A8B49757396154E64201FD6111B749B4 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 820131156757CAB66181ACAEE457B109;
remoteInfo = UIDeviceExtension;
};
A98B77C88E9EA9FD39D9DEC5F0E9E899 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = BEF6A7F98020F19C17D7B5F1EDC58542;
remoteInfo = AHFMAudioPlayerVCServices;
};
AAC91BA502A834126865DF37735A6D47 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = DC6434385E58C47B3D9AFEEFCA3C083F;
remoteInfo = AHFMDataTransformers;
};
AC272F8319CD1BF8DB0A57F0C90AC397 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 816374D115E6FB620EA7042CF7C05739;
remoteInfo = SwiftyJSON;
};
AED3682A5335DC48FEAB3E98AB86AA04 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 8C1EE9091653098E2BCC00F7B1FC00DB;
remoteInfo = AHFMBottomPlayerServices;
};
B13F79CB4C523B6C1C2757431E74069E /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = CBD339C9690A9D6E0367E0FF88530060;
remoteInfo = AHFMDownloadListServices;
};
BBE984A3EAC6C94B29063F16B91BD486 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 5345C7FC94331BF4868BA42103640073;
remoteInfo = Alamofire;
};
C0632D4586A0A8AC72E0F552C9BC3DF1 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = CF12E23E22EB21BD7C35D8CCF65F90CF;
remoteInfo = KeychainAccess;
};
C5C37DC6B5A4AA09C2AE068A72A4AA2F /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = CF12E23E22EB21BD7C35D8CCF65F90CF;
remoteInfo = KeychainAccess;
};
C7345035AE0E9E2B9C4BCC57BAB186F3 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = CBD339C9690A9D6E0367E0FF88530060;
remoteInfo = AHFMDownloadListServices;
};
CE8046686AD8E91263FF750A9A1FB55F /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = CF12E23E22EB21BD7C35D8CCF65F90CF;
remoteInfo = KeychainAccess;
};
D79A65D585B208AEE407ED4F06BB7B56 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 183940A268DE97DF764E9BE6F9B3FCEA;
remoteInfo = AHFMNetworking;
};
E2AC30B0D1238BD02D6930A332F76CC3 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 820131156757CAB66181ACAEE457B109;
remoteInfo = UIDeviceExtension;
};
EFADCFB97A850450BF029D125CF1BC72 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 58B959FA607D16B45162E1722671DCC6;
remoteInfo = AHFMServices;
};
F04C3532A195E556C8A76D62B1B597C0 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = BED45BF61BDECD9D2BB8B23AE9D53D3D;
remoteInfo = AHFMShowPageServices;
};
F385576B2D35C99C3D5DDF774F2ED7D6 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 58B959FA607D16B45162E1722671DCC6;
remoteInfo = AHFMServices;
};
/* End PBXContainerItemProxy section */
/* Begin PBXFileReference section */
04A952495CE2099E2469E7B6482AFFF9 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
05CFE8B657CC2BBCF1650FAEE9EFA565 /* AHFMAudioPlayerVCServices-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMAudioPlayerVCServices-prefix.pch"; sourceTree = "<group>"; };
0630CF3A5DCE959A349AAC8495AA84B7 /* OAuth2Handler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OAuth2Handler.swift; path = AHFMNetworking/Classes/OAuth2Handler.swift; sourceTree = "<group>"; };
066EBF44CDCE253BE3BD656D133B25FD /* KeychainAccess.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = KeychainAccess.framework; sourceTree = BUILT_PRODUCTS_DIR; };
0670295ACBCF8098C8DA4AC6D8D26B7A /* AHServiceRouter-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHServiceRouter-umbrella.h"; sourceTree = "<group>"; };
07625F54F237BE8FFDD90A0F9B53A414 /* Pods-AHFMDownloadCenterManager_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = "Pods-AHFMDownloadCenterManager_Tests.modulemap"; sourceTree = "<group>"; };
079C3B8D16BA58394E640F9C9E4E2F1B /* SwiftyJSON-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SwiftyJSON-dummy.m"; sourceTree = "<group>"; };
07BDDE0F94912EDD9B000BF72FD1A3DF /* Result.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Result.swift; path = Source/Result.swift; sourceTree = "<group>"; };
08C01FE098280098DF15589E546B6D00 /* AHFMNetworking-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMNetworking-prefix.pch"; sourceTree = "<group>"; };
0C5EB6A41270578E458A370060DE9623 /* AHFMEpisodeInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMEpisodeInfo.swift; path = AHFMDataCenter/Classes/AHFMEpisodeInfo.swift; sourceTree = "<group>"; };
0CEFB8404A5CBD18DFA927696BB4ED5C /* AHDownloadTool-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHDownloadTool-umbrella.h"; sourceTree = "<group>"; };
0F93696C9014A7A078DECE03C6FEE067 /* AHDownloadTool.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = AHDownloadTool.framework; path = AHDownloadTool.framework; sourceTree = BUILT_PRODUCTS_DIR; };
0F9B6D2A5E7CBCEEA63261EC72A10D87 /* AHFMDownloadListServices-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMDownloadListServices-prefix.pch"; sourceTree = "<group>"; };
10675BDB08066E281E2B2A923071603B /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
11A6E55D9C54A7E6A1CF61DB7F7D26AB /* AHFileTool.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFileTool.swift; path = AHDownloadTool/Classes/AHFileTool.swift; sourceTree = "<group>"; };
11C600E6C104E83D64649D85E23D8512 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
1331C06E283695FD3FEB54675181AE20 /* AHFMServices.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = AHFMServices.modulemap; sourceTree = "<group>"; };
141227E81EE5E19F778C92596189DD6F /* AHFMBottomPlayerServices.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHFMBottomPlayerServices.framework; sourceTree = BUILT_PRODUCTS_DIR; };
1538CE8C981E52D1471A6486376BAB25 /* AHFMAudioPlayerVCServices.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = AHFMAudioPlayerVCServices.modulemap; sourceTree = "<group>"; };
179BF4E56BFE4D1421C2B939EE7B9831 /* AHFMShowPageServices-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMShowPageServices-prefix.pch"; sourceTree = "<group>"; };
18225CEECDAD9058FBE20617E65E08C5 /* Alamofire-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Alamofire-prefix.pch"; sourceTree = "<group>"; };
18A336068CB98AABF91CE1F82BC01552 /* Migrator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Migrator.swift; path = AHDataModel/Classes/Migrator.swift; sourceTree = "<group>"; };
19E43C5889630788952F8346EC2E4435 /* AHFMDataTransformers.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHFMDataTransformers.xcconfig; sourceTree = "<group>"; };
1B06E72219EFDD3122D59E2C66BA1C8E /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
1B73BC3652E0C3DC71ABB4A0432DECF5 /* AHFMShowPageServices.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = AHFMShowPageServices.modulemap; sourceTree = "<group>"; };
1B97A9649C05F967BF8F5E38F99B5180 /* AHDataTaskManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHDataTaskManager.swift; path = AHDownloadTool/Classes/AHDataTaskManager.swift; sourceTree = "<group>"; };
1C42F1574041A24132C2A688F988C16B /* Pods-AHFMDownloadCenterManager_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AHFMDownloadCenterManager_Tests-acknowledgements.plist"; sourceTree = "<group>"; };
1C82E79136BED900E302F7760071A98A /* UIDeviceExtension-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIDeviceExtension-prefix.pch"; sourceTree = "<group>"; };
1D47C00B8C1F2C6A808F243EE0A0B641 /* Migration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Migration.swift; path = AHDataModel/Classes/Migration.swift; sourceTree = "<group>"; };
1D5524D9FA1902BA349DAB395769C6AC /* AHDownloadTool.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHDownloadTool.xcconfig; sourceTree = "<group>"; };
1DA472E3633C5DCCEA01BDAFD68AA2D9 /* AHDataModel.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = AHDataModel.modulemap; sourceTree = "<group>"; };
1FBA57B4696D8D7B4B437D40F37AA0AD /* Pods_AHFMDownloadCenterManager_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_AHFMDownloadCenterManager_Tests.framework; path = "Pods-AHFMDownloadCenterManager_Tests.framework"; sourceTree = BUILT_PRODUCTS_DIR; };
1FC553EB047C01BE1ADDC6831FBE91C3 /* AHFMNetworking.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMNetworking.swift; path = AHFMNetworking/Classes/AHFMNetworking.swift; sourceTree = "<group>"; };
2531B7B3D0C6B0B4C5739CD8893B5DFF /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
265B016E340FBD740E0B89D0973E3A0D /* SwiftyJSON-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SwiftyJSON-umbrella.h"; sourceTree = "<group>"; };
27E58F6597F7299FFD831A983C8EA275 /* AHFMDownloadListService.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMDownloadListService.swift; path = AHFMDownloadListServices/Classes/AHFMDownloadListService.swift; sourceTree = "<group>"; };
27E5E8DE8D40B03D0E3A6044F51D2E66 /* AHFMDownloadListServices-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMDownloadListServices-umbrella.h"; sourceTree = "<group>"; };
28DB71F3551A9973A8AD9B0EC83A5BBD /* Pods-AHFMDownloadCenterManager_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-AHFMDownloadCenterManager_Tests-acknowledgements.markdown"; sourceTree = "<group>"; };
29456FFDA0FD554F8450F6D2441BA670 /* Pods-AHFMDownloadCenterManager_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-AHFMDownloadCenterManager_Example-dummy.m"; sourceTree = "<group>"; };
2E741FF8FAFC1EC387E7DDEEB0222E24 /* AHFMShowPageServices.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHFMShowPageServices.framework; sourceTree = BUILT_PRODUCTS_DIR; };
2E814A79840A368012F42B14D99C87DE /* AHFMNetworking.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHFMNetworking.framework; sourceTree = BUILT_PRODUCTS_DIR; };
2E95F0CCEE374E7D3D6422B119B7A04E /* DispatchQueue+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DispatchQueue+Alamofire.swift"; path = "Source/DispatchQueue+Alamofire.swift"; sourceTree = "<group>"; };
2F45E12F1B6972F16D9D09571EF3E50F /* AHFMServices.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = AHFMServices.framework; path = AHFMServices.framework; sourceTree = BUILT_PRODUCTS_DIR; };
2F770A881DF39A66A86AB960E087A1D6 /* AHFMModuleManager.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHFMModuleManager.xcconfig; sourceTree = "<group>"; };
2FB33D4D8AFD8A7D0B2481E43A8CB45E /* AHDataModel-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHDataModel-umbrella.h"; sourceTree = "<group>"; };
30F52C1E834913DFF84B0EA29A8B8E68 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
374C366DB4D303175D65E0555697B6C1 /* Alamofire.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Alamofire.framework; sourceTree = BUILT_PRODUCTS_DIR; };
38EBF29435C21115993EC8285BDDA18C /* AHFMDataTransformers.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = AHFMDataTransformers.framework; path = AHFMDataTransformers.framework; sourceTree = BUILT_PRODUCTS_DIR; };
397B594F2B471DCFD876C7B3F309677C /* Keychain.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Keychain.swift; path = Lib/KeychainAccess/Keychain.swift; sourceTree = "<group>"; };
39F73F3B7113D8B83BF1DCCDD70C2EC2 /* AHFMDownloadCenterServices.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHFMDownloadCenterServices.framework; sourceTree = BUILT_PRODUCTS_DIR; };
3A9CB0069F315B7CBDD2AD566CD1AC9D /* AHFMShowPageServices-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMShowPageServices-umbrella.h"; sourceTree = "<group>"; };
3AA489F8389DF5BCBEC94384065171A3 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
3B1430DD610FCF6DF1B9AA92B8FB3F94 /* Response.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Response.swift; path = Source/Response.swift; sourceTree = "<group>"; };
3B80534E76DFC56426BD4DD286DA2D1C /* AHFMServices-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHFMServices-dummy.m"; sourceTree = "<group>"; };
3D4B6179B106D0732FEFFF8A2A8A25CE /* UIDeviceExtension.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = UIDeviceExtension.framework; path = UIDeviceExtension.framework; sourceTree = BUILT_PRODUCTS_DIR; };
3E403DFF21A4FE75EA0AB37B57547DCC /* AHFMDownloadCenterServices-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMDownloadCenterServices-umbrella.h"; sourceTree = "<group>"; };
3F3DE4149E5DB527FEBD543A6D67B999 /* Pods-AHFMDownloadCenterManager_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-AHFMDownloadCenterManager_Example-acknowledgements.markdown"; sourceTree = "<group>"; };
3F4B791B600F84D5B4DD6DF6F4FD8BE3 /* AHFMEpisodeHistory.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMEpisodeHistory.swift; path = AHFMDataCenter/Classes/AHFMEpisodeHistory.swift; sourceTree = "<group>"; };
3FA0F2EE10FA0D7CD97273FDFA875552 /* Pods-AHFMDownloadCenterManager_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-AHFMDownloadCenterManager_Tests-umbrella.h"; sourceTree = "<group>"; };
405288CF1BD098E3D0BB527774389ACE /* AHFMDownloadListServices-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHFMDownloadListServices-dummy.m"; sourceTree = "<group>"; };
40B8FDEA8AF299DC8BB6F56238159178 /* SwiftyJSON.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = SwiftyJSON.framework; path = SwiftyJSON.framework; sourceTree = BUILT_PRODUCTS_DIR; };
40F291FF2C5385C0EB02EF4646BA87FD /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
44918BCB7E483E1912AF356CC33B39F8 /* SessionManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionManager.swift; path = Source/SessionManager.swift; sourceTree = "<group>"; };
449C656F1D898BB13E1BE3AEE0EDDE95 /* UIDeviceExtension-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIDeviceExtension-umbrella.h"; sourceTree = "<group>"; };
44D5B16DF66DBC2B9F9DC60010531119 /* AHFMSubscribedShow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMSubscribedShow.swift; path = AHFMDataCenter/Classes/AHFMSubscribedShow.swift; sourceTree = "<group>"; };
466F3156337BC80C2B9DC5A969B68A20 /* Pods-AHFMDownloadCenterManager_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AHFMDownloadCenterManager_Example.release.xcconfig"; sourceTree = "<group>"; };
486C956B63DF2696592B0414CBB6076C /* Pods-AHFMDownloadCenterManager_Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AHFMDownloadCenterManager_Example-resources.sh"; sourceTree = "<group>"; };
49B132F7E08985E5EB729BD7B465297E /* Alamofire-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Alamofire-dummy.m"; sourceTree = "<group>"; };
4AB8F91C13C92382DFA1F553E7DE8F2A /* Validation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Validation.swift; path = Source/Validation.swift; sourceTree = "<group>"; };
4D58E4BB390A23AB945D4AF4B20BA19F /* AHFMAudioPlayerVCServices.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMAudioPlayerVCServices.swift; path = AHFMAudioPlayerVCServices/Classes/AHFMAudioPlayerVCServices.swift; sourceTree = "<group>"; };
4DDB9CA4BF4FE3A1F3BB4CF0A8040C56 /* KeychainAccess.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = KeychainAccess.modulemap; sourceTree = "<group>"; };
4DE983278406104ADF6C6129009DC791 /* AHFMBottomPlayerServices-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMBottomPlayerServices-umbrella.h"; sourceTree = "<group>"; };
4EFD9204C10551DD3C1EC2E706BA0C8F /* AHDataModel-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHDataModel-prefix.pch"; sourceTree = "<group>"; };
4FFA8AA97ECB23C37130908FEA8419D5 /* Pods_AHFMDownloadCenterManager_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_AHFMDownloadCenterManager_Example.framework; path = "Pods-AHFMDownloadCenterManager_Example.framework"; sourceTree = BUILT_PRODUCTS_DIR; };
51E65F76BD354809495B470CDBB6BFA4 /* AHFMDownloadListServices.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = AHFMDownloadListServices.modulemap; sourceTree = "<group>"; };
5526C397AC29D52581F072CD8346B1AA /* AHFMNetworking.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = AHFMNetworking.modulemap; sourceTree = "<group>"; };
55EAF3BF13377DD3DACFABB097B23D56 /* AHFMShowPageServices.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMShowPageServices.swift; path = AHFMShowPageServices/Classes/AHFMShowPageServices.swift; sourceTree = "<group>"; };
5605AF1D1735D0C9090D974A798EA96C /* AHFMDataCenter.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHFMDataCenter.framework; sourceTree = BUILT_PRODUCTS_DIR; };
56B4B60A0F389426DA68A5E55C0A68DD /* SwiftyJSON.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = SwiftyJSON.framework; sourceTree = BUILT_PRODUCTS_DIR; };
57A33D00AEF566E7A7D8F6911681934B /* AHDownloadTool-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHDownloadTool-prefix.pch"; sourceTree = "<group>"; };
5A8BD5506B7F587B666DACE556F1A7C0 /* AHFMDataCenter.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = AHFMDataCenter.framework; path = AHFMDataCenter.framework; sourceTree = BUILT_PRODUCTS_DIR; };
5C632D2344C4EDCAF46687E03DCC5159 /* Pods-AHFMDownloadCenterManager_Tests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AHFMDownloadCenterManager_Tests-resources.sh"; sourceTree = "<group>"; };
5DF42A4920026B97D0F426A71EAE71F7 /* AHFMDataCenter-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMDataCenter-umbrella.h"; sourceTree = "<group>"; };
5E7E93BB601B9500CB097FAF5FCD0912 /* AHFMDownloadListServices.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHFMDownloadListServices.xcconfig; sourceTree = "<group>"; };
5FE9E7183C305510255FC01F634C7A6B /* AHFMDataTransformers-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMDataTransformers-prefix.pch"; sourceTree = "<group>"; };
66C048BCFFDBA8124FAAA63C8C0E7A2A /* AHServiceRouter.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = AHServiceRouter.framework; path = AHServiceRouter.framework; sourceTree = BUILT_PRODUCTS_DIR; };
670BFB690F4077CD2520F0538CF1399E /* AHFMDataCenter.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = AHFMDataCenter.modulemap; sourceTree = "<group>"; };
67F024B3BE490E9FD8E799AAD7C0FD7A /* AHFMServices.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMServices.swift; path = AHFMServices/Classes/AHFMServices.swift; sourceTree = "<group>"; };
6927280651DE150B9983C45FEEFFAABB /* AHFMShowPageServices.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHFMShowPageServices.xcconfig; sourceTree = "<group>"; };
6984A6DB84CD29DD7AE96E21440F0C0A /* AHServiceRouter.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = AHServiceRouter.modulemap; sourceTree = "<group>"; };
6A16ABF0CFF7FA96F5CF8893BAF54F23 /* AHFMDataCenter-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHFMDataCenter-dummy.m"; sourceTree = "<group>"; };
6AFAB5132C8685A5DD041ABCDC37FF71 /* KeychainAccess-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "KeychainAccess-prefix.pch"; sourceTree = "<group>"; };
6EA17CA4186AAAE34A19BEDFB452BE76 /* AFError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AFError.swift; path = Source/AFError.swift; sourceTree = "<group>"; };
7021851E30E19F2A527E080A1CA7C0B8 /* AHFMNetworking.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = AHFMNetworking.framework; path = AHFMNetworking.framework; sourceTree = BUILT_PRODUCTS_DIR; };
7070DC6DBAA046F5A1D8664D7F1E6F59 /* AHServiceRouter.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHServiceRouter.framework; sourceTree = BUILT_PRODUCTS_DIR; };
70AB67A1D0A7F5EEC36AE4A5FE847910 /* Notifications.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Notifications.swift; path = Source/Notifications.swift; sourceTree = "<group>"; };
7215FBA8FFCFAD0E9EA083943A36E279 /* KeychainAccess.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = KeychainAccess.framework; path = KeychainAccess.framework; sourceTree = BUILT_PRODUCTS_DIR; };
730F4AE00CEE5F3D285E8317DFBD9E3A /* AHFMEpisodeTransform.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMEpisodeTransform.swift; path = AHFMDataTransformers/Classes/AHFMEpisodeTransform.swift; sourceTree = "<group>"; };
7526B7EAE8E3F37B35ABF157E592960D /* ParameterEncoding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ParameterEncoding.swift; path = Source/ParameterEncoding.swift; sourceTree = "<group>"; };
761D4FDF85D67412D20B49692A8A9442 /* AHFMDownloadCenterServices-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHFMDownloadCenterServices-dummy.m"; sourceTree = "<group>"; };
7740A29892E2391697A24B2E14C76166 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
79F20DA61DB9ADE6628CCEF0B1443BA2 /* AHFMDownloadCenterManager.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = AHFMDownloadCenterManager.framework; path = AHFMDownloadCenterManager.framework; sourceTree = BUILT_PRODUCTS_DIR; };
7A553CC7F4DD685A20E6AB3701D4EAA5 /* AHDataModelQuery.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHDataModelQuery.swift; path = AHDataModel/Classes/AHDataModelQuery.swift; sourceTree = "<group>"; };
7AB4E2AFC8CBF980D6BE85060E5E7291 /* UIDeviceExtension.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UIDeviceExtension.xcconfig; sourceTree = "<group>"; };
7BABB864A938451FECF0481D92DAA17E /* AHFMBottomPlayerServices-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHFMBottomPlayerServices-dummy.m"; sourceTree = "<group>"; };
7D1BDD4314D27DFE1AC03C8EC3CFD574 /* SwiftyJSON.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = SwiftyJSON.modulemap; sourceTree = "<group>"; };
7D6231ADE2E96CCF9AC84299668A62F5 /* MultipartFormData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MultipartFormData.swift; path = Source/MultipartFormData.swift; sourceTree = "<group>"; };
7DC27D0EFBC765547926440322A79D91 /* AHDataModel.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHDataModel.xcconfig; sourceTree = "<group>"; };
7ED481C24C728E4CBC363E440ED44AE2 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
8087B76DE32AF25BA45F4EE9DB1132D5 /* AHFMShow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMShow.swift; path = AHFMDataCenter/Classes/AHFMShow.swift; sourceTree = "<group>"; };
809650F527D09D945A2F4CA3F329B118 /* AHDatabase.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHDatabase.swift; path = AHDataModel/Classes/AHDatabase.swift; sourceTree = "<group>"; };
826007FA442855EB3BEF1F71811C449D /* AHFMNetworking-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHFMNetworking-dummy.m"; sourceTree = "<group>"; };
82C7CBD19C4E785C9C3A914BBF263385 /* AHFMModuleManager.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = AHFMModuleManager.framework; path = AHFMModuleManager.framework; sourceTree = BUILT_PRODUCTS_DIR; };
8430BAAAED35BE4C433A7D4D5E77FC57 /* AHFMModuleManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMModuleManager.swift; path = AHFMModuleManager/Classes/AHFMModuleManager.swift; sourceTree = "<group>"; };
85424906A7F7D5E96A55D8F72BBAF9A2 /* Manger.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = Manger.swift; sourceTree = "<group>"; };
861949A9FD97DF404BBCABF1509DCAB1 /* AHDB.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHDB.swift; path = AHDataModel/Classes/AHDB.swift; sourceTree = "<group>"; };
86F4EFA8EDFE443D1544A6C79EA3EABE /* AHFMDownloadCenterServices.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = AHFMDownloadCenterServices.modulemap; sourceTree = "<group>"; };
8915E28AC3CB1486102EA6C0BCB3AB07 /* KeychainAccess.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = KeychainAccess.xcconfig; sourceTree = "<group>"; };
8A32D6B4FBE604DA6187F69AE2C933C6 /* AHFMServices-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMServices-umbrella.h"; sourceTree = "<group>"; };
8B1553A144CFEB6D03168EC39DB7EA64 /* SwiftyJSON.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SwiftyJSON.xcconfig; sourceTree = "<group>"; };
8BC74B50DEA8F572125AA4ABA730F01A /* AHFMDownloadCenterManager.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = AHFMDownloadCenterManager.modulemap; sourceTree = "<group>"; };
8C023DF41E367CA974FB6D6A74B77455 /* AHDataModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHDataModel.swift; path = AHDataModel/Classes/AHDataModel.swift; sourceTree = "<group>"; };
8EC39FF5B1C38D9F51F527365089AE4D /* AHFMDataTransformers.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHFMDataTransformers.framework; sourceTree = BUILT_PRODUCTS_DIR; };
909AF0612AE2EBB4C702F5992CCA9CE3 /* AHFMDownloadCenterManager-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHFMDownloadCenterManager-dummy.m"; sourceTree = "<group>"; };
90D8012AD5B3915A112F405F8FB402A5 /* AHFMBottomPlayerServices.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHFMBottomPlayerServices.xcconfig; sourceTree = "<group>"; };
91772A9C4054DCD19EC1A90EF20F27DF /* AHFMServices.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHFMServices.framework; sourceTree = BUILT_PRODUCTS_DIR; };
9186629D444885164E571986A049C538 /* AHDataModel.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHDataModel.framework; sourceTree = BUILT_PRODUCTS_DIR; };
93318B013046381887AE63A570AE6FB1 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; 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; };
93D8311D81FC15D5E0634A6442D3EDB1 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
93DE93D2B91F98AD30D1EC59B9B2245A /* AHFMDownloadCenterManager-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMDownloadCenterManager-umbrella.h"; sourceTree = "<group>"; };
9473B289328138CE860D0E4FA730B347 /* AHDownloadTool-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHDownloadTool-dummy.m"; sourceTree = "<group>"; };
9483DED0428691F078505DAF044560AD /* AHFMDownloadCenterServices.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMDownloadCenterServices.swift; path = AHFMDownloadCenterServices/Classes/AHFMDownloadCenterServices.swift; sourceTree = "<group>"; };
99896C2A3AE1FCBC5B6B575B3341D751 /* Pods-AHFMDownloadCenterManager_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = "Pods-AHFMDownloadCenterManager_Example.modulemap"; sourceTree = "<group>"; };
9A15366BDDF393AA17556FBFD1AFA92F /* Pods-AHFMDownloadCenterManager_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AHFMDownloadCenterManager_Tests.release.xcconfig"; sourceTree = "<group>"; };
9B69FDFA6DEF921D0FE36B4EB3A8D936 /* ServerTrustPolicy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerTrustPolicy.swift; path = Source/ServerTrustPolicy.swift; sourceTree = "<group>"; };
9C8FC136B43A409D2A7137C9B90A27CE /* Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Alamofire.swift; path = Source/Alamofire.swift; sourceTree = "<group>"; };
9C91B14B83CD8C7F90005439F10B6168 /* AHFMEpisode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMEpisode.swift; path = AHFMDataCenter/Classes/AHFMEpisode.swift; sourceTree = "<group>"; };
9CAA735F01D56390BB590AAEFB90769D /* AHDataModel-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHDataModel-dummy.m"; sourceTree = "<group>"; };
9DB58B11680017ACACF8CE0E987A3268 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
9EE47E87CADE5E9E9AD2CB735E0CFD4F /* AHFMDownloadListServices.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = AHFMDownloadListServices.framework; path = AHFMDownloadListServices.framework; sourceTree = BUILT_PRODUCTS_DIR; };
A02EF8C0A895100D0D05A56AED76CF14 /* AHFMAudioPlayerVCServices-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMAudioPlayerVCServices-umbrella.h"; sourceTree = "<group>"; };
A63A698BFECE1D1645B74EE5BD5CDA51 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
A6726AEA72FABF22A49EF9C2587B2C75 /* SwiftyJSON-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SwiftyJSON-prefix.pch"; sourceTree = "<group>"; };
A874D899AF0BAB5F5B28798315A525B4 /* AHFMModuleManager-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHFMModuleManager-dummy.m"; sourceTree = "<group>"; };
A877CC8EC5D474155C5445D559CB06A1 /* AHServiceRouter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHServiceRouter.swift; path = AHServiceRouter/Classes/AHServiceRouter.swift; sourceTree = "<group>"; };
A8C9815ED0E5DCD8C5240696CC3B96A1 /* Pods-AHFMDownloadCenterManager_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-AHFMDownloadCenterManager_Example-umbrella.h"; sourceTree = "<group>"; };
A9016B57F4CF17600BD4D5B188914896 /* Alamofire.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = Alamofire.modulemap; sourceTree = "<group>"; };
AA36A6EE6501310C6D2AC1B4C909A7E9 /* AHDownloadTool.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHDownloadTool.framework; sourceTree = BUILT_PRODUCTS_DIR; };
AAE503BC6D7797F84304EDC2FF98CD27 /* Pods-AHFMDownloadCenterManager_Tests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AHFMDownloadCenterManager_Tests-frameworks.sh"; sourceTree = "<group>"; };
AAF0ECD5C5F6E0B0E65AAA87FF489DC1 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
AB477F0D97A43976B67FA8DCE7990DE4 /* AHFMDownloadCenterManager.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHFMDownloadCenterManager.xcconfig; sourceTree = "<group>"; };
AC7BB1395C43AFE24ADCF0A0C339EE14 /* AHFMDataTransformers.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = AHFMDataTransformers.modulemap; sourceTree = "<group>"; };
AD12EB13B8A358ED90CF3F539F53773A /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
AD9964F1CBF0DFB94E948D6627F7D80D /* UIDeviceExtension.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = UIDeviceExtension.framework; sourceTree = BUILT_PRODUCTS_DIR; };
B07E21C2462B27983FCDC6B277A1FBB0 /* AHFMDataTransformers-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHFMDataTransformers-dummy.m"; sourceTree = "<group>"; };
B3E60A18C02EF52B9DBD02AEB62DD780 /* AHFMDataCenter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMDataCenter.swift; path = AHFMDataCenter/Classes/AHFMDataCenter.swift; sourceTree = "<group>"; };
B3F29C220CCE7571CA869361823030F8 /* AHFMServices.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHFMServices.xcconfig; sourceTree = "<group>"; };
B5443248AB1C3527FD9468604C60A4AE /* AHServiceRouter.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHServiceRouter.xcconfig; sourceTree = "<group>"; };
B69E9399066045A40E2A16B306627664 /* AHFMShowPageServices.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = AHFMShowPageServices.framework; path = AHFMShowPageServices.framework; sourceTree = BUILT_PRODUCTS_DIR; };
B8998A94E82764F2DCFBD09B67231125 /* SessionDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionDelegate.swift; path = Source/SessionDelegate.swift; sourceTree = "<group>"; };
B985E136070393C8D1596AC845C5A5A8 /* Alamofire.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Alamofire.framework; path = Alamofire.framework; sourceTree = BUILT_PRODUCTS_DIR; };
BB8A0FDDAB1010A83D7EF65F4B402E76 /* Request.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Request.swift; path = Source/Request.swift; sourceTree = "<group>"; };
C032DFF644CFFDD685190EBDA0C053D7 /* 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; };
C0966579E912EEC6F25A30A460A1DF38 /* AHFMDownloadCenterManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = AHFMDownloadCenterManager.swift; sourceTree = "<group>"; };
C0BE94700B5AEDBEEF709E18EC734607 /* AHFMBottomPlayerServices.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = AHFMBottomPlayerServices.modulemap; sourceTree = "<group>"; };
C1AB3C8D54970A381318C69585604B5B /* Pods-AHFMDownloadCenterManager_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AHFMDownloadCenterManager_Example-frameworks.sh"; sourceTree = "<group>"; };
C1EC94EC843BE7262267A85ECDCEB7EC /* UIDeviceExtension.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = UIDeviceExtension.modulemap; sourceTree = "<group>"; };
C25DC7223C4987A76E13CAE34A74577B /* AHFMDataCenter-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMDataCenter-prefix.pch"; sourceTree = "<group>"; };
C27F711AD2FF7459E2C7C63187850C94 /* AHFMBottomPlayerServices.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = AHFMBottomPlayerServices.framework; path = AHFMBottomPlayerServices.framework; sourceTree = BUILT_PRODUCTS_DIR; };
C32CA2CA2D3AA730C6D089395ED8A036 /* Alamofire.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Alamofire.xcconfig; sourceTree = "<group>"; };
C6CFFCA6E60A263C47D62A536F5FEEAB /* AHFMNetworking-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMNetworking-umbrella.h"; sourceTree = "<group>"; };
C8D76C291759714EFA760EE3DCE18584 /* AHFMDownloadCenterServices.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHFMDownloadCenterServices.xcconfig; sourceTree = "<group>"; };
CB2CDB7AEEB4D31C7C9DA312677C5A23 /* AHFMNetworking.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHFMNetworking.xcconfig; sourceTree = "<group>"; };
CB54133445BB8C050B90558CD2DCAFBD /* AHKeychain.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHKeychain.swift; path = AHFMNetworking/Classes/AHKeychain.swift; sourceTree = "<group>"; };
CEB097CCAE226C596CC3A6C698537111 /* AHServiceRouter-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHServiceRouter-prefix.pch"; sourceTree = "<group>"; };
CF2C71C93D2B6D3A5E65251D69750A5A /* Pods-AHFMDownloadCenterManager_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AHFMDownloadCenterManager_Example.debug.xcconfig"; sourceTree = "<group>"; };
CFAA66A3F4D104341FB9F92AE9E301FA /* AHFMAudioPlayerVCServices.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHFMAudioPlayerVCServices.xcconfig; sourceTree = "<group>"; };
D0F0D1A375463D16ED206E1794F66129 /* NetworkReachabilityManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NetworkReachabilityManager.swift; path = Source/NetworkReachabilityManager.swift; sourceTree = "<group>"; };
D0FAB4C09C9FFC1DF55DA4971425D795 /* Timeline.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Timeline.swift; path = Source/Timeline.swift; sourceTree = "<group>"; };
D266902733C43C76575D79146E7D1746 /* TaskDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TaskDelegate.swift; path = Source/TaskDelegate.swift; sourceTree = "<group>"; };
D3F30477FBAD9B8D886CBB9E07FF195C /* AHFMModuleManager-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMModuleManager-prefix.pch"; sourceTree = "<group>"; };
D5D52642ECCB9BAD2E6D44A7739D3B4D /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
D63FA2900FE36EF538071F949133C7C1 /* AHFMAudioPlayerVCServices.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = AHFMAudioPlayerVCServices.framework; path = AHFMAudioPlayerVCServices.framework; sourceTree = BUILT_PRODUCTS_DIR; };
D748F6DADFFC8522161F19F66C884631 /* SwiftyJSON.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftyJSON.swift; path = Source/SwiftyJSON.swift; sourceTree = "<group>"; };
D7900E04C975100F07984C3BCD65C500 /* Pods-AHFMDownloadCenterManager_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AHFMDownloadCenterManager_Example-acknowledgements.plist"; sourceTree = "<group>"; };
D8763183AF637CA23C9B3EBF8864C288 /* AHFMShowTransform.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMShowTransform.swift; path = AHFMDataTransformers/Classes/AHFMShowTransform.swift; sourceTree = "<group>"; };
D93D6875BF9EF1BC5E1987B9BB0C8701 /* AHFMBottomPlayerServices.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMBottomPlayerServices.swift; path = AHFMBottomPlayerServices/Classes/AHFMBottomPlayerServices.swift; sourceTree = "<group>"; };
D98A6CACF114D06E8544466CEB4684CD /* AHFMAudioPlayerVCServices-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHFMAudioPlayerVCServices-dummy.m"; sourceTree = "<group>"; };
D9C19BC9822F4F9F435C9A28B0D04C77 /* AHFileSizeProbe.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFileSizeProbe.swift; path = AHDownloadTool/Classes/AHFileSizeProbe.swift; sourceTree = "<group>"; };
DC213E598A3076B07B27CED8A7932673 /* AHDBColumnInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHDBColumnInfo.swift; path = AHDataModel/Classes/AHDBColumnInfo.swift; sourceTree = "<group>"; };
DC2479037EC04EDB1968913D1981A90D /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
DC7698092F64BFF8BE6399141549B410 /* AHFMDataCenter.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHFMDataCenter.xcconfig; sourceTree = "<group>"; };
DC81A8FC7826242C1FFE964DBCB6D4B6 /* AHFMModuleManager.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHFMModuleManager.framework; sourceTree = BUILT_PRODUCTS_DIR; };
DCB226E2A4FDB72E24E545BA936A0936 /* AHFMDownloadCenterManager-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMDownloadCenterManager-prefix.pch"; sourceTree = "<group>"; };
DCEEE04DF4637D8C2864A26F88ADD8DC /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
DCF01ADA4E4D3CBF14C7B22D16D254A8 /* AHFMBottomPlayerServices-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMBottomPlayerServices-prefix.pch"; sourceTree = "<group>"; };
DEF188920EAA2BF19ABB073F74F369B8 /* AHFMDownloadCenterServices.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = AHFMDownloadCenterServices.framework; path = AHFMDownloadCenterServices.framework; sourceTree = BUILT_PRODUCTS_DIR; };
DF5EEC81625ADA7360F6B41D6DAC4968 /* Pods-AHFMDownloadCenterManager_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AHFMDownloadCenterManager_Tests.debug.xcconfig"; sourceTree = "<group>"; };
E195EDDC80D48252765E8A2E1E5DFB89 /* AHNetworkConstants.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHNetworkConstants.swift; path = AHFMNetworking/Classes/AHNetworkConstants.swift; sourceTree = "<group>"; };
E4210121F18C61402E2449A63161BD49 /* UIDevice+Extension.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIDevice+Extension.swift"; path = "UIDeviceExtension/Classes/UIDevice+Extension.swift"; sourceTree = "<group>"; };
E6ACC6A9E323D43940806AAA945F86C2 /* AHFMAudioPlayerVCServices.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHFMAudioPlayerVCServices.framework; sourceTree = BUILT_PRODUCTS_DIR; };
EBE5623F33CEB3F455F2DAC4F2265ED4 /* AHFMServices-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMServices-prefix.pch"; sourceTree = "<group>"; };
EF61489D49F1FF40206C04DDBD5D78A8 /* KeychainAccess-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "KeychainAccess-umbrella.h"; sourceTree = "<group>"; };
F04CA73A2B779C4D1C4E06A82174A3AB /* ResponseSerialization.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ResponseSerialization.swift; path = Source/ResponseSerialization.swift; sourceTree = "<group>"; };
F0ACD7A10F0D22C599458BE916F0F1EA /* AHFMModuleManager.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = AHFMModuleManager.modulemap; sourceTree = "<group>"; };
F1A3B375569042A65382BDE4D99E1498 /* Pods-AHFMDownloadCenterManager_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-AHFMDownloadCenterManager_Tests-dummy.m"; sourceTree = "<group>"; };
F1F32AC276CA56171805977B8A38B360 /* UIDeviceExtension-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIDeviceExtension-dummy.m"; sourceTree = "<group>"; };
F37015059A56E8F9432AE4AFB3879BFD /* AHDataModel.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = AHDataModel.framework; path = AHDataModel.framework; sourceTree = BUILT_PRODUCTS_DIR; };
F3A9C51E14271978F63DA4E1AF843CBD /* AHServiceRouter-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHServiceRouter-dummy.m"; sourceTree = "<group>"; };
F3F7B8BC8EB485B9CBDE9EF082590746 /* AHFMDataTransformers-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMDataTransformers-umbrella.h"; sourceTree = "<group>"; };
F51CE36B3779475FDAB757A4CD34AD49 /* AHFMModuleManager-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMModuleManager-umbrella.h"; sourceTree = "<group>"; };
F6F93908DEBEFF2C19A3F7BC577C32AB /* AHFMShowPageServices-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHFMShowPageServices-dummy.m"; sourceTree = "<group>"; };
F7AE857A1043311CD7FBA9F380A2170F /* AHDataTask.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHDataTask.swift; path = AHDownloadTool/Classes/AHDataTask.swift; sourceTree = "<group>"; };
F854F414E32DB3F9AFDFE83BBD045D69 /* Alamofire-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Alamofire-umbrella.h"; sourceTree = "<group>"; };
FD15CACE11484A374ACDDC931A5351EF /* AHDownloadTool.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = AHDownloadTool.modulemap; sourceTree = "<group>"; };
FD74E470361B9F417FB9FFE0DAAF77E6 /* KeychainAccess-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "KeychainAccess-dummy.m"; sourceTree = "<group>"; };
FE46B6FE3BFDE4863713BD79697FE932 /* AHFMDownloadCenterServices-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMDownloadCenterServices-prefix.pch"; sourceTree = "<group>"; };
FFBA7C7EA888E12E38D49D2A0AB69C34 /* AHFMDownloadListServices.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHFMDownloadListServices.framework; sourceTree = BUILT_PRODUCTS_DIR; };
FFD43D64ADB1177F5B7FA435C4220BF1 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
10D942BCA420589087A16144B2124E95 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
E48A0477E0D9A1A5155398F6650E7021 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
29C3060512F31758EF5B1EBB1E4E6324 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
3A872EB205BD12B5A103A2B7AB739177 /* AHFMServices.framework in Frameworks */,
AB9E7A741F6418AE6471CD89B0F11760 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
2B82E5459BC4F5A2CABB1371CC617F39 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
7ED6E1B8A5A9E7CB4E020A642454734D /* AHFMServices.framework in Frameworks */,
0EBF217AED2E7F9C2E52B51B2B466D2A /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
2D6402EBC636DFE1BF37BAE096D78284 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
84C06CA728812A945DC86D715B14A0C2 /* AHFMServices.framework in Frameworks */,
6840600D0401722D71E60D6E10A6149C /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
3E6B08CB05FAA9EA24ECAC2D7AD08916 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
2EA3E61620765BDE78B7084F5B8ED2F1 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
603E98C7EBE25C3D0D4371FCEA0B3933 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
7DBFE00052B73FAB8297446F1914489B /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
7831AE4F36EAAAE56996BDC39B3AB1A4 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
1898367D07E60F8F3ABED4F3A27FD91B /* AHDataModel.framework in Frameworks */,
2487B0600FFD38E76E4E5D454B9D7615 /* AHDownloadTool.framework in Frameworks */,
7A1DED74661BA174DFF74591639A636E /* AHFMAudioPlayerVCServices.framework in Frameworks */,
61C913F9323C718596BD218B51EB408C /* AHFMBottomPlayerServices.framework in Frameworks */,
102B595D80CE582F24BD35FBCBB1CF0C /* AHFMDataCenter.framework in Frameworks */,
11F5707644C3089487A07031C3EF7A38 /* AHFMDataTransformers.framework in Frameworks */,
E48A3E1BD2A4AEEA927429A2E9298260 /* AHFMDownloadCenterServices.framework in Frameworks */,
78F64296BF942C1EEBAA9D7C3E609661 /* AHFMDownloadListServices.framework in Frameworks */,
01E76CFA1430D7705D4A94B72BF922A9 /* AHFMModuleManager.framework in Frameworks */,
BD845512A9C5CA23EB8D5A6140C669AA /* AHFMNetworking.framework in Frameworks */,
487CF8DD86B5E05B5EB6A795D3DBA76C /* AHFMServices.framework in Frameworks */,
35CBE304490484AD75278065A1FD2C5C /* AHFMShowPageServices.framework in Frameworks */,
0826946EA3B3FE92626706D2437476BE /* AHServiceRouter.framework in Frameworks */,
9AB681EAEC23F4CB82D5AAFC97F6798E /* Alamofire.framework in Frameworks */,
C55AA6C67E99C1FAFC3BAC71027B0F0A /* Foundation.framework in Frameworks */,
B34FDF0E26DBB1D129F43C3645C84D0C /* KeychainAccess.framework in Frameworks */,
ED8592911D8769A730CC10F323CD91EE /* SwiftyJSON.framework in Frameworks */,
3D22A033EA3FA7F195158305EC80F458 /* UIDeviceExtension.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
792401447C31DDC9906DE5704CE3C119 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
A7308A6945BC38CD642571F8233C949A /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
802FA6EB2ABAC90A0726E0C3C4A75634 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
3792CC18617E09CEFE3E7D18CBAC1DA2 /* Alamofire.framework in Frameworks */,
76C567AF3FE11BA5DAECB3A9ECE3838B /* Foundation.framework in Frameworks */,
025641D58A2FB15A5E5BD7FA6DA10EDD /* KeychainAccess.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
846F8F4C1A7E9E4414A07087BA7A5632 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
57284DA2EB5AA768BFA3ACF88C03B2B1 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
90CDFDF10BDD9B62DE5189AF93A158D9 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
F7ECA1D56564BD0368FA957BCB9ED6A7 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
A1ED3E73DAB3AE14378DD6CF1A76AE8C /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
BAAC4293A822346B1F27573BF927E1BE /* Foundation.framework in Frameworks */,
8A43301A1FD1C5B83B57B60A76DA9886 /* SwiftyJSON.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
B53FE808443A56A138E46EBF1D9B8989 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
7D26178531BC6F5F5D0473F74ACB4533 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
B6767283118BDF58C5384DEA17BBDF83 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
8E357A8575E7F57FAD16D1A2E6C07DC7 /* 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;
};
CFA5A9256E4DFCF9736CC6EA0B3250A1 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
292755C38CB72967EE0E99F1B1C14CCA /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
D69EF10DF2B5209B8DF044E313CC3D10 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
F57D5B6D2DD00C8401ED8F5D8CE8CD97 /* AHFMServices.framework in Frameworks */,
F1F33F989830B6CAE2E8C31B4C59ECC3 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
F13BA6B597F22262DFE5D52806111D30 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
28C3C2D2520CF2A05CE235F72F5A5185 /* Foundation.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 */
016EE8A56B3B6BA8E91370EF20027D9D /* Development Pods */ = {
isa = PBXGroup;
children = (
244B5714407AEE0BC82C8BE9E1046C59 /* AHFMDownloadCenterManager */,
);
name = "Development Pods";
sourceTree = "<group>";
};
1A875E03C4534C528BC0AA6F490B9E51 /* Support Files */ = {
isa = PBXGroup;
children = (
51E65F76BD354809495B470CDBB6BFA4 /* AHFMDownloadListServices.modulemap */,
5E7E93BB601B9500CB097FAF5FCD0912 /* AHFMDownloadListServices.xcconfig */,
405288CF1BD098E3D0BB527774389ACE /* AHFMDownloadListServices-dummy.m */,
0F9B6D2A5E7CBCEEA63261EC72A10D87 /* AHFMDownloadListServices-prefix.pch */,
27E5E8DE8D40B03D0E3A6044F51D2E66 /* AHFMDownloadListServices-umbrella.h */,
D5D52642ECCB9BAD2E6D44A7739D3B4D /* Info.plist */,
);
name = "Support Files";
path = "../Target Support Files/AHFMDownloadListServices";
sourceTree = "<group>";
};
1C20FC1847F71B0E9B592D8748EDC7A2 /* Support Files */ = {
isa = PBXGroup;
children = (
A63A698BFECE1D1645B74EE5BD5CDA51 /* Info.plist */,
4DDB9CA4BF4FE3A1F3BB4CF0A8040C56 /* KeychainAccess.modulemap */,
8915E28AC3CB1486102EA6C0BCB3AB07 /* KeychainAccess.xcconfig */,
FD74E470361B9F417FB9FFE0DAAF77E6 /* KeychainAccess-dummy.m */,
6AFAB5132C8685A5DD041ABCDC37FF71 /* KeychainAccess-prefix.pch */,
EF61489D49F1FF40206C04DDBD5D78A8 /* KeychainAccess-umbrella.h */,
);
name = "Support Files";
path = "../Target Support Files/KeychainAccess";
sourceTree = "<group>";
};
1C444687166B60AB90A527C6C41DCDF7 /* AHServiceRouter */ = {
isa = PBXGroup;
children = (
A877CC8EC5D474155C5445D559CB06A1 /* AHServiceRouter.swift */,
827943334DA5F5393D506CA93BB615AB /* Support Files */,
);
name = AHServiceRouter;
path = AHServiceRouter;
sourceTree = "<group>";
};
212341B2721506CA21ED5922DEDF153B /* AHFMDataTransformers */ = {
isa = PBXGroup;
children = (
730F4AE00CEE5F3D285E8317DFBD9E3A /* AHFMEpisodeTransform.swift */,
D8763183AF637CA23C9B3EBF8864C288 /* AHFMShowTransform.swift */,
535F59B26898812AE6ED5CCA38310033 /* Support Files */,
);
name = AHFMDataTransformers;
path = AHFMDataTransformers;
sourceTree = "<group>";
};
23E4AF047169B6E5102DBCD61C50D982 /* AHFMNetworking */ = {
isa = PBXGroup;
children = (
1FC553EB047C01BE1ADDC6831FBE91C3 /* AHFMNetworking.swift */,
CB54133445BB8C050B90558CD2DCAFBD /* AHKeychain.swift */,
E195EDDC80D48252765E8A2E1E5DFB89 /* AHNetworkConstants.swift */,
0630CF3A5DCE959A349AAC8495AA84B7 /* OAuth2Handler.swift */,
3563D3EBD206B5747BE92EF16309CCBB /* Support Files */,
);
name = AHFMNetworking;
path = AHFMNetworking;
sourceTree = "<group>";
};
244B5714407AEE0BC82C8BE9E1046C59 /* AHFMDownloadCenterManager */ = {
isa = PBXGroup;
children = (
E4CB5B4D38CA116CAE824CC6E4A6D5D8 /* AHFMDownloadCenterManager */,
E0E6367871F41DD0D1EBFEB16BF2B0F5 /* Support Files */,
);
name = AHFMDownloadCenterManager;
path = ../..;
sourceTree = "<group>";
};
29AF13E62E45A02C485CC412B7F6024B /* AHFMShowPageServices */ = {
isa = PBXGroup;
children = (
55EAF3BF13377DD3DACFABB097B23D56 /* AHFMShowPageServices.swift */,
AD9F01FEFDE02923988A59093B880390 /* Support Files */,
);
name = AHFMShowPageServices;
path = AHFMShowPageServices;
sourceTree = "<group>";
};
2E321D5A3C2CA9E58BC6E37AC9A69CFE /* Support Files */ = {
isa = PBXGroup;
children = (
1DA472E3633C5DCCEA01BDAFD68AA2D9 /* AHDataModel.modulemap */,
7DC27D0EFBC765547926440322A79D91 /* AHDataModel.xcconfig */,
9CAA735F01D56390BB590AAEFB90769D /* AHDataModel-dummy.m */,
4EFD9204C10551DD3C1EC2E706BA0C8F /* AHDataModel-prefix.pch */,
2FB33D4D8AFD8A7D0B2481E43A8CB45E /* AHDataModel-umbrella.h */,
DCEEE04DF4637D8C2864A26F88ADD8DC /* Info.plist */,
);
name = "Support Files";
path = "../Target Support Files/AHDataModel";
sourceTree = "<group>";
};
312EF07DB7D7BB3CF665B9CF7441BC65 /* AHFMModuleManager */ = {
isa = PBXGroup;
children = (
8430BAAAED35BE4C433A7D4D5E77FC57 /* AHFMModuleManager.swift */,
65F2B655C3893858DFF4C7D9872847F2 /* Support Files */,
);
name = AHFMModuleManager;
path = AHFMModuleManager;
sourceTree = "<group>";
};
34177F94F8A994F1E3ADEBA23403C1D7 /* Support Files */ = {
isa = PBXGroup;
children = (