-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.pbxproj
More file actions
3872 lines (3860 loc) · 212 KB
/
project.pbxproj
File metadata and controls
3872 lines (3860 loc) · 212 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 */
04900C1E6B42E923F2C5008C0E926579 /* AHFMShowPageServices-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2871EE8FBD0D0E8B8893FC1F17E2CAE8 /* AHFMShowPageServices-dummy.m */; };
07A5E60837E229D8A40A04C4CDD71CB3 /* AHFMSubscribedShow.swift in Sources */ = {isa = PBXBuildFile; fileRef = BC99DA43DCB33B9DFCC6394230D4847F /* AHFMSubscribedShow.swift */; };
0878AE4792DD4B4A8C17BBA1E9CADAA5 /* Alamofire-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 8925BC652ADEF6736AAC6B0849D3A0D6 /* Alamofire-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
089376426529595C084BD18FF691EF9C /* AHDataModel-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 844493FA7D6D4F3462508931BCFC452A /* AHDataModel-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
091CD2CD4160503446DD4F68D0DA0A46 /* AHFMEpisodeInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 552D0C3961C1B1F1AC3165ADB52994E4 /* AHFMEpisodeInfo.swift */; };
0A53D7B5A76FBFC0FBAB456FD871AD1A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 33D758135BA2BA380EC8078F76306C6F /* Foundation.framework */; };
0DE24BBA949385A1908C8866640A3E0A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 33D758135BA2BA380EC8078F76306C6F /* Foundation.framework */; };
0E13EAD574F186202DD5739DE67BD42A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 33D758135BA2BA380EC8078F76306C6F /* Foundation.framework */; };
0EED70F280D5F912A72C4624F2B1D202 /* AHFMKeywordVCServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CE64DF390F182D37A6FF68533EDC5849 /* AHFMKeywordVCServices.framework */; };
12D00F1C30332527264B102EB5A467F7 /* AHFMShowPageServices.swift in Sources */ = {isa = PBXBuildFile; fileRef = 13590260F1F3B3E1009B0CEB57F38387 /* AHFMShowPageServices.swift */; };
16116E4B3A335F1CF1E876D629469FBF /* Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7F2020B78FBAEC404AECE0B4FD61F087 /* Alamofire.swift */; };
179C22E8D54CDDF45D4CE6C2E4F56D16 /* DispatchQueue+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5537B4097532966E095B1D7044ECD2BB /* DispatchQueue+Alamofire.swift */; };
1A5BAECED34F41689025CEED59CD501B /* AHFMDataCenter.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0D9DC1C22E1F4513BCDBE43D16B7F6B2 /* AHFMDataCenter.framework */; };
1BB280448842AFDA16D9F181962B07D2 /* Timeline.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5728223904D15260E52FD445BF546B41 /* Timeline.swift */; };
1CBC26B18166D6F5C0BC844751B2369E /* Pods-AHFMKeywordVCManager_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C4B5875EB4EC0387C8E6FBC01552705 /* Pods-AHFMKeywordVCManager_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
1DB5166BCD6C101E0F22DBC86D6DFA3B /* AHFMDataTransformers.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 123DF8BEE66877CA444AD1D20C205A30 /* AHFMDataTransformers.framework */; };
20BD6D1587B4249B949754E60580AE74 /* AHFMDataCenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6485D5E3DA395FDF220FC27C1B17F5B5 /* AHFMDataCenter.swift */; };
239938FE4B0015CCE327AFD65D79CA43 /* AHServiceRouter.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A11687BF33F9171B8553546F9337B56C /* AHServiceRouter.framework */; };
24A7844BF9BCD08973053C68059A40D9 /* Pods-AHFMKeywordVCManager_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A5B3C93593CD2CAE92F2D5E34BA2666 /* Pods-AHFMKeywordVCManager_Tests-dummy.m */; };
2654EBF76703DBE9E9FB414962BA45FE /* AHDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = 52968DF0F7F1AC729EA2118675B13428 /* AHDatabase.swift */; };
2C25CEC63FAA52F8CCD83F44AD20EBA6 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 33D758135BA2BA380EC8078F76306C6F /* Foundation.framework */; };
2F9A0013CA2432AF4536E95723B8B019 /* UIDeviceExtension-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C155199D097712194E76A2630260CEBA /* UIDeviceExtension-dummy.m */; };
2F9F1C45FB922FE86B381AEF6038CF3F /* AHDataModelQuery.swift in Sources */ = {isa = PBXBuildFile; fileRef = 82CF061F9BA87FFBF384610BF6494001 /* AHDataModelQuery.swift */; };
32A16F3BB3E05501846FCEE1D6FF9E0A /* AHFMShowTransform.swift in Sources */ = {isa = PBXBuildFile; fileRef = E58A25F9B2928CFFA5C8E3AB5A12F9E9 /* AHFMShowTransform.swift */; };
337CEA8E36AA4A6B6DD875519B55170A /* AHFMKeywordVCServices.swift in Sources */ = {isa = PBXBuildFile; fileRef = 86294F95EE1D418E6B7D34C9C622190E /* AHFMKeywordVCServices.swift */; };
36983FD65BA2F41AB4DADD35E3D1150E /* AHFMShow.swift in Sources */ = {isa = PBXBuildFile; fileRef = D3E4C23791404E525E1F2AF408803267 /* AHFMShow.swift */; };
3851382979F35940D89427EFCE8383ED /* ServerTrustPolicy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 664590D2A621BD581B9919CF7FAAFA86 /* ServerTrustPolicy.swift */; };
3A872EB205BD12B5A103A2B7AB739177 /* AHFMServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 12B6CCF6803C92981C47516D014BD3E0 /* AHFMServices.framework */; };
3CA8657F3528EA38DDA95ED6F7562318 /* AFError.swift in Sources */ = {isa = PBXBuildFile; fileRef = D079B5926AD3CED00ACC3FDC983A10B7 /* AFError.swift */; };
3DC090B6C3C2240140ED92E593C234F6 /* AHFMBottomPlayerServices.swift in Sources */ = {isa = PBXBuildFile; fileRef = D48F5D0CA4BC2BC234DE8690CD540673 /* AHFMBottomPlayerServices.swift */; };
3E9D34F5555ADE75B2F1181287854FF2 /* AHFMAudioPlayerVCServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A24458B63072E3EDCBD42875FE64B439 /* AHFMAudioPlayerVCServices.framework */; };
407508ADBCC570F54CBF61043D5C5888 /* KeychainAccess-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C1BF8536187D7D62B6569ED7F802961 /* KeychainAccess-dummy.m */; };
4464E4E5AE7158438D4CACA4F7267444 /* Request.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8EBD4EF68CEE1E1BC10DDAB69676EAA0 /* Request.swift */; };
45AEA155190F769C06C60040C472A89E /* AHDataModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = AAE1A669701EF139C5484F52A50303A9 /* AHDataModel.swift */; };
47A8DD56F55B78AE6AA8FA81BA42BBDE /* NetworkReachabilityManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC02140EE939044EC7A3D8B8FAB602B9 /* NetworkReachabilityManager.swift */; };
4BD5EB7257634C0D6BB8B2D7CCB9CCB7 /* AHFMBottomPlayerServices-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C5C5ED8592DA13FA2E714FEEEE038D2 /* AHFMBottomPlayerServices-dummy.m */; };
4D8F0CFCBDC6417565C2E7D3A050140B /* Alamofire-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 30F53476C41181FE53EC4EFFF94E3ED1 /* Alamofire-dummy.m */; };
4DA62760881347DD1A319D511E852FBF /* AHDataModel.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 22D620D6768A277CD6DECE280600F1F7 /* AHDataModel.framework */; };
4EEE6F31829B94C057E75C4EAFF2EA70 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 33D758135BA2BA380EC8078F76306C6F /* Foundation.framework */; };
4F9D997B938F7DB17F4234EE32B0CD63 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 33D758135BA2BA380EC8078F76306C6F /* Foundation.framework */; };
541530769F0675FE46067BA5DCAD0805 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 33D758135BA2BA380EC8078F76306C6F /* Foundation.framework */; };
57E864F6AF647BE2B17DA72AD1C2ADB6 /* Notifications.swift in Sources */ = {isa = PBXBuildFile; fileRef = E2393A54A3EDE645F13E5C3B66B475E6 /* Notifications.swift */; };
5CCD2103BD3D8AB672654DBA2E7053F3 /* AHFMServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 12B6CCF6803C92981C47516D014BD3E0 /* AHFMServices.framework */; };
5EA1D56E6683CB05DACEAE08C0BB7A2B /* AHKeychain.swift in Sources */ = {isa = PBXBuildFile; fileRef = EAC0C6D8F3A66848E4354B84D4AA8A68 /* AHKeychain.swift */; };
60DAD4DB69C3296A8D31800BE05F04D1 /* AHFMServices-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = FE781B8E56F099B6DAA10DD4D655428C /* AHFMServices-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
65C8DF475969E8980364A66828D6B6C0 /* AHServiceRouter-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = B590A085DB10D9D1606F43298922FB80 /* AHServiceRouter-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
6A33D71DC2AE61DF8093A7DC7F2CED43 /* AHFMModuleManager-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CA8A92CB6AFA9A259B240B2CE509A48B /* AHFMModuleManager-dummy.m */; };
6A8C075C3C7853EAAEE6AEF007D54041 /* AHFMAudioPlayerVCServices-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EC6F399FED5C5EEF718427E35E44048D /* AHFMAudioPlayerVCServices-dummy.m */; };
6FB43B1FC8C56571C74BD3B293C55782 /* AHFMModuleManager.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F812E866CA171FF8FE805B68E9FC4188 /* AHFMModuleManager.framework */; };
720357B04AAC417EDE86444BC0CFB2AF /* MultipartFormData.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA50E8C2FF54C144CCA741E96B3CD8B1 /* MultipartFormData.swift */; };
744FD7B43BF5D0F0AA3FB1DF718D64D8 /* Pods-AHFMKeywordVCManager_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1180D1D968A2C6BC71CA6172AA0A7624 /* Pods-AHFMKeywordVCManager_Example-dummy.m */; };
7476818E4CBE153EA05B00FA5B1EC211 /* AHFMDataCenter-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = CE19F3CAD6FD13E9A6291A9ACF7090A6 /* AHFMDataCenter-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
74D6537AFD19BD8EF005AE156BCE9462 /* SessionDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 91DED281518B47357C6AB1CB0F349925 /* SessionDelegate.swift */; };
7A29E4F7B724936F9EFDA118F4F1EBFC /* SwiftyJSON.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D8729A98B88E7121F03AA5C5FACE3DD9 /* SwiftyJSON.framework */; };
7A9DA3E69749D9F748867A053549FA95 /* AHFMShowPageServices-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 3099CD976FD51CCD230DAD5C14F8B7DC /* AHFMShowPageServices-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
7D60943F3B112A4ACDCA31B720BE6E5A /* AHFMKeywordVCServices-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DAE67B4DA3E7353D13D885EE31163B4E /* AHFMKeywordVCServices-dummy.m */; };
7F405C9EE6B951E5B24DBA81581B3516 /* KeychainAccess-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BAC44E50AA9963249391E2A10E87E7A /* KeychainAccess-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
82223E634611AA235CFCE61B3784F4AE /* AHFMDataCenter-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DFF1FA43001D92E9F3CAEF40B7A43CE1 /* AHFMDataCenter-dummy.m */; };
8346ECA89406A3BCB4BFFE7854073453 /* AHServiceRouter-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 528D31E29ACB87D4FB1679839BDAAD6B /* AHServiceRouter-dummy.m */; };
8426D017CAFF19347FAF72F6A0903A0F /* AHFMBottomPlayerServices-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = BFF1D46DEAC35FC50425EF9FE00EE5A2 /* AHFMBottomPlayerServices-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
8443BACFB5F44E6E22F632A25854CB1D /* Pods-AHFMKeywordVCManager_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = DBA2624801DBF081DCADBC1B6E43938C /* Pods-AHFMKeywordVCManager_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
8A43301A1FD1C5B83B57B60A76DA9886 /* SwiftyJSON.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D8729A98B88E7121F03AA5C5FACE3DD9 /* SwiftyJSON.framework */; };
8A51DC198FA9C1F2C09DF4B19FDAF793 /* AHFMBottomPlayerServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 037A804A3B2EAB07A9D067DF6983443C /* AHFMBottomPlayerServices.framework */; };
8AA91348796BB731C52D035662CB4FD0 /* KeychainAccess.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A79D2A678BF6FD150F3CDDF543A77B1D /* KeychainAccess.framework */; };
8CCD217CD6A3BD50C32A50CF8D7BD5C3 /* UIDeviceExtension.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 57D0531C024FFDB9AA590A5DCF5C0067 /* UIDeviceExtension.framework */; };
8E357A8575E7F57FAD16D1A2E6C07DC7 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 33D758135BA2BA380EC8078F76306C6F /* Foundation.framework */; };
907E1C9DAEAD1C109EEAC41FDE61F210 /* AHFMKeywordVCManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = FCE462DCF80C7CE98B714D7F71D24C45 /* AHFMKeywordVCManager.swift */; };
936A7648750D2F9C3736665B182A73DF /* Response.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2CAA1E99743759B639385DAD21ED4432 /* Response.swift */; };
95CE55CB17944E5498A1ACCDC250DC08 /* AHFMEpisodeTransform.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2BB2DE0C844BAE52CD71593B38552483 /* AHFMEpisodeTransform.swift */; };
97931DCA9F77144512972F7B6E876FA5 /* AHFMNetworking-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = E202163389254EE4140EA0A5232E8DF3 /* AHFMNetworking-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
979D3473671E0DA9FEEF4D7F83499404 /* AHFMNetworking.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BECD9E846CEACB2F0E88B78B96F9EE3B /* AHFMNetworking.framework */; };
9948B99E63C147C89AF568E060D5E1AB /* AHDB.swift in Sources */ = {isa = PBXBuildFile; fileRef = 36C46FB92A0391494790748538333A46 /* AHDB.swift */; };
9991BC85C1336A2D1FFABF6F97A881A3 /* ParameterEncoding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 469DA731CB9DDE79A3232A0EBE8E0F78 /* ParameterEncoding.swift */; };
9AD5BD4EC7B12368E5503A842C806C56 /* Keychain.swift in Sources */ = {isa = PBXBuildFile; fileRef = DEAF3F18440CB7EEBB399317BA62F29D /* Keychain.swift */; };
9CC896BC6C4AC22CC0A70FEF8992F90C /* TaskDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2473344439944466150E10C2566619FE /* TaskDelegate.swift */; };
9E9F0493E365100871FB69C12E7CEECB /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 33D758135BA2BA380EC8078F76306C6F /* Foundation.framework */; };
A25F261326AD8E4B9626A3807400372B /* ResponseSerialization.swift in Sources */ = {isa = PBXBuildFile; fileRef = BCE61F9722D4311EBB5C4F91E25A0B38 /* ResponseSerialization.swift */; };
A30E5C5F8D414BF1C8F5A97E5DE83199 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 33D758135BA2BA380EC8078F76306C6F /* Foundation.framework */; };
A5068F3D2B2FFAA5F22177BC7026F21B /* UIDeviceExtension-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 004F4E20E5DAE590B7230F1258644EBE /* UIDeviceExtension-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
A586A6A878CB413F5672A939CECA7BFB /* AHFMDataTransformers-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 81F0D18AEEDF624F60B51DEE2FF28B47 /* AHFMDataTransformers-dummy.m */; };
A73630160858F94277F9970DB15EA2A8 /* AHFMAudioPlayerVCServices-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = E1187B4FBCDA25259D098715E007FB7E /* AHFMAudioPlayerVCServices-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
AA31159F147F5B0541DEBD0BD7C17ACB /* AHFMModuleManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 97C2E3A42C3BEF6C8602C807889B7CF2 /* AHFMModuleManager.swift */; };
AB2E638C38C54111C700A6E06E3F10AC /* AHDataModel.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 22D620D6768A277CD6DECE280600F1F7 /* AHDataModel.framework */; };
AB9E7A741F6418AE6471CD89B0F11760 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 33D758135BA2BA380EC8078F76306C6F /* Foundation.framework */; };
ABF3557D5C31EF5A054BCB3A1F226014 /* AHFMServices.swift in Sources */ = {isa = PBXBuildFile; fileRef = F10EB3BC1ED318627156AB9A42C38E25 /* AHFMServices.swift */; };
AD618C25DBCBD01E4844DDAFEC37747D /* AHDBColumnInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9A5F1A433FF32794F24B0F026B018802 /* AHDBColumnInfo.swift */; };
AE4DF20360653F2D22563D6C7B29BCC9 /* AHFMEpisode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83D6C82EBDB8FDDBE1494F44D9F8DECB /* AHFMEpisode.swift */; };
B134D0D47DB98FF7E7D651C6C83602F6 /* AHServiceRouter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 942A587D92D60A23716E4590A3ED811B /* AHServiceRouter.swift */; };
B1815C28895A81A573BECF392BC1F0AC /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 33D758135BA2BA380EC8078F76306C6F /* Foundation.framework */; };
B4B9E30B53AEB1C380C9C0127B745495 /* AHFMDataTransformers-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 644F2DA8C4CB3811DFC40FBFEC0C2A41 /* AHFMDataTransformers-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
B5F0007CEDF8921CF49F6AE64197C442 /* UIDeviceExtension.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 57D0531C024FFDB9AA590A5DCF5C0067 /* UIDeviceExtension.framework */; };
B9F398DADCF536975720CC652B62A2F1 /* OAuth2Handler.swift in Sources */ = {isa = PBXBuildFile; fileRef = ACD2A4D563E681654C2B9E2AB9D34978 /* OAuth2Handler.swift */; };
BA65622A7356C5A994A2624E1EEBDA9D /* AHFMKeywordVCManager-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 5940CB463F5BB5C13E6833D5974DC418 /* AHFMKeywordVCManager-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
BAAC4293A822346B1F27573BF927E1BE /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 33D758135BA2BA380EC8078F76306C6F /* Foundation.framework */; };
BEBAB56D7857509AC4E35179F8575640 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 33D758135BA2BA380EC8078F76306C6F /* Foundation.framework */; };
C038A8E6993E7CF2857A576DF330BEAC /* AHFMShowPageServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 11BAE2F80E3F2A58AE7444B8B83CF6ED /* AHFMShowPageServices.framework */; };
C1EBF8CE1C69DE2C1C450325344F2878 /* Migration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7B12D3A931BDD5CDFAF6AE74A27C48AD /* Migration.swift */; };
C299E7A44F740E7491BE874840A05E60 /* KeychainAccess.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A79D2A678BF6FD150F3CDDF543A77B1D /* KeychainAccess.framework */; };
C498D18C22E23E861E683C02E701C22A /* AHFMNetworking.swift in Sources */ = {isa = PBXBuildFile; fileRef = C2B782218510A0958312520A6408202A /* AHFMNetworking.swift */; };
C851086669E8A74C78640B69981C4CB4 /* AHFMServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 12B6CCF6803C92981C47516D014BD3E0 /* AHFMServices.framework */; };
CB6C74C8083417F257E77F342A257005 /* AHNetworkConstants.swift in Sources */ = {isa = PBXBuildFile; fileRef = 82E0215353BD8C397FBA95CD29B2B349 /* AHNetworkConstants.swift */; };
CFB6216F07AD62727414B17E4AFB79E0 /* SessionManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58C918EFB4AB71F0F1125D857629D0C5 /* SessionManager.swift */; };
D0F741EA1085CEE47F6BB5F6116B974D /* Alamofire.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3ADFADFCF547C77EB70D87439463C5C6 /* Alamofire.framework */; };
D1BC0C9BF05B65CAF222AC33FB3D65E3 /* Migrator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5609C50385E511536CB7979601025D41 /* Migrator.swift */; };
D2A7AAB2766A5EF117422763FBA1E00B /* AHFMAudioPlayerVCServices.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6667CED83C3B307494BBD3B5ED3F3076 /* AHFMAudioPlayerVCServices.swift */; };
D64FE85AC3C06F7D41D9FE1CD85B9B03 /* AHFMEpisodeHistory.swift in Sources */ = {isa = PBXBuildFile; fileRef = AD8289C196DE716140EE4C936EFCF05D /* AHFMEpisodeHistory.swift */; };
DBA2C1F50D7924E06C6723D7929E9487 /* AHFMNetworking-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A34640F53D3C4FA1E0B9272A902656E /* AHFMNetworking-dummy.m */; };
E2BAD0EBC8A03C157A854461959BD4E2 /* Result.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0470121BE046E36229258B475361CC9B /* Result.swift */; };
E351832F502A1E15331296D860660F5E /* Manger.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C8B95E48FBA739C0E19E11C084A9714 /* Manger.swift */; };
E3A59E60DABAB10E2F6EC8452AADECAE /* UIDevice+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = CBD3C3D4D53155E37D366D1CFC73FA4C /* UIDevice+Extension.swift */; };
E48A0477E0D9A1A5155398F6650E7021 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 33D758135BA2BA380EC8078F76306C6F /* Foundation.framework */; };
E71BDB8237D7D757F207E1B3BE0B5466 /* AHFMServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 12B6CCF6803C92981C47516D014BD3E0 /* AHFMServices.framework */; };
E886601C65F6A7AFF40781123E84556E /* SwiftyJSON.swift in Sources */ = {isa = PBXBuildFile; fileRef = BCA7FE669660597D4C37FFE22D3D380C /* SwiftyJSON.swift */; };
EAACCC5BFDC4E5A524142281B8742089 /* AHFMKeywordVCServices-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 23FEB54CB874143BFBC4A5CF7DD580C2 /* AHFMKeywordVCServices-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
EBB0B36F14342B1132D3C4C0A19BAB08 /* SwiftyJSON-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D68C3C12FFB97D39C3FD89527FA4D3C3 /* SwiftyJSON-dummy.m */; };
EC16DC465921D22E9C722B2631CFD79F /* Alamofire.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3ADFADFCF547C77EB70D87439463C5C6 /* Alamofire.framework */; };
ED74D6C8098DA3FBDE71F9F2C3B4343A /* AHFMServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 12B6CCF6803C92981C47516D014BD3E0 /* AHFMServices.framework */; };
EDE7E9B33FCE5C639DB7391D79879DB1 /* Validation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 756F7C53FE08414468D0DF05A9E8D2FC /* Validation.swift */; };
EDF4CDA2B56CEFD2F82D895A22F097E0 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 33D758135BA2BA380EC8078F76306C6F /* Foundation.framework */; };
EF48F7F568C14131A3AC82357765BCAE /* AHFMModuleManager-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = DE85B173809B09C51BD3B983D810819D /* AHFMModuleManager-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
F1CC403B475A55892913D014B94E6EB3 /* SwiftyJSON-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 30C0CF84FCEB1D06CD9F580DF0C269E1 /* SwiftyJSON-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
F6986A93F2C835AD9779523D750CF371 /* AHFMKeywordVCManager-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EC8B41843758FFF8E5CC3ABB4981B578 /* AHFMKeywordVCManager-dummy.m */; };
F7ECA1D56564BD0368FA957BCB9ED6A7 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 33D758135BA2BA380EC8078F76306C6F /* Foundation.framework */; };
FA553714BFE67641128119D0166253DD /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 33D758135BA2BA380EC8078F76306C6F /* Foundation.framework */; };
FB7F6146FB91963D61AFA6DABAAF3150 /* AHDataModel-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 567B9E23321D55BD78F95C8EE1E41548 /* AHDataModel-dummy.m */; };
FBD9454CF1C35C63311A3857E2C12F6E /* AHFMServices-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 586F5E3ECF58E86FD96FB7847C29E28E /* AHFMServices-dummy.m */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
01CA80BDFF06BC511A33D728C1BA18C3 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 58B959FA607D16B45162E1722671DCC6;
remoteInfo = AHFMServices;
};
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;
};
0704B354D790C13C1FF7BE9C63AEBA57 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 882778839197FE3E02D0148C95A942CC;
remoteInfo = AHFMNetworking;
};
07791653844B6D3ADD21301B4B84BC26 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 092D0A40D6045DE75C3E46BC3B97370D;
remoteInfo = AHFMDataCenter;
};
15EC0C8434FCCCB53253049EC4D0C7F4 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 092D0A40D6045DE75C3E46BC3B97370D;
remoteInfo = AHFMDataCenter;
};
1A2B263487D5350E0C10436AEC799D56 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 58B959FA607D16B45162E1722671DCC6;
remoteInfo = AHFMServices;
};
1C8EABE213D4BDF010702AB747D5EA1B /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = AA54078D90A282CBC30C19AFBB7DE0BD;
remoteInfo = Alamofire;
};
257946C368AAC4B7CD367619FF5E35E3 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 8C1EE9091653098E2BCC00F7B1FC00DB;
remoteInfo = AHFMBottomPlayerServices;
};
261C47E20FA394F45E8A8BDC522C7E2B /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 820131156757CAB66181ACAEE457B109;
remoteInfo = UIDeviceExtension;
};
2808647BE0C69FC7A638A5573BDC9BCF /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = EBE5740969974405494EAE9E56800F5F;
remoteInfo = AHFMModuleManager;
};
2AFEAC942AD940716EEEC531A5548602 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 13A68174640A31C7F07D7AD1A720E19E;
remoteInfo = AHFMKeywordVCManager;
};
36F1E9424E3A849BB9229631F727B4B9 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 822A0E7A8CC499471B6058361C85CB8B;
remoteInfo = AHFMKeywordVCServices;
};
3B25A0D2B97E3CBE89A357385A46AFBE /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 58B959FA607D16B45162E1722671DCC6;
remoteInfo = AHFMServices;
};
3C63F72188F55B306D8E46C7C4213375 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 822A0E7A8CC499471B6058361C85CB8B;
remoteInfo = AHFMKeywordVCServices;
};
4584CE672F18ABEE50F2521ACAEA62AA /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 58B959FA607D16B45162E1722671DCC6;
remoteInfo = AHFMServices;
};
50DA86DF37F9EFF5445D8A34FCCA9A13 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = AA54078D90A282CBC30C19AFBB7DE0BD;
remoteInfo = Alamofire;
};
5A3D0575DA842D87A9AFDA3292718F66 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 2F54E9EFC5795598C444DA81D59DFBFA;
remoteInfo = AHServiceRouter;
};
7303A519538EE1F5E22D83515DBD9C39 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = ED502015755919A139C59C7E499296E5;
remoteInfo = AHDataModel;
};
82ED567F5AB9D9EAA7A8E313AF5490CE /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 816374D115E6FB620EA7042CF7C05739;
remoteInfo = SwiftyJSON;
};
87AE0B3F212B4E72A83D3D518648645C /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = BEF6A7F98020F19C17D7B5F1EDC58542;
remoteInfo = AHFMAudioPlayerVCServices;
};
9A869E0E4E5BC439BC8434986B22A44A /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = EBE5740969974405494EAE9E56800F5F;
remoteInfo = AHFMModuleManager;
};
A165A6993C3E2E6ED1739FEA142B7FDF /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 790DF19A27B021A7538C0C50B0C47EF8;
remoteInfo = KeychainAccess;
};
A579E4FCF3B103D12FE74542EC0F742C /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 8C1EE9091653098E2BCC00F7B1FC00DB;
remoteInfo = AHFMBottomPlayerServices;
};
ACB7CEB39163E5A06A8DE48C18CBB307 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 820131156757CAB66181ACAEE457B109;
remoteInfo = UIDeviceExtension;
};
B491E728D739C18847A1528A116CFBF4 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 2F54E9EFC5795598C444DA81D59DFBFA;
remoteInfo = AHServiceRouter;
};
BF63DE36A96AEE5E4815AD8044A13D44 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = DC6434385E58C47B3D9AFEEFCA3C083F;
remoteInfo = AHFMDataTransformers;
};
C4F5ADB7C5D65BC0CB07BD5E61A2B247 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = ED502015755919A139C59C7E499296E5;
remoteInfo = AHDataModel;
};
CB99350E4248181D6D448B3AF5B673DB /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 2466899B482DECABC830761B2806F432;
remoteInfo = AHFMShowPageServices;
};
CC418A2D956C94EB04CE262856C0E01D /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 790DF19A27B021A7538C0C50B0C47EF8;
remoteInfo = KeychainAccess;
};
D5631CD7287BAE724A6349A83D1DF044 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 882778839197FE3E02D0148C95A942CC;
remoteInfo = AHFMNetworking;
};
DC06ED7D36810697C738F587840D95E4 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = BEF6A7F98020F19C17D7B5F1EDC58542;
remoteInfo = AHFMAudioPlayerVCServices;
};
E2AC30B0D1238BD02D6930A332F76CC3 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 820131156757CAB66181ACAEE457B109;
remoteInfo = UIDeviceExtension;
};
E3C0E5B8EA26089DFD2BDB18DA60C765 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 58B959FA607D16B45162E1722671DCC6;
remoteInfo = AHFMServices;
};
EAA6C33A29F482838BD2264F2D833CE5 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 816374D115E6FB620EA7042CF7C05739;
remoteInfo = SwiftyJSON;
};
F449F6DC5381568F10C57A0675938A43 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 2466899B482DECABC830761B2806F432;
remoteInfo = AHFMShowPageServices;
};
F62EAD64AC8D7D18587A7FEE8CCD9609 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 790DF19A27B021A7538C0C50B0C47EF8;
remoteInfo = KeychainAccess;
};
F8F75BB78FE9FDA7A2D09DB596D33060 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = AA54078D90A282CBC30C19AFBB7DE0BD;
remoteInfo = Alamofire;
};
F947839C0D6FC7AE53DF0384FFC727B4 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = DC6434385E58C47B3D9AFEEFCA3C083F;
remoteInfo = AHFMDataTransformers;
};
FDEA8FBDCAE014C2569B84591409E683 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 58B959FA607D16B45162E1722671DCC6;
remoteInfo = AHFMServices;
};
/* End PBXContainerItemProxy section */
/* Begin PBXFileReference section */
004F4E20E5DAE590B7230F1258644EBE /* UIDeviceExtension-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIDeviceExtension-umbrella.h"; sourceTree = "<group>"; };
011873ED8C695192BED22C28D689C9ED /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
037A804A3B2EAB07A9D067DF6983443C /* AHFMBottomPlayerServices.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHFMBottomPlayerServices.framework; sourceTree = BUILT_PRODUCTS_DIR; };
0470121BE046E36229258B475361CC9B /* Result.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Result.swift; path = Source/Result.swift; sourceTree = "<group>"; };
0676C6876EBF23027B02F206C03B4D96 /* KeychainAccess-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "KeychainAccess-prefix.pch"; sourceTree = "<group>"; };
09F8177F0C2D5F951ECCAE58FCF41B18 /* UIDeviceExtension-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIDeviceExtension-prefix.pch"; sourceTree = "<group>"; };
0BAC44E50AA9963249391E2A10E87E7A /* KeychainAccess-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "KeychainAccess-umbrella.h"; sourceTree = "<group>"; };
0D9DC1C22E1F4513BCDBE43D16B7F6B2 /* AHFMDataCenter.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHFMDataCenter.framework; sourceTree = BUILT_PRODUCTS_DIR; };
10567D7B6C7414E748741D34BD8A91E8 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
107CB563D585557EDF3B1E012A6657D4 /* AHDataModel.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = AHDataModel.modulemap; sourceTree = "<group>"; };
109A76A8D1D43387738CC798CBC7595B /* AHFMBottomPlayerServices.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHFMBottomPlayerServices.xcconfig; sourceTree = "<group>"; };
1180D1D968A2C6BC71CA6172AA0A7624 /* Pods-AHFMKeywordVCManager_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-AHFMKeywordVCManager_Example-dummy.m"; sourceTree = "<group>"; };
11A4B7E15302482E4990C98D14816829 /* AHFMDataCenter.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHFMDataCenter.framework; sourceTree = BUILT_PRODUCTS_DIR; };
11BAE2F80E3F2A58AE7444B8B83CF6ED /* AHFMShowPageServices.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHFMShowPageServices.framework; sourceTree = BUILT_PRODUCTS_DIR; };
123DF8BEE66877CA444AD1D20C205A30 /* AHFMDataTransformers.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHFMDataTransformers.framework; sourceTree = BUILT_PRODUCTS_DIR; };
12B6CCF6803C92981C47516D014BD3E0 /* AHFMServices.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHFMServices.framework; sourceTree = BUILT_PRODUCTS_DIR; };
13590260F1F3B3E1009B0CEB57F38387 /* AHFMShowPageServices.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMShowPageServices.swift; path = AHFMShowPageServices/Classes/AHFMShowPageServices.swift; sourceTree = "<group>"; };
13AD3B31DEC61C60241E19F5A090B690 /* AHFMShowPageServices.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHFMShowPageServices.xcconfig; sourceTree = "<group>"; };
1A5B3C93593CD2CAE92F2D5E34BA2666 /* Pods-AHFMKeywordVCManager_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-AHFMKeywordVCManager_Tests-dummy.m"; sourceTree = "<group>"; };
1F24393F93C85EF1F35053EEFCC284C1 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
22D620D6768A277CD6DECE280600F1F7 /* AHDataModel.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHDataModel.framework; sourceTree = BUILT_PRODUCTS_DIR; };
23FEB54CB874143BFBC4A5CF7DD580C2 /* AHFMKeywordVCServices-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMKeywordVCServices-umbrella.h"; sourceTree = "<group>"; };
2424B2D409865CBE42655E01EAD95BE3 /* Pods-AHFMKeywordVCManager_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AHFMKeywordVCManager_Tests.debug.xcconfig"; sourceTree = "<group>"; };
2473344439944466150E10C2566619FE /* TaskDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TaskDelegate.swift; path = Source/TaskDelegate.swift; sourceTree = "<group>"; };
259D7D1F3021F708099A83D266BA7E40 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
2871EE8FBD0D0E8B8893FC1F17E2CAE8 /* AHFMShowPageServices-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHFMShowPageServices-dummy.m"; sourceTree = "<group>"; };
2BB2DE0C844BAE52CD71593B38552483 /* AHFMEpisodeTransform.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMEpisodeTransform.swift; path = AHFMDataTransformers/Classes/AHFMEpisodeTransform.swift; sourceTree = "<group>"; };
2CAA1E99743759B639385DAD21ED4432 /* Response.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Response.swift; path = Source/Response.swift; sourceTree = "<group>"; };
2F1A52C1F43F57AA7107A8AFA4C63E49 /* AHFMBottomPlayerServices.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHFMBottomPlayerServices.framework; sourceTree = BUILT_PRODUCTS_DIR; };
2F45E1450D401F81286C4A7448E41CEC /* UIDeviceExtension.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = UIDeviceExtension.modulemap; sourceTree = "<group>"; };
2F4F9D9EA61B6BA318AC12331899EA9A /* AHFMAudioPlayerVCServices-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMAudioPlayerVCServices-prefix.pch"; sourceTree = "<group>"; };
3099CD976FD51CCD230DAD5C14F8B7DC /* AHFMShowPageServices-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMShowPageServices-umbrella.h"; sourceTree = "<group>"; };
30C0CF84FCEB1D06CD9F580DF0C269E1 /* SwiftyJSON-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SwiftyJSON-umbrella.h"; sourceTree = "<group>"; };
30F53476C41181FE53EC4EFFF94E3ED1 /* Alamofire-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Alamofire-dummy.m"; sourceTree = "<group>"; };
327F480D60787921025FBB10C941FAD7 /* AHFMKeywordVCManager.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = AHFMKeywordVCManager.modulemap; sourceTree = "<group>"; };
33D758135BA2BA380EC8078F76306C6F /* 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; };
36C46FB92A0391494790748538333A46 /* AHDB.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHDB.swift; path = AHDataModel/Classes/AHDB.swift; sourceTree = "<group>"; };
37A4E9ABA8FFD3ECB7A71F8DA895EA54 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
37F90B2D59CDDE0B4D7DC434D6A53509 /* Pods_AHFMKeywordVCManager_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_AHFMKeywordVCManager_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; };
39D1BAB0CA55CE51A4B6C34748742455 /* Pods-AHFMKeywordVCManager_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AHFMKeywordVCManager_Example.release.xcconfig"; sourceTree = "<group>"; };
3ADFADFCF547C77EB70D87439463C5C6 /* Alamofire.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Alamofire.framework; sourceTree = BUILT_PRODUCTS_DIR; };
3D7AFEB6849D3BDF52E96FC78606C5F5 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
3F015EAE20350CB61244E1459B998BE5 /* KeychainAccess.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = KeychainAccess.framework; sourceTree = BUILT_PRODUCTS_DIR; };
42FDD2A5DB45B568B618A078E06D7DC3 /* AHFMKeywordVCManager-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMKeywordVCManager-prefix.pch"; sourceTree = "<group>"; };
4483205E56CE02844556337FA28AC689 /* AHFMDataTransformers.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = AHFMDataTransformers.modulemap; sourceTree = "<group>"; };
459FB2F405438E085C8EC5EEFF4031CB /* AHFMModuleManager.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHFMModuleManager.framework; sourceTree = BUILT_PRODUCTS_DIR; };
469DA731CB9DDE79A3232A0EBE8E0F78 /* ParameterEncoding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ParameterEncoding.swift; path = Source/ParameterEncoding.swift; sourceTree = "<group>"; };
47B2B871EC16BF729E9A91D686A1B183 /* AHFMKeywordVCManager.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHFMKeywordVCManager.framework; sourceTree = BUILT_PRODUCTS_DIR; };
49A6A36E162F9152C0E0B77FD9A469B3 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
4A0C1E381DCF6C57388FFC59C5D4C2E8 /* Pods-AHFMKeywordVCManager_Tests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AHFMKeywordVCManager_Tests-frameworks.sh"; sourceTree = "<group>"; };
4A34640F53D3C4FA1E0B9272A902656E /* AHFMNetworking-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHFMNetworking-dummy.m"; sourceTree = "<group>"; };
4C4B5875EB4EC0387C8E6FBC01552705 /* Pods-AHFMKeywordVCManager_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-AHFMKeywordVCManager_Example-umbrella.h"; sourceTree = "<group>"; };
4C8B95E48FBA739C0E19E11C084A9714 /* Manger.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = Manger.swift; sourceTree = "<group>"; };
4D75D248DF8FD2BBE284CF3080B159C5 /* AHFMServices.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = AHFMServices.modulemap; sourceTree = "<group>"; };
4DE7D836C4CB1EA56AF273950AFA1AD5 /* AHFMModuleManager.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHFMModuleManager.xcconfig; sourceTree = "<group>"; };
522BCB889B194DE1600AA8F7E1F1A07E /* SwiftyJSON.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = SwiftyJSON.modulemap; sourceTree = "<group>"; };
528D31E29ACB87D4FB1679839BDAAD6B /* AHServiceRouter-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHServiceRouter-dummy.m"; sourceTree = "<group>"; };
5291DA981253BD1ABDBAC0CFB689C7EF /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
52968DF0F7F1AC729EA2118675B13428 /* AHDatabase.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHDatabase.swift; path = AHDataModel/Classes/AHDatabase.swift; sourceTree = "<group>"; };
52E4E3A199F27C10AAA7D1964048866A /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
5500B64AD06C16C8ACF607BE1C384F95 /* Alamofire.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Alamofire.framework; sourceTree = BUILT_PRODUCTS_DIR; };
552D0C3961C1B1F1AC3165ADB52994E4 /* AHFMEpisodeInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMEpisodeInfo.swift; path = AHFMDataCenter/Classes/AHFMEpisodeInfo.swift; sourceTree = "<group>"; };
5537B4097532966E095B1D7044ECD2BB /* DispatchQueue+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DispatchQueue+Alamofire.swift"; path = "Source/DispatchQueue+Alamofire.swift"; sourceTree = "<group>"; };
5609C50385E511536CB7979601025D41 /* Migrator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Migrator.swift; path = AHDataModel/Classes/Migrator.swift; sourceTree = "<group>"; };
567B9E23321D55BD78F95C8EE1E41548 /* AHDataModel-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHDataModel-dummy.m"; sourceTree = "<group>"; };
5728223904D15260E52FD445BF546B41 /* Timeline.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Timeline.swift; path = Source/Timeline.swift; sourceTree = "<group>"; };
57D0531C024FFDB9AA590A5DCF5C0067 /* UIDeviceExtension.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = UIDeviceExtension.framework; sourceTree = BUILT_PRODUCTS_DIR; };
586F5E3ECF58E86FD96FB7847C29E28E /* AHFMServices-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHFMServices-dummy.m"; sourceTree = "<group>"; };
58C918EFB4AB71F0F1125D857629D0C5 /* SessionManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionManager.swift; path = Source/SessionManager.swift; sourceTree = "<group>"; };
5940CB463F5BB5C13E6833D5974DC418 /* AHFMKeywordVCManager-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMKeywordVCManager-umbrella.h"; sourceTree = "<group>"; };
5965D90E2A07A26EF82A12340EE4CE95 /* Alamofire-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Alamofire-prefix.pch"; sourceTree = "<group>"; };
5F2AD72FACDCDC45FA80DAEED9ECF1A5 /* AHFMDataCenter.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHFMDataCenter.xcconfig; sourceTree = "<group>"; };
5FD4CB2B27E23D258CB28E04641C6AD6 /* AHServiceRouter.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = AHServiceRouter.modulemap; sourceTree = "<group>"; };
5FE8E8D54A237EA367EF01F7A37CE71E /* AHFMModuleManager.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = AHFMModuleManager.modulemap; sourceTree = "<group>"; };
6135643A0500C4EC7110E3EAD9AF0BEA /* AHFMShowPageServices.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = AHFMShowPageServices.modulemap; sourceTree = "<group>"; };
644F2DA8C4CB3811DFC40FBFEC0C2A41 /* AHFMDataTransformers-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMDataTransformers-umbrella.h"; sourceTree = "<group>"; };
6485D5E3DA395FDF220FC27C1B17F5B5 /* AHFMDataCenter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMDataCenter.swift; path = AHFMDataCenter/Classes/AHFMDataCenter.swift; sourceTree = "<group>"; };
664590D2A621BD581B9919CF7FAAFA86 /* ServerTrustPolicy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerTrustPolicy.swift; path = Source/ServerTrustPolicy.swift; sourceTree = "<group>"; };
6667CED83C3B307494BBD3B5ED3F3076 /* AHFMAudioPlayerVCServices.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMAudioPlayerVCServices.swift; path = AHFMAudioPlayerVCServices/Classes/AHFMAudioPlayerVCServices.swift; sourceTree = "<group>"; };
6919B024AB2474E0738C62D97D5F14CA /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
6A08A94E53DBE1BD8C9B06D57EDFF341 /* AHFMBottomPlayerServices.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = AHFMBottomPlayerServices.modulemap; sourceTree = "<group>"; };
6D79CADE20698E996772B553958BF874 /* AHDataModel.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHDataModel.framework; sourceTree = BUILT_PRODUCTS_DIR; };
72D469A401D4BF3873733AEFD7956DD6 /* AHFMAudioPlayerVCServices.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = AHFMAudioPlayerVCServices.modulemap; sourceTree = "<group>"; };
732BABE2D9484BBDFB868CC08E8B02B4 /* Pods-AHFMKeywordVCManager_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AHFMKeywordVCManager_Example-acknowledgements.plist"; sourceTree = "<group>"; };
7369D4CDD32223A560E9DF7286158B53 /* AHFMShowPageServices.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHFMShowPageServices.framework; sourceTree = BUILT_PRODUCTS_DIR; };
73C8CA5A68CAD7EBDC005C32E4F110C3 /* AHFMNetworking.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHFMNetworking.framework; sourceTree = BUILT_PRODUCTS_DIR; };
756F7C53FE08414468D0DF05A9E8D2FC /* Validation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Validation.swift; path = Source/Validation.swift; sourceTree = "<group>"; };
7B12D3A931BDD5CDFAF6AE74A27C48AD /* Migration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Migration.swift; path = AHDataModel/Classes/Migration.swift; sourceTree = "<group>"; };
7F2020B78FBAEC404AECE0B4FD61F087 /* Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Alamofire.swift; path = Source/Alamofire.swift; sourceTree = "<group>"; };
81F0D18AEEDF624F60B51DEE2FF28B47 /* AHFMDataTransformers-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHFMDataTransformers-dummy.m"; sourceTree = "<group>"; };
82CF061F9BA87FFBF384610BF6494001 /* AHDataModelQuery.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHDataModelQuery.swift; path = AHDataModel/Classes/AHDataModelQuery.swift; sourceTree = "<group>"; };
82E0215353BD8C397FBA95CD29B2B349 /* AHNetworkConstants.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHNetworkConstants.swift; path = AHFMNetworking/Classes/AHNetworkConstants.swift; sourceTree = "<group>"; };
82FC80AE50D7910B898090999B14A55F /* AHFMDataCenter-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMDataCenter-prefix.pch"; sourceTree = "<group>"; };
83D6C82EBDB8FDDBE1494F44D9F8DECB /* AHFMEpisode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMEpisode.swift; path = AHFMDataCenter/Classes/AHFMEpisode.swift; sourceTree = "<group>"; };
844493FA7D6D4F3462508931BCFC452A /* AHDataModel-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHDataModel-umbrella.h"; sourceTree = "<group>"; };
86294F95EE1D418E6B7D34C9C622190E /* AHFMKeywordVCServices.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMKeywordVCServices.swift; path = AHFMKeywordVCServices/Classes/AHFMKeywordVCServices.swift; sourceTree = "<group>"; };
8925BC652ADEF6736AAC6B0849D3A0D6 /* Alamofire-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Alamofire-umbrella.h"; sourceTree = "<group>"; };
8BA81A6EC523B877AEC3BD6056135887 /* KeychainAccess.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = KeychainAccess.xcconfig; sourceTree = "<group>"; };
8BF5072AD7C302C3F3CA3DDFE5B3CAC6 /* Pods-AHFMKeywordVCManager_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-AHFMKeywordVCManager_Example.modulemap"; sourceTree = "<group>"; };
8D8AE100AFE125F34A48A863BED75CA7 /* Pods-AHFMKeywordVCManager_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AHFMKeywordVCManager_Example-frameworks.sh"; sourceTree = "<group>"; };
8EBD4EF68CEE1E1BC10DDAB69676EAA0 /* Request.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Request.swift; path = Source/Request.swift; sourceTree = "<group>"; };
8EF6B157C5CBEE652194C61874A8FED0 /* AHFMModuleManager-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMModuleManager-prefix.pch"; sourceTree = "<group>"; };
9165253FADA23571A9218015BDCDBF3A /* AHFMDataTransformers.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHFMDataTransformers.framework; sourceTree = BUILT_PRODUCTS_DIR; };
91DED281518B47357C6AB1CB0F349925 /* SessionDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionDelegate.swift; path = Source/SessionDelegate.swift; sourceTree = "<group>"; };
93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
942A587D92D60A23716E4590A3ED811B /* AHServiceRouter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHServiceRouter.swift; path = AHServiceRouter/Classes/AHServiceRouter.swift; sourceTree = "<group>"; };
9684E64445DCFB02E39559F93861AA90 /* KeychainAccess.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = KeychainAccess.modulemap; sourceTree = "<group>"; };
969F9F240CBA6420BB32A9815B14A502 /* AHFMServices.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHFMServices.xcconfig; sourceTree = "<group>"; };
97C2E3A42C3BEF6C8602C807889B7CF2 /* AHFMModuleManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMModuleManager.swift; path = AHFMModuleManager/Classes/AHFMModuleManager.swift; sourceTree = "<group>"; };
984DD12A8832AB24689BF056AE2F37A4 /* AHFMServices-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMServices-prefix.pch"; sourceTree = "<group>"; };
9949AACD82EEEB4F51BF362BBA7CE94D /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
9A5F1A433FF32794F24B0F026B018802 /* AHDBColumnInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHDBColumnInfo.swift; path = AHDataModel/Classes/AHDBColumnInfo.swift; sourceTree = "<group>"; };
9B980734773713DDFFB17FA7E7265F80 /* AHFMServices.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHFMServices.framework; sourceTree = BUILT_PRODUCTS_DIR; };
9C09456383A9CF22DE2530B8D474CF90 /* AHServiceRouter-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHServiceRouter-prefix.pch"; sourceTree = "<group>"; };
9C1BF8536187D7D62B6569ED7F802961 /* KeychainAccess-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "KeychainAccess-dummy.m"; sourceTree = "<group>"; };
9C5C5ED8592DA13FA2E714FEEEE038D2 /* AHFMBottomPlayerServices-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHFMBottomPlayerServices-dummy.m"; sourceTree = "<group>"; };
9DAC9015B5AC492CE7E887910BA0D496 /* AHFMAudioPlayerVCServices.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHFMAudioPlayerVCServices.framework; sourceTree = BUILT_PRODUCTS_DIR; };
9E78E73F82087390E31EF9D4CAE79192 /* Alamofire.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = Alamofire.modulemap; sourceTree = "<group>"; };
A0B846BDF4B253F0827AD335E4F96B2B /* Pods-AHFMKeywordVCManager_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-AHFMKeywordVCManager_Tests.modulemap"; sourceTree = "<group>"; };
A11687BF33F9171B8553546F9337B56C /* AHServiceRouter.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHServiceRouter.framework; sourceTree = BUILT_PRODUCTS_DIR; };
A1FE94F94941D06D3B1194557D030837 /* AHFMNetworking.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = AHFMNetworking.modulemap; sourceTree = "<group>"; };
A24458B63072E3EDCBD42875FE64B439 /* AHFMAudioPlayerVCServices.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHFMAudioPlayerVCServices.framework; sourceTree = BUILT_PRODUCTS_DIR; };
A2BD3788C4C5A1C61BC1576F38DA7146 /* AHFMKeywordVCServices.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHFMKeywordVCServices.xcconfig; sourceTree = "<group>"; };
A58FB15B29FE18A65182CADEEB63BE65 /* AHFMDataTransformers.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHFMDataTransformers.xcconfig; sourceTree = "<group>"; };
A79D2A678BF6FD150F3CDDF543A77B1D /* KeychainAccess.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = KeychainAccess.framework; sourceTree = BUILT_PRODUCTS_DIR; };
A9B8B18687F17496B721560090E3920A /* UIDeviceExtension.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UIDeviceExtension.xcconfig; sourceTree = "<group>"; };
AA50E8C2FF54C144CCA741E96B3CD8B1 /* MultipartFormData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MultipartFormData.swift; path = Source/MultipartFormData.swift; sourceTree = "<group>"; };
AADA4B9CB258517A2D292FF514A8AED2 /* Alamofire.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Alamofire.xcconfig; sourceTree = "<group>"; };
AAE1A669701EF139C5484F52A50303A9 /* AHDataModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHDataModel.swift; path = AHDataModel/Classes/AHDataModel.swift; sourceTree = "<group>"; };
ACD2A4D563E681654C2B9E2AB9D34978 /* OAuth2Handler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OAuth2Handler.swift; path = AHFMNetworking/Classes/OAuth2Handler.swift; sourceTree = "<group>"; };
AD8289C196DE716140EE4C936EFCF05D /* AHFMEpisodeHistory.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMEpisodeHistory.swift; path = AHFMDataCenter/Classes/AHFMEpisodeHistory.swift; sourceTree = "<group>"; };
B027533EBA0DBCB06B8222A374983197 /* SwiftyJSON.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = SwiftyJSON.framework; sourceTree = BUILT_PRODUCTS_DIR; };
B1958D01FF5DD210B809B85D0D908F49 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
B590A085DB10D9D1606F43298922FB80 /* AHServiceRouter-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHServiceRouter-umbrella.h"; sourceTree = "<group>"; };
B63D7D74E30DCB0A356EA4CEFCC39835 /* AHFMShowPageServices-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMShowPageServices-prefix.pch"; sourceTree = "<group>"; };
B839F966C78940723C73D67B56FCD137 /* Pods-AHFMKeywordVCManager_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AHFMKeywordVCManager_Tests-acknowledgements.plist"; sourceTree = "<group>"; };
BAF0D10530E99B8F6FC47869580BA4BF /* Pods-AHFMKeywordVCManager_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-AHFMKeywordVCManager_Example-acknowledgements.markdown"; sourceTree = "<group>"; };
BAF760F65DDE732C70B5B7260819BE4D /* Pods_AHFMKeywordVCManager_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_AHFMKeywordVCManager_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
BC99DA43DCB33B9DFCC6394230D4847F /* AHFMSubscribedShow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMSubscribedShow.swift; path = AHFMDataCenter/Classes/AHFMSubscribedShow.swift; sourceTree = "<group>"; };
BCA7FE669660597D4C37FFE22D3D380C /* SwiftyJSON.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftyJSON.swift; path = Source/SwiftyJSON.swift; sourceTree = "<group>"; };
BCE61F9722D4311EBB5C4F91E25A0B38 /* ResponseSerialization.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ResponseSerialization.swift; path = Source/ResponseSerialization.swift; sourceTree = "<group>"; };
BEAC67F5840D27675C420202EC4BAEBC /* AHFMBottomPlayerServices-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMBottomPlayerServices-prefix.pch"; sourceTree = "<group>"; };
BECD9E846CEACB2F0E88B78B96F9EE3B /* AHFMNetworking.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHFMNetworking.framework; sourceTree = BUILT_PRODUCTS_DIR; };
BFF1D46DEAC35FC50425EF9FE00EE5A2 /* AHFMBottomPlayerServices-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMBottomPlayerServices-umbrella.h"; sourceTree = "<group>"; };
C155199D097712194E76A2630260CEBA /* UIDeviceExtension-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIDeviceExtension-dummy.m"; sourceTree = "<group>"; };
C1ACE917F6BFFD829885A571E30D31EE /* AHFMKeywordVCServices-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMKeywordVCServices-prefix.pch"; sourceTree = "<group>"; };
C2B782218510A0958312520A6408202A /* AHFMNetworking.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMNetworking.swift; path = AHFMNetworking/Classes/AHFMNetworking.swift; sourceTree = "<group>"; };
C59B1ABEEE6067350DFADDDEC3AF0FFE /* UIDeviceExtension.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = UIDeviceExtension.framework; sourceTree = BUILT_PRODUCTS_DIR; };
CA8A92CB6AFA9A259B240B2CE509A48B /* AHFMModuleManager-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHFMModuleManager-dummy.m"; sourceTree = "<group>"; };
CAC06B79241119DFD00F375A093CA604 /* Pods-AHFMKeywordVCManager_Tests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AHFMKeywordVCManager_Tests-resources.sh"; sourceTree = "<group>"; };
CBD3C3D4D53155E37D366D1CFC73FA4C /* UIDevice+Extension.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIDevice+Extension.swift"; path = "UIDeviceExtension/Classes/UIDevice+Extension.swift"; sourceTree = "<group>"; };
CC964A829E08BEB89053CFCC5E3DA4FF /* SwiftyJSON.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SwiftyJSON.xcconfig; sourceTree = "<group>"; };
CE19F3CAD6FD13E9A6291A9ACF7090A6 /* AHFMDataCenter-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMDataCenter-umbrella.h"; sourceTree = "<group>"; };
CE64DF390F182D37A6FF68533EDC5849 /* AHFMKeywordVCServices.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHFMKeywordVCServices.framework; sourceTree = BUILT_PRODUCTS_DIR; };
CFB0DB0D7D334CAC525AFDFA85F6C2E8 /* AHFMNetworking-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMNetworking-prefix.pch"; sourceTree = "<group>"; };
D079B5926AD3CED00ACC3FDC983A10B7 /* AFError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AFError.swift; path = Source/AFError.swift; sourceTree = "<group>"; };
D094D476F292A0C4AD78CD836F62D4D7 /* Pods-AHFMKeywordVCManager_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AHFMKeywordVCManager_Example.debug.xcconfig"; sourceTree = "<group>"; };
D1695BFAA5AD9108307302EF8504A421 /* AHServiceRouter.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHServiceRouter.framework; sourceTree = BUILT_PRODUCTS_DIR; };
D23794C2547BFC64F501B705E6D1E5F8 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
D3E4C23791404E525E1F2AF408803267 /* AHFMShow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMShow.swift; path = AHFMDataCenter/Classes/AHFMShow.swift; sourceTree = "<group>"; };
D48F5D0CA4BC2BC234DE8690CD540673 /* AHFMBottomPlayerServices.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMBottomPlayerServices.swift; path = AHFMBottomPlayerServices/Classes/AHFMBottomPlayerServices.swift; sourceTree = "<group>"; };
D5AF864AC82C741912C7FE7CA49F0C7E /* AHServiceRouter.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHServiceRouter.xcconfig; sourceTree = "<group>"; };
D68C3C12FFB97D39C3FD89527FA4D3C3 /* SwiftyJSON-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SwiftyJSON-dummy.m"; sourceTree = "<group>"; };
D70B31BD03BF7AC7C591BA06489DC5CF /* AHFMKeywordVCServices.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHFMKeywordVCServices.framework; sourceTree = BUILT_PRODUCTS_DIR; };
D77E0CBF2C02D8F9AC98B05E60B08E1A /* AHDataModel-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHDataModel-prefix.pch"; sourceTree = "<group>"; };
D8729A98B88E7121F03AA5C5FACE3DD9 /* SwiftyJSON.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = SwiftyJSON.framework; sourceTree = BUILT_PRODUCTS_DIR; };
D8787C486E8BB1E4A0BC45A86AD00D21 /* AHFMKeywordVCManager.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHFMKeywordVCManager.xcconfig; sourceTree = "<group>"; };
D9FDF922B6E0F5B155665F510DE151BB /* AHDataModel.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHDataModel.xcconfig; sourceTree = "<group>"; };
DAE67B4DA3E7353D13D885EE31163B4E /* AHFMKeywordVCServices-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHFMKeywordVCServices-dummy.m"; sourceTree = "<group>"; };
DBA2624801DBF081DCADBC1B6E43938C /* Pods-AHFMKeywordVCManager_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-AHFMKeywordVCManager_Tests-umbrella.h"; sourceTree = "<group>"; };
DC02140EE939044EC7A3D8B8FAB602B9 /* NetworkReachabilityManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NetworkReachabilityManager.swift; path = Source/NetworkReachabilityManager.swift; sourceTree = "<group>"; };
DC5F1E7E48E2FB5E619CC82649C9FB7A /* Pods-AHFMKeywordVCManager_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AHFMKeywordVCManager_Tests.release.xcconfig"; sourceTree = "<group>"; };
DDC74BEDE07D8FA2B6DB9D082F4A4F92 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
DE85B173809B09C51BD3B983D810819D /* AHFMModuleManager-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMModuleManager-umbrella.h"; sourceTree = "<group>"; };
DE89440BB11E90405886B20A4E863B3A /* AHFMAudioPlayerVCServices.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHFMAudioPlayerVCServices.xcconfig; sourceTree = "<group>"; };
DEAF3F18440CB7EEBB399317BA62F29D /* Keychain.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Keychain.swift; path = Lib/KeychainAccess/Keychain.swift; sourceTree = "<group>"; };
DFF1FA43001D92E9F3CAEF40B7A43CE1 /* AHFMDataCenter-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHFMDataCenter-dummy.m"; sourceTree = "<group>"; };
E01A5AAD749294795DFE1199FF3A5898 /* AHFMNetworking.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHFMNetworking.xcconfig; sourceTree = "<group>"; };
E1187B4FBCDA25259D098715E007FB7E /* AHFMAudioPlayerVCServices-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMAudioPlayerVCServices-umbrella.h"; sourceTree = "<group>"; };
E202163389254EE4140EA0A5232E8DF3 /* AHFMNetworking-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMNetworking-umbrella.h"; sourceTree = "<group>"; };
E230BAC8CA4E07DF5FDB978E80E0FF72 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
E2393A54A3EDE645F13E5C3B66B475E6 /* Notifications.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Notifications.swift; path = Source/Notifications.swift; sourceTree = "<group>"; };
E58A25F9B2928CFFA5C8E3AB5A12F9E9 /* AHFMShowTransform.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMShowTransform.swift; path = AHFMDataTransformers/Classes/AHFMShowTransform.swift; sourceTree = "<group>"; };
E6F3469C7A713514CC6DA935E24F267D /* Pods-AHFMKeywordVCManager_Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AHFMKeywordVCManager_Example-resources.sh"; sourceTree = "<group>"; };
E9752561FBBC8D1C00F36B80B6D2B8C1 /* AHFMDataTransformers-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMDataTransformers-prefix.pch"; sourceTree = "<group>"; };
EA9C6200EC5A61B370B52073C9F5FBAF /* Pods-AHFMKeywordVCManager_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-AHFMKeywordVCManager_Tests-acknowledgements.markdown"; sourceTree = "<group>"; };
EAC0C6D8F3A66848E4354B84D4AA8A68 /* AHKeychain.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHKeychain.swift; path = AHFMNetworking/Classes/AHKeychain.swift; sourceTree = "<group>"; };
EC6F399FED5C5EEF718427E35E44048D /* AHFMAudioPlayerVCServices-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHFMAudioPlayerVCServices-dummy.m"; sourceTree = "<group>"; };
EC8B41843758FFF8E5CC3ABB4981B578 /* AHFMKeywordVCManager-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHFMKeywordVCManager-dummy.m"; sourceTree = "<group>"; };
EEA0949AD9581FEE7D7C78C929804D3A /* AHFMKeywordVCServices.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = AHFMKeywordVCServices.modulemap; sourceTree = "<group>"; };
F10EB3BC1ED318627156AB9A42C38E25 /* AHFMServices.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMServices.swift; path = AHFMServices/Classes/AHFMServices.swift; sourceTree = "<group>"; };
F1285656C32A547959078640C4457E99 /* AHFMDataCenter.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = AHFMDataCenter.modulemap; sourceTree = "<group>"; };
F139A101EC4E64D8DFFC0A9630EFC0A8 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
F812E866CA171FF8FE805B68E9FC4188 /* AHFMModuleManager.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHFMModuleManager.framework; sourceTree = BUILT_PRODUCTS_DIR; };
F9312EA6FC447F321EF4DC9BDCCDC0B5 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
FCE462DCF80C7CE98B714D7F71D24C45 /* AHFMKeywordVCManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = AHFMKeywordVCManager.swift; sourceTree = "<group>"; };
FD1D4EEB66EF3DB64652FB60F829149A /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
FD8D6926CA30A10A0BDA71C4A7B1468F /* SwiftyJSON-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SwiftyJSON-prefix.pch"; sourceTree = "<group>"; };
FE781B8E56F099B6DAA10DD4D655428C /* AHFMServices-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMServices-umbrella.h"; 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;
};
3EA3F7AC601AA08CB725F438E798C66B /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
E71BDB8237D7D757F207E1B3BE0B5466 /* AHFMServices.framework in Frameworks */,
541530769F0675FE46067BA5DCAD0805 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
4497228DB09D014CA8B3A73327DD3970 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
4DA62760881347DD1A319D511E852FBF /* AHDataModel.framework in Frameworks */,
3E9D34F5555ADE75B2F1181287854FF2 /* AHFMAudioPlayerVCServices.framework in Frameworks */,
8A51DC198FA9C1F2C09DF4B19FDAF793 /* AHFMBottomPlayerServices.framework in Frameworks */,
1A5BAECED34F41689025CEED59CD501B /* AHFMDataCenter.framework in Frameworks */,
1DB5166BCD6C101E0F22DBC86D6DFA3B /* AHFMDataTransformers.framework in Frameworks */,
0EED70F280D5F912A72C4624F2B1D202 /* AHFMKeywordVCServices.framework in Frameworks */,
6FB43B1FC8C56571C74BD3B293C55782 /* AHFMModuleManager.framework in Frameworks */,
979D3473671E0DA9FEEF4D7F83499404 /* AHFMNetworking.framework in Frameworks */,
C851086669E8A74C78640B69981C4CB4 /* AHFMServices.framework in Frameworks */,
C038A8E6993E7CF2857A576DF330BEAC /* AHFMShowPageServices.framework in Frameworks */,
239938FE4B0015CCE327AFD65D79CA43 /* AHServiceRouter.framework in Frameworks */,
D0F741EA1085CEE47F6BB5F6116B974D /* Alamofire.framework in Frameworks */,
A30E5C5F8D414BF1C8F5A97E5DE83199 /* Foundation.framework in Frameworks */,
8AA91348796BB731C52D035662CB4FD0 /* KeychainAccess.framework in Frameworks */,
7A29E4F7B724936F9EFDA118F4F1EBFC /* SwiftyJSON.framework in Frameworks */,
8CCD217CD6A3BD50C32A50CF8D7BD5C3 /* UIDeviceExtension.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
474156E241AF1F1F3379C1059E97EAAF /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
BEBAB56D7857509AC4E35179F8575640 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
62F9B5F7FC53E13F6365D65333723C14 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
9E9F0493E365100871FB69C12E7CEECB /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
793806A07B20AF8CF8E185146CD313FD /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
0E13EAD574F186202DD5739DE67BD42A /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
90CDFDF10BDD9B62DE5189AF93A158D9 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
F7ECA1D56564BD0368FA957BCB9ED6A7 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
96BF85D1543099210354953AC249DA0D /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
B1815C28895A81A573BECF392BC1F0AC /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
9A28C634484BF99901B2D6C0CB384B59 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
5CCD2103BD3D8AB672654DBA2E7053F3 /* AHFMServices.framework in Frameworks */,
2C25CEC63FAA52F8CCD83F44AD20EBA6 /* 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;
};
B6767283118BDF58C5384DEA17BBDF83 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
8E357A8575E7F57FAD16D1A2E6C07DC7 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
B8B81FC4F90068FB44C98679FEBABB30 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
EC16DC465921D22E9C722B2631CFD79F /* Alamofire.framework in Frameworks */,
4F9D997B938F7DB17F4234EE32B0CD63 /* Foundation.framework in Frameworks */,
C299E7A44F740E7491BE874840A05E60 /* KeychainAccess.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
BA43F7A1E8B98EEC32C9CF5FB3D171E7 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
FA553714BFE67641128119D0166253DD /* 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;
};
DE693BBDAD2F6CAC3C40C09953B8E636 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
EDF4CDA2B56CEFD2F82D895A22F097E0 /* 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 */
0544FF460EE922DFE2D8ADA1BA4C7C08 /* Support Files */ = {
isa = PBXGroup;
children = (
F1285656C32A547959078640C4457E99 /* AHFMDataCenter.modulemap */,
5F2AD72FACDCDC45FA80DAEED9ECF1A5 /* AHFMDataCenter.xcconfig */,
DFF1FA43001D92E9F3CAEF40B7A43CE1 /* AHFMDataCenter-dummy.m */,
82FC80AE50D7910B898090999B14A55F /* AHFMDataCenter-prefix.pch */,
CE19F3CAD6FD13E9A6291A9ACF7090A6 /* AHFMDataCenter-umbrella.h */,
6919B024AB2474E0738C62D97D5F14CA /* Info.plist */,
);
name = "Support Files";
path = "../Target Support Files/AHFMDataCenter";
sourceTree = "<group>";
};
06F8C684378A64013E5D1961072E848B /* AHFMBottomPlayerServices */ = {
isa = PBXGroup;
children = (
D48F5D0CA4BC2BC234DE8690CD540673 /* AHFMBottomPlayerServices.swift */,
7B0857DAC224CFADDA86FDE329FCB337 /* Support Files */,
);
path = AHFMBottomPlayerServices;
sourceTree = "<group>";
};
0B3775652D9F3C701E4F9ECB346B996E /* Support Files */ = {
isa = PBXGroup;
children = (
4D75D248DF8FD2BBE284CF3080B159C5 /* AHFMServices.modulemap */,
969F9F240CBA6420BB32A9815B14A502 /* AHFMServices.xcconfig */,
586F5E3ECF58E86FD96FB7847C29E28E /* AHFMServices-dummy.m */,
984DD12A8832AB24689BF056AE2F37A4 /* AHFMServices-prefix.pch */,
FE781B8E56F099B6DAA10DD4D655428C /* AHFMServices-umbrella.h */,
52E4E3A199F27C10AAA7D1964048866A /* Info.plist */,
);
name = "Support Files";
path = "../Target Support Files/AHFMServices";
sourceTree = "<group>";
};
15EC084F344EC00ECC61C7CCF49BCD82 /* AHFMModuleManager */ = {
isa = PBXGroup;
children = (
97C2E3A42C3BEF6C8602C807889B7CF2 /* AHFMModuleManager.swift */,
66AE54435B184073ED9E988162E3964E /* Support Files */,
);
path = AHFMModuleManager;
sourceTree = "<group>";
};
183B22FD58121916334C2C6D79AD1A5D /* Support Files */ = {
isa = PBXGroup;
children = (
37A4E9ABA8FFD3ECB7A71F8DA895EA54 /* Info.plist */,
9684E64445DCFB02E39559F93861AA90 /* KeychainAccess.modulemap */,
8BA81A6EC523B877AEC3BD6056135887 /* KeychainAccess.xcconfig */,
9C1BF8536187D7D62B6569ED7F802961 /* KeychainAccess-dummy.m */,
0676C6876EBF23027B02F206C03B4D96 /* KeychainAccess-prefix.pch */,
0BAC44E50AA9963249391E2A10E87E7A /* KeychainAccess-umbrella.h */,
);
name = "Support Files";
path = "../Target Support Files/KeychainAccess";
sourceTree = "<group>";
};
235F457978C013CB15E9E224D3BA6FFF /* AHFMKeywordVCServices */ = {
isa = PBXGroup;
children = (
86294F95EE1D418E6B7D34C9C622190E /* AHFMKeywordVCServices.swift */,
F4D5C52F263B17CB475FBBBA7A62FD9D /* Support Files */,
);
path = AHFMKeywordVCServices;
sourceTree = "<group>";
};
23A74FF575910774CA7593F8B1D40A0D /* Products */ = {
isa = PBXGroup;
children = (
6D79CADE20698E996772B553958BF874 /* AHDataModel.framework */,
9DAC9015B5AC492CE7E887910BA0D496 /* AHFMAudioPlayerVCServices.framework */,
2F1A52C1F43F57AA7107A8AFA4C63E49 /* AHFMBottomPlayerServices.framework */,
11A4B7E15302482E4990C98D14816829 /* AHFMDataCenter.framework */,
9165253FADA23571A9218015BDCDBF3A /* AHFMDataTransformers.framework */,
47B2B871EC16BF729E9A91D686A1B183 /* AHFMKeywordVCManager.framework */,
D70B31BD03BF7AC7C591BA06489DC5CF /* AHFMKeywordVCServices.framework */,
459FB2F405438E085C8EC5EEFF4031CB /* AHFMModuleManager.framework */,
73C8CA5A68CAD7EBDC005C32E4F110C3 /* AHFMNetworking.framework */,
9B980734773713DDFFB17FA7E7265F80 /* AHFMServices.framework */,
7369D4CDD32223A560E9DF7286158B53 /* AHFMShowPageServices.framework */,
D1695BFAA5AD9108307302EF8504A421 /* AHServiceRouter.framework */,
5500B64AD06C16C8ACF607BE1C384F95 /* Alamofire.framework */,
3F015EAE20350CB61244E1459B998BE5 /* KeychainAccess.framework */,
37F90B2D59CDDE0B4D7DC434D6A53509 /* Pods_AHFMKeywordVCManager_Example.framework */,
BAF760F65DDE732C70B5B7260819BE4D /* Pods_AHFMKeywordVCManager_Tests.framework */,
B027533EBA0DBCB06B8222A374983197 /* SwiftyJSON.framework */,
C59B1ABEEE6067350DFADDDEC3AF0FFE /* UIDeviceExtension.framework */,
);
name = Products;
sourceTree = "<group>";
};
35ADB1C53BB777AFA41576E1CD3CAC19 /* Support Files */ = {
isa = PBXGroup;
children = (
5FD4CB2B27E23D258CB28E04641C6AD6 /* AHServiceRouter.modulemap */,
D5AF864AC82C741912C7FE7CA49F0C7E /* AHServiceRouter.xcconfig */,
528D31E29ACB87D4FB1679839BDAAD6B /* AHServiceRouter-dummy.m */,
9C09456383A9CF22DE2530B8D474CF90 /* AHServiceRouter-prefix.pch */,
B590A085DB10D9D1606F43298922FB80 /* AHServiceRouter-umbrella.h */,
5291DA981253BD1ABDBAC0CFB689C7EF /* Info.plist */,
);
name = "Support Files";
path = "../Target Support Files/AHServiceRouter";
sourceTree = "<group>";
};
3980A0F6DE6F6D3F675BE485073AEFB8 /* Classes */ = {
isa = PBXGroup;
children = (
FCE462DCF80C7CE98B714D7F71D24C45 /* AHFMKeywordVCManager.swift */,
4C8B95E48FBA739C0E19E11C084A9714 /* Manger.swift */,
);
path = Classes;
sourceTree = "<group>";
};
3A7634B56C58B27D6F7E7354F49CE21A /* AHFMKeywordVCManager */ = {
isa = PBXGroup;
children = (
C724A9788D593AECB24A60ABF163C6A5 /* AHFMKeywordVCManager */,
CD0BEFAE309E0F2B1E4FA2504D325D7B /* Support Files */,
);
name = AHFMKeywordVCManager;
path = ../..;
sourceTree = "<group>";
};
3FBC2502FB57569A3A5232C8B068A53A /* Support Files */ = {
isa = PBXGroup;
children = (
F9312EA6FC447F321EF4DC9BDCCDC0B5 /* Info.plist */,
522BCB889B194DE1600AA8F7E1F1A07E /* SwiftyJSON.modulemap */,
CC964A829E08BEB89053CFCC5E3DA4FF /* SwiftyJSON.xcconfig */,
D68C3C12FFB97D39C3FD89527FA4D3C3 /* SwiftyJSON-dummy.m */,
FD8D6926CA30A10A0BDA71C4A7B1468F /* SwiftyJSON-prefix.pch */,
30C0CF84FCEB1D06CD9F580DF0C269E1 /* SwiftyJSON-umbrella.h */,
);
name = "Support Files";
path = "../Target Support Files/SwiftyJSON";
sourceTree = "<group>";
};
4FDAE60043D6F766C88B867CA04D5DA4 /* AHFMServices */ = {
isa = PBXGroup;
children = (
F10EB3BC1ED318627156AB9A42C38E25 /* AHFMServices.swift */,
0B3775652D9F3C701E4F9ECB346B996E /* Support Files */,
);
path = AHFMServices;
sourceTree = "<group>";
};
6202F3F598221ABB8A3795599B5E63CD /* AHFMNetworking */ = {
isa = PBXGroup;
children = (
C2B782218510A0958312520A6408202A /* AHFMNetworking.swift */,
EAC0C6D8F3A66848E4354B84D4AA8A68 /* AHKeychain.swift */,
82E0215353BD8C397FBA95CD29B2B349 /* AHNetworkConstants.swift */,
ACD2A4D563E681654C2B9E2AB9D34978 /* OAuth2Handler.swift */,
BDD2592148CD5C734ACDCC0E6F5734CE /* Support Files */,
);
path = AHFMNetworking;
sourceTree = "<group>";
};
66AE54435B184073ED9E988162E3964E /* Support Files */ = {
isa = PBXGroup;
children = (
5FE8E8D54A237EA367EF01F7A37CE71E /* AHFMModuleManager.modulemap */,
4DE7D836C4CB1EA56AF273950AFA1AD5 /* AHFMModuleManager.xcconfig */,
CA8A92CB6AFA9A259B240B2CE509A48B /* AHFMModuleManager-dummy.m */,
8EF6B157C5CBEE652194C61874A8FED0 /* AHFMModuleManager-prefix.pch */,
DE85B173809B09C51BD3B983D810819D /* AHFMModuleManager-umbrella.h */,
B1958D01FF5DD210B809B85D0D908F49 /* Info.plist */,
);
name = "Support Files";
path = "../Target Support Files/AHFMModuleManager";
sourceTree = "<group>";
};
67783E4A583F1CEB52906DB4C6ECD7D9 /* Development Pods */ = {
isa = PBXGroup;
children = (
3A7634B56C58B27D6F7E7354F49CE21A /* AHFMKeywordVCManager */,
);
name = "Development Pods";
sourceTree = "<group>";
};
69ED9E2262851E02029066AA2DE257A7 /* Support Files */ = {
isa = PBXGroup;
children = (
72D469A401D4BF3873733AEFD7956DD6 /* AHFMAudioPlayerVCServices.modulemap */,
DE89440BB11E90405886B20A4E863B3A /* AHFMAudioPlayerVCServices.xcconfig */,
EC6F399FED5C5EEF718427E35E44048D /* AHFMAudioPlayerVCServices-dummy.m */,
2F4F9D9EA61B6BA318AC12331899EA9A /* AHFMAudioPlayerVCServices-prefix.pch */,
E1187B4FBCDA25259D098715E007FB7E /* AHFMAudioPlayerVCServices-umbrella.h */,
E230BAC8CA4E07DF5FDB978E80E0FF72 /* Info.plist */,
);
name = "Support Files";
path = "../Target Support Files/AHFMAudioPlayerVCServices";
sourceTree = "<group>";
};
6D70018257A4D49CFAD7857DA51C4ADA /* Support Files */ = {
isa = PBXGroup;
children = (
FD1D4EEB66EF3DB64652FB60F829149A /* Info.plist */,
2F45E1450D401F81286C4A7448E41CEC /* UIDeviceExtension.modulemap */,
A9B8B18687F17496B721560090E3920A /* UIDeviceExtension.xcconfig */,
C155199D097712194E76A2630260CEBA /* UIDeviceExtension-dummy.m */,
09F8177F0C2D5F951ECCAE58FCF41B18 /* UIDeviceExtension-prefix.pch */,