forked from merlos/MapCache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.pbxproj
2154 lines (2141 loc) · 183 KB
/
project.pbxproj
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 */
0258519887C7677C735B67B057DC4363 /* XCTestSuite+QuickTestSuiteBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = F8E7B9D4B99EC2F2B600BA7BE231610D /* XCTestSuite+QuickTestSuiteBuilder.m */; };
033DFAE3F372A6C848F7A2F14A76610B /* OHHTTPStubsResponse+JSON.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C6E9A24AB92490E03C94616F3BD8DCC /* OHHTTPStubsResponse+JSON.m */; };
0779B89F9C0D5D853C7308F616A5A849 /* HaveCount.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4E19C48B0DB17CB623A00E85DBA1AB1B /* HaveCount.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
078BB418FC102FE1C6CA048D768A7282 /* OHHTTPStubsResponse+JSON.h in Headers */ = {isa = PBXBuildFile; fileRef = 2392A8C037CE4EDF0021851066EA390F /* OHHTTPStubsResponse+JSON.h */; settings = {ATTRIBUTES = (Public, ); }; };
07B8533B93693FCEAA99BF09F9253B2F /* MatchError.swift in Sources */ = {isa = PBXBuildFile; fileRef = D3E142DDFFA65B2FF36F6DEAAD978ECD /* MatchError.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
08FD7AAEEE21DB8B2F759DB2BB06222F /* CachedTileOverlay.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7508C7CFC6CDE99DD377BE9CF856029 /* CachedTileOverlay.swift */; };
090633CE456C1FA8409CDAB28677CEB0 /* QuickSpec.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C8D180BA6024B0B0809AEFCC0ACEC4B /* QuickSpec.h */; settings = {ATTRIBUTES = (Public, ); }; };
0A10F1314015F707EBD8557FA1DC1003 /* QuickSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 3BA1E6CA1599C38A2699EEA547D0B108 /* QuickSpec.m */; };
0A430DD7E962A9913385832E3F96F48D /* Filter.swift in Sources */ = {isa = PBXBuildFile; fileRef = EE0AC45A0A7F9053CD207CFA516ABDB6 /* Filter.swift */; };
0AB4D69A223EE91B885F7EBFB50DE156 /* CwlMachBadInstructionHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 4679A3022880119B7822FCFC9AC654C0 /* CwlMachBadInstructionHandler.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
0AF0D94CD930C1500995605C433F383E /* NMBStringify.m in Sources */ = {isa = PBXBuildFile; fileRef = 68DEE32099782F214BAB5BEAE61CA2DA /* NMBStringify.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
0B3EED9DC07A09EBF68C02D14B98E014 /* Quick-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 05D7C1FB9885DD0C99FCB135564887AD /* Quick-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
0B7BD24FDF2877B7DAB8E15AB42ABDB7 /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D969F7AA89F7A16F77AE2737573BB0A5 /* XCTest.framework */; };
0D476A8577141576F5FDB1046C02B11A /* MatcherProtocols.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1D25265EFDE8BBD91DDD672DDCC9FC54 /* MatcherProtocols.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
0D951E04ECF4C9980150463CD7992541 /* OHHTTPStubs-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C1D8C18AA77C0D9E6F6BCAFAC9303724 /* OHHTTPStubs-dummy.m */; };
0EA459BD6662050D9560047C9F812C11 /* ThrowAssertion.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4EF759EA3871C3DADE2F8FB670596585 /* ThrowAssertion.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
0FDC4525713B791EA529469777EF6E35 /* OHHTTPStubs.h in Headers */ = {isa = PBXBuildFile; fileRef = 39C5A17C1D387A33887F689C62B1A83E /* OHHTTPStubs.h */; settings = {ATTRIBUTES = (Public, ); }; };
0FDD6D874934CCC0CA1673571027B47E /* MapCacheProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3DA478BE33C4773BABB89B1880C239C6 /* MapCacheProtocol.swift */; };
14CF863FE8B157437FF2B78AEBB7B413 /* SatisfyAnyOf.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7C2815866298748AE706B7098B86E0F /* SatisfyAnyOf.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
19A8009537BCAD56435B2DDC620B29AA /* mach_excServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 482512D9FB30EFDB67E87E6E29633A2D /* mach_excServer.h */; settings = {ATTRIBUTES = (Public, ); }; };
1CB7927791B377DB30E9CE046A2C664C /* Contain.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4BA781B1CCAE47E17983C6A28264506F /* Contain.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
1D12D3BB1FB2542E6ED6887470BEA80B /* Closures.swift in Sources */ = {isa = PBXBuildFile; fileRef = AAEC7F2D15B9463F36D337745A5B59D9 /* Closures.swift */; };
21F3408E9BD0BE7C7A9FFBF43B4F28A0 /* Nimble.h in Headers */ = {isa = PBXBuildFile; fileRef = BE2EA9E733489EB63B220AF86EA6D02A /* Nimble.h */; settings = {ATTRIBUTES = (Public, ); }; };
2237E6E22D72C7C15435869831F2DCE2 /* Await.swift in Sources */ = {isa = PBXBuildFile; fileRef = EB27159E408E45BC65B2669C4EE73997 /* Await.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
23000995DBD093C7D33D8BE08AFC3D7D /* Nimble-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C3398B72D03E4964AAD7CA934EE2BB90 /* Nimble-dummy.m */; };
238FC503FCA0F3E5F20645782E8F5189 /* TileRangeIterator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9583DCE961D42D5696EA6B811BBED0B9 /* TileRangeIterator.swift */; };
25A33F0E41DED68EC6D67E3CBB33B94F /* NSURLRequest+HTTPBodyTesting.m in Sources */ = {isa = PBXBuildFile; fileRef = 83DAC7CDC185221500D66153876755D4 /* NSURLRequest+HTTPBodyTesting.m */; };
288A9262472730459EFECA301BF7F08A /* Expression.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA7B5966AF29542C25D82022323827AD /* Expression.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
2A090B165CFA5629C9CE47E6318AB38E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 85C001BEBCF7E787137457AACE8930A0 /* Foundation.framework */; };
2ADE544353989D2BD96CFC3832E5B0C1 /* Pods-MapCache_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B5CEF88D3C3708634DDD8AD10AEF4FC /* Pods-MapCache_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
2CF2036F269D92D594037180F346C926 /* BeNil.swift in Sources */ = {isa = PBXBuildFile; fileRef = EDA88D9DE6A5FD4BA0CFD5F33426D0B0 /* BeNil.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
307CBFA4C4FF7EB1C556789B1BBFFB96 /* FileManager+DiskCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 77F6824352A5EA1AD6627ECC52A5833A /* FileManager+DiskCache.swift */; };
318EF49A5B77A5A31647C948182DDA5C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 85C001BEBCF7E787137457AACE8930A0 /* Foundation.framework */; };
325BA2DBDB00816CA513FCC926228550 /* MapCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 293E99D64778CE2C3B238189D1F7FA9E /* MapCache.swift */; };
32F120AD587F92607976D65AF3D8FECB /* ZoomRange.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8EAE4044AAA493DD77987479B9348526 /* ZoomRange.swift */; };
36C02EC8E1C1C4308D1A4EE313746405 /* QCKDSL.h in Headers */ = {isa = PBXBuildFile; fileRef = 570DD46A5646C5ADA575D84B13512F09 /* QCKDSL.h */; settings = {ATTRIBUTES = (Public, ); }; };
36FBD4F8D6EE81B6E753EC3612C90779 /* ContainElementSatisfying.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1AE5C1033C788F3D7822839ED51C5265 /* ContainElementSatisfying.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
37D7E98EFCBDBA089CD46482EF1F21C4 /* CwlCatchBadInstruction.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3EEEF021581588E7D8D629AAEBFCC445 /* CwlCatchBadInstruction.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
3975623C9DADB7A4EB9A5F9A0C96001A /* MapCacheConfig.swift in Sources */ = {isa = PBXBuildFile; fileRef = 201D413FAF68CFC90965B3466D982D51 /* MapCacheConfig.swift */; };
39EB6F3F4D4BC1FB786A3C25827D26BC /* BeVoid.swift in Sources */ = {isa = PBXBuildFile; fileRef = BC7FFECB0CDB160946DB8BE55512EA9A /* BeVoid.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
3A7BAC3525A87710E8B88E2343A87C2A /* ExampleGroup.swift in Sources */ = {isa = PBXBuildFile; fileRef = D7F0B149DA948F6D187841464768C5D3 /* ExampleGroup.swift */; };
3BEA034F203FF32442117ECDF19D5A8A /* TileCoords.swift in Sources */ = {isa = PBXBuildFile; fileRef = C9BC5CC27304C0F08B64684A729CCA39 /* TileCoords.swift */; };
3E95FD372BA504F75004CDC7603C7E48 /* MapCache-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D1049A402DF50FE078C082DE2A04C740 /* MapCache-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
4082A39572059BFEB903CE7237697FC3 /* LoadTileMode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 827085290F2D1E97FABD330F77198FC2 /* LoadTileMode.swift */; };
40BE5D23644798E7704DCFEA175281E7 /* MKZoomScale+MapCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD3B24DAE1154E464EE5276EB32E237A /* MKZoomScale+MapCache.swift */; };
418D281C0D9DFECE0BC865C95471EE7F /* XCTestObservationCenter+Register.m in Sources */ = {isa = PBXBuildFile; fileRef = 8939410024A12EA5F7B0D6C9EF5DE9C9 /* XCTestObservationCenter+Register.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
42BBE0E315E36B784C0B87F8FF47BFE4 /* DSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8EFFDEC24784CD6F30995D093434FB33 /* DSL.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
43053D4C139B803727E485CB5EC2BDE7 /* RaisesException.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7FCF85A3E02EF292E95EB6F3297E528 /* RaisesException.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
44E628E61C5BC1109CBEF863F672E397 /* OHHTTPStubsResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 56C290C6C3615247A0BC5E117F823CA7 /* OHHTTPStubsResponse.m */; };
456B5082BEA7D6DC9203FC95F2275427 /* FailureMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = B461AC39DBEF85D4F8F1AB959B435654 /* FailureMessage.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
48C10B9A539A0C5ABB40C060BCFA6A5D /* QuickTestObservation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0B242CA3FD1834270BF6794628AA6EE6 /* QuickTestObservation.swift */; };
4933DA60945D792DFF5BFD12C8EA041E /* BeGreaterThan.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8DCF2F6768FFC029E85B4F38DA023582 /* BeGreaterThan.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
4A7DE0C16571E49896074F0152E5B0F8 /* ToSucceed.swift in Sources */ = {isa = PBXBuildFile; fileRef = 377C03F0B5DF71EFA2D9B09166434F9E /* ToSucceed.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
4AB3E5CA752435B21E7EBC018EE8CE58 /* ExampleMetadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = 876777D03A0CB62426534C16CA0C789D /* ExampleMetadata.swift */; };
4C3EC6F293171B624B88EDCCF5E30114 /* ExampleHooks.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5449C3156A7936DFF326CDE593F807ED /* ExampleHooks.swift */; };
52BD44CD1A86628DD9118174A244AE01 /* OHHTTPStubs-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 39D1FD597A26F9601D452312EECF93BA /* OHHTTPStubs-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
536B70B43A9AAFA6C724977674A47483 /* QuickConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5E20685EE2BFD6912BE103B4F09F16D5 /* QuickConfiguration.swift */; };
583B5AF27B91E2F4EE8D1547443E1C75 /* BeAKindOf.swift in Sources */ = {isa = PBXBuildFile; fileRef = 265E140309F83C253B4CAFA6B6626115 /* BeAKindOf.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
586F823C4C048A55335C1952B4B1BF51 /* Example.swift in Sources */ = {isa = PBXBuildFile; fileRef = 280AB5648E36ADAB7B4CCC18F32AC9DC /* Example.swift */; };
5A26B3F2F52E7EB45C2FB5CD4393F82E /* OHHTTPStubsMethodSwizzling.h in Headers */ = {isa = PBXBuildFile; fileRef = F38933FE57D75379B1225A97218AAD59 /* OHHTTPStubsMethodSwizzling.h */; settings = {ATTRIBUTES = (Private, ); }; };
5ABAC9BB49C752590718531EAC44447F /* MKMapView+MapCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7A0D21C0222C7AA21ED1DF6C73F1B920 /* MKMapView+MapCache.swift */; };
5B18712DB5C253E2CD45E32E96D17BDE /* OHPathHelpers.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E7D0FF3DC10859D4B568792DB60559D /* OHPathHelpers.m */; };
5B70B7A48D33851645A970DA8AD85CD6 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 85C001BEBCF7E787137457AACE8930A0 /* Foundation.framework */; };
5DE358B668148D244DB531CE03A81D84 /* Quick.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CAD59D6DDB0ADBBC7141996539332C1 /* Quick.h */; settings = {ATTRIBUTES = (Public, ); }; };
60A059AA3734D5D3F2F73D07C427F4C1 /* NMBExceptionCapture.h in Headers */ = {isa = PBXBuildFile; fileRef = 64D31DDF3262537B626E5CEDE49B1BE8 /* NMBExceptionCapture.h */; settings = {ATTRIBUTES = (Public, ); }; };
60E7AE4194948B5824E3BA84B9BD7B41 /* AssertionDispatcher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 290CDE361EC6EE27C00F56F64EE3375D /* AssertionDispatcher.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
611EEC7C35C0291446DEA52EBB03018E /* MapCache-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D949B53C8F5F77CEC4050A8EF59E0DF /* MapCache-dummy.m */; };
61A3F685DFB802E1D322005D0D4FEE44 /* Log.swift in Sources */ = {isa = PBXBuildFile; fileRef = B7B5F0D921920D2E76BD78A5D27BA4EF /* Log.swift */; };
6210C7C9A6CBFEC7C4EDE39D753D6780 /* NimbleXCTestHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = DF66B895C6D727BE4F8552FD97AE5A95 /* NimbleXCTestHandler.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
65BB115F57E7BCEB6908D5000AEA0A81 /* BeLogical.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9AFC7FFB8FEA77F62F272D64637A8FB5 /* BeLogical.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
6612F33BD20A641C4E57C96E7E0EBD7A /* BeLessThanOrEqual.swift in Sources */ = {isa = PBXBuildFile; fileRef = 14835DAAF55242DA738A00FDE7B902CA /* BeLessThanOrEqual.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
66797F8F43C1222974E9CF45F7A3498B /* DSL+Wait.swift in Sources */ = {isa = PBXBuildFile; fileRef = 79B481E4186B4330A34B8CAB3ADDD5CE /* DSL+Wait.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
69D887264BF5A2D300A09A92BBABB408 /* BeGreaterThanOrEqualTo.swift in Sources */ = {isa = PBXBuildFile; fileRef = A02BBD2C19B6DFC770D30CA0C0988ACF /* BeGreaterThanOrEqualTo.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
6BADC810191E9E6C2CF969E605E32CC0 /* OHHTTPStubsSwift.swift in Sources */ = {isa = PBXBuildFile; fileRef = 10E0A105CAE0755D7BFCB20BD7776519 /* OHHTTPStubsSwift.swift */; };
6C60C7651EE9D59C150ECD60919024CB /* Callsite.swift in Sources */ = {isa = PBXBuildFile; fileRef = 188CBDE7841D243BDA695CFBAF3E8B1C /* Callsite.swift */; };
6E124EEB41AEF90131A9AD5A400DABCF /* CachedTileOverlayRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = FE2C48108986978DBE2A94856EDE4A8F /* CachedTileOverlayRenderer.swift */; };
7118AE24D7AC2E5A09D851E36AD49847 /* NimbleEnvironment.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D233AB7BCB615DB1F354514E9B37463 /* NimbleEnvironment.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
7190961540266108624E854866842A81 /* NMBStringify.h in Headers */ = {isa = PBXBuildFile; fileRef = 1303F324EE68DF310ADE48F5F0C12387 /* NMBStringify.h */; settings = {ATTRIBUTES = (Public, ); }; };
77D0DC280412E93206CF9E5B3B1B8F61 /* Expectation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 62B658D205932EBCEFF050DA8AC9A467 /* Expectation.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
77F458EA3A5F23B16A155D261A0184D6 /* OHHTTPStubs+NSURLSessionConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 9538049AE29D5331F9AF8BA94B0AACF7 /* OHHTTPStubs+NSURLSessionConfiguration.m */; };
78414539BDE67644C7ED996057FD8B81 /* AssertionRecorder.swift in Sources */ = {isa = PBXBuildFile; fileRef = A3853D1BB13B6541AF95D89D4E348755 /* AssertionRecorder.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
785F83BBF7F3CC895851D4162BF97B06 /* ExpectationMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 45F9B8843CDEB47C095227DDA89D6A81 /* ExpectationMessage.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
790AE1DE0FA8CFDB01B333020842B478 /* OHHTTPStubsResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = CFCE2CC8E09A186B1A8DDF5C057919F8 /* OHHTTPStubsResponse.h */; settings = {ATTRIBUTES = (Public, ); }; };
79A9ADCAE72B5F30CE882F79CDDDD47F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 85C001BEBCF7E787137457AACE8930A0 /* Foundation.framework */; };
79B88C8C011CFBDB0562BE069224DDCD /* CwlDarwinDefinitions.swift in Sources */ = {isa = PBXBuildFile; fileRef = CB90B0E89C6CFC9AA355B9F905A086B7 /* CwlDarwinDefinitions.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
7E2E7651B51BF28CA66F8652618AD62E /* SourceLocation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 497B3A24DAFFB37735A15BB2A9936564 /* SourceLocation.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
800CE15AB7C9BC8C04C8712B0541D507 /* PostNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4011BB706A4DBECC785DF1F1F0A2A693 /* PostNotification.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
8135DFAB13E708C2AF25DF1321664F38 /* RegionDownloader.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0C6AD129F19C27D80D04F5219A57AC76 /* RegionDownloader.swift */; };
81DD05C33210EF2EBEF83D9CBA444354 /* SuiteHooks.swift in Sources */ = {isa = PBXBuildFile; fileRef = 00471A748033C8088B6CB6C3E19DD550 /* SuiteHooks.swift */; };
81F4D2C9322FCC3FEA6B4C42B2007F21 /* NSBundle+CurrentTestBundle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0E900612D9CC9915D08FE869EFD4CB8F /* NSBundle+CurrentTestBundle.swift */; };
8362B3BDF98DA5B10DE703225C64A6E7 /* ErrorUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = E2E12229B33E67A816ED0FE00EED1E80 /* ErrorUtility.swift */; };
83EFFB5E22BA60D2DC189884A57606FD /* QCKDSL.m in Sources */ = {isa = PBXBuildFile; fileRef = 4374D1FD0F1C79FA764075AD83E0E21B /* QCKDSL.m */; };
86A686DD3FD09535DC9388229C8E51A4 /* World.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7F5A4D9CF9A781F0C1374BE737A272C1 /* World.swift */; };
88E1D9F9F8FF7AE322F3261305140328 /* BeCloseTo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 37100A76CACA4A8B339AC697D7853C2E /* BeCloseTo.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
8BBB8BF1BEBBE505BDA9E63B695F23F4 /* OHHTTPStubs.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A9158A8F1BA1E0EB6BBB91DD7C9D908 /* OHHTTPStubs.m */; };
8D56DB5B0A79CF1081062ED05CEEEF24 /* BeginWith.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD6202E638807A6E6B16EFBCA03EDE01 /* BeginWith.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
8F572967B8805D18212CC67C039F0443 /* CwlBadInstructionException.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4258E26E2EE8D8352A448A2EC6DEA66D /* CwlBadInstructionException.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
8F8D2854A80356B63C5BAEB18DBBB696 /* QuickSpecBase.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A411AAA7230B0726A27FDD85A8E451E /* QuickSpecBase.m */; };
8FB7B05F443BDE9227CDB4F77C435D8B /* Equal+Tuple.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB3979B4879E7B9997D44375285B18D7 /* Equal+Tuple.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
91096B584690A4AB2ADE756319D2A474 /* World+DSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5167D2E2E18F8E61B00150BFF2AF5916 /* World+DSL.swift */; };
915EA7F48607942BA78B96B434BE3E34 /* Behavior.swift in Sources */ = {isa = PBXBuildFile; fileRef = E24EFD64509489FEF6CC3F71C8E54B93 /* Behavior.swift */; };
948E33EBB139A91A51C0126F09FA82D0 /* MatcherFunc.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7840BF572C5313B8533A66F0212EE4C7 /* MatcherFunc.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
961ADDC49C215FB5C58583C44BF6D8F8 /* String+C99ExtendedIdentifier.swift in Sources */ = {isa = PBXBuildFile; fileRef = E66083250A6B08DE6FDD2812CD927B47 /* String+C99ExtendedIdentifier.swift */; };
97C3E58BF923DDDFC24D4093D010B8A1 /* AdapterProtocols.swift in Sources */ = {isa = PBXBuildFile; fileRef = B86BAEEA20E808DE187FDA9E5B37C377 /* AdapterProtocols.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
9988BEF32ADFC3C68231BF386E1C112C /* ZoomRangeIterator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 75F0867547328F46BD18B576077B0E6D /* ZoomRangeIterator.swift */; };
9DC2ABBC9A7C2D58365B389176258B33 /* DispatchTimeInterval.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE038A9560BF49AB88699B44678C712C /* DispatchTimeInterval.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
9EAF331D7C4B9F1D3EC64CB6B118E50F /* MD5.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9A28699871192AC15F1C8BF9ABE64187 /* MD5.swift */; };
A2D0C5B280E43460625BC6EAFC8AA0FD /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 85C001BEBCF7E787137457AACE8930A0 /* Foundation.framework */; };
A300D9554F7D25A75347FE6A574A4E34 /* CwlCatchException.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3E4A3A8232770371D01F5F0E9E7BFBA0 /* CwlCatchException.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
A30F65F16395BF5436088F7F327E8817 /* CFNetwork.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CA6400621CEFA29BBBD06422083F212E /* CFNetwork.framework */; };
A5A13AA5C8708EC3C78BA26A8C1F606C /* BeginWithPrefix.swift in Sources */ = {isa = PBXBuildFile; fileRef = 521BC9C90F22CE38A970F282F9C80446 /* BeginWithPrefix.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
A69392576C2B067E7FC83D3E83FE449D /* ZoomableTile.swift in Sources */ = {isa = PBXBuildFile; fileRef = 59FCF2E860D5A623CECC0F93360F797A /* ZoomableTile.swift */; };
A71EE87B322AA4B5853F350D9507F38E /* String+DiskCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3FDA8477428B90DA5A10CA00B80C6E7C /* String+DiskCache.swift */; };
AA01E05BE1B12174011ED45CED568498 /* Predicate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 356C67BFC36876747720CEB26E017BE5 /* Predicate.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
AAB067D093E2581A2D75134FFC7856E4 /* Quick-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A62813E0F4D4C8F42EDD954E62B6AE2 /* Quick-dummy.m */; };
B3180F23F76D473C97C42FD07EBD816E /* MapKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CD4CDCB409A68461F6C1EE1BD7C80FFC /* MapKit.framework */; };
B4C8F9C94051EF2F9954FDAA9467C707 /* QuickTestSuite.swift in Sources */ = {isa = PBXBuildFile; fileRef = CBD9778DB539D712237C77CFF53816D5 /* QuickTestSuite.swift */; };
B8A111BEADE508D1C85DF8B7891628AE /* ElementsEqual.swift in Sources */ = {isa = PBXBuildFile; fileRef = 719507F0D342B2614AE4D58CCCDA2C6D /* ElementsEqual.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
BB8370B2AD5EDA60D508B0A9FA16E4D9 /* EndWith.swift in Sources */ = {isa = PBXBuildFile; fileRef = C2783F0F9F44EBD9E31B28687434E413 /* EndWith.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
BB9D9490837FED4177E323AB5DED18FD /* Compatibility.h in Headers */ = {isa = PBXBuildFile; fileRef = 108BD65B31C4E6D45EBEAC73D5EB5D76 /* Compatibility.h */; settings = {ATTRIBUTES = (Public, ); }; };
BC18B35C50FD548212268FF40053D2D9 /* Pods-MapCache_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BD493DB7E9740E359DA72AA44864828 /* Pods-MapCache_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
BDF7308C23E4F0BB1AC479C576A227F0 /* QuickSelectedTestSuiteBuilder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 104E23BFD4B5FD65460EB618C185ABAA /* QuickSelectedTestSuiteBuilder.swift */; };
BF97BC465F7FB6C389C9D9B9378674CC /* URL+FileName.swift in Sources */ = {isa = PBXBuildFile; fileRef = 14D9A3625DF1FC5B6B10AB138FC78FB2 /* URL+FileName.swift */; };
C03116C765F1A8893559730965ECBAD8 /* Nimble-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AFD026CC1DEC26BFFBBC0B04702F65E /* Nimble-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
C2FA0C88754F444F546CD14FAD4983E1 /* DSL.m in Sources */ = {isa = PBXBuildFile; fileRef = 8420458258BC4015C54D2B29BFF7C754 /* DSL.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
C47B12B159E297EF234B3AF9EB45D422 /* OHPathHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C27288E1777A3E890BE523DD1D347C0 /* OHPathHelpers.h */; settings = {ATTRIBUTES = (Public, ); }; };
C7EAFC19DEB229B96943921BD30D945E /* Match.swift in Sources */ = {isa = PBXBuildFile; fileRef = 52FBBF76E533DFE890F02A9B58017C0F /* Match.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
CA6D99B9801B4B92896343D06633560C /* ThrowError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D1503E9B471BAE82CAA0C903BD142C5 /* ThrowError.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
CB1022AFE87231C41C9D169EDC2183DE /* DiskCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 32A89F09D2724805B82C7E5E1A3971FD /* DiskCache.swift */; };
CB56A9AD610F6717133AA1110C1AAA94 /* QuickConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A80B33DA7FED3AC7553BA910690DB8E /* QuickConfiguration.m */; };
CC30B9350D7237C9A3241C7AED584D9D /* CwlCatchException.m in Sources */ = {isa = PBXBuildFile; fileRef = 74610B5A83C078A53C953453B6632AEC /* CwlCatchException.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
D0364BCD203BD1D4FC646AB28F94C06F /* NSURLRequest+HTTPBodyTesting.h in Headers */ = {isa = PBXBuildFile; fileRef = FA9B065C4CAF2C93CBBCCF12BE7AFEC7 /* NSURLRequest+HTTPBodyTesting.h */; settings = {ATTRIBUTES = (Public, ); }; };
D0BD9D341F96D9C4E32D90DD1581854A /* Stringers.swift in Sources */ = {isa = PBXBuildFile; fileRef = E74E9845F246A321E3B19F4314CA0776 /* Stringers.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
D1015C6B8BFB030120EF4519CB97E100 /* TileCoordsRegion.swift in Sources */ = {isa = PBXBuildFile; fileRef = 721A69F3E37CA517082F22015A964C46 /* TileCoordsRegion.swift */; };
D25A73F0AC8F3983007A4826A8851347 /* BeEmpty.swift in Sources */ = {isa = PBXBuildFile; fileRef = C38CD53319140733E843B1A25599DA80 /* BeEmpty.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
D4107A19475104B1EB2F9D8B9BB12749 /* Async.swift in Sources */ = {isa = PBXBuildFile; fileRef = FF6864A7985E551BC3005A491934A4F7 /* Async.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
D94D321C599043FB86D4ED10F1AFB564 /* AllPass.swift in Sources */ = {isa = PBXBuildFile; fileRef = D904BBCB5957CD7F9F7D6AB6A87C4108 /* AllPass.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
D9F430C02E1BE86A5D89AE25740870DF /* NMBObjCMatcher.swift in Sources */ = {isa = PBXBuildFile; fileRef = ADDDDFB14BC0305B4F71A7ACF3E8A53A /* NMBObjCMatcher.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
DDDD8CFFDE47FC8F058EB1D19179A89E /* QuickSpecBase.h in Headers */ = {isa = PBXBuildFile; fileRef = B17787C3F361B9BEDAEE3673D68ABABB /* QuickSpecBase.h */; settings = {ATTRIBUTES = (Project, ); }; };
E2EE2E7797C383576ACBFE4986179459 /* CwlMachBadInstructionHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = C1E34C3FFFF6244EE96DD50DF66171B7 /* CwlMachBadInstructionHandler.h */; settings = {ATTRIBUTES = (Public, ); }; };
E62F456D7E3734397A48C79381A9009A /* QuickConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = F511FE8E8CAF452D417259FE000E31FB /* QuickConfiguration.h */; settings = {ATTRIBUTES = (Public, ); }; };
E6E71178009EC496792C824BEE308527 /* Configuration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 37F26F52FA987A0BB660CCA8B4FE430B /* Configuration.swift */; };
E88D9237B2F2E20B35578136FA03A197 /* TileRange.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4A971D0DC3BC2373CAD0E1646713B548 /* TileRange.swift */; };
E8CD752EF080995577447A4761A9F923 /* BeAnInstanceOf.swift in Sources */ = {isa = PBXBuildFile; fileRef = 038F40E278B35A9BA2F1195E3AF11B94 /* BeAnInstanceOf.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
E92B6C16F730A22BF5F6DC99835B718B /* Errors.swift in Sources */ = {isa = PBXBuildFile; fileRef = 99D1FC5C79BC08499FFA68C3B3490CA2 /* Errors.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
EA22ADD506007952F9890A93DF70E0DA /* BeLessThan.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7D580A8BA854462A307C461E13A8CE93 /* BeLessThan.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
EA4EC4B3853541FDC946239C036D12C9 /* CwlCatchException.h in Headers */ = {isa = PBXBuildFile; fileRef = 196E7B1E5FCCA8BA463BAB51B2CF5065 /* CwlCatchException.h */; settings = {ATTRIBUTES = (Public, ); }; };
EAF96483848B6E2554CBB684AEDB8550 /* DSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = EBEFAD31D91294CD227A13D9C1D1D3D8 /* DSL.swift */; };
EB72FEB2149F6B09A018DFAD27BC9A42 /* OHHTTPStubsMethodSwizzling.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C3D35D44481BACD41EBE55CD5852865 /* OHHTTPStubsMethodSwizzling.m */; };
EBB4FEB07F993439AE7A9AA3EB3459CF /* URL+DiskCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 79AD12285796A825B4336C96E111373F /* URL+DiskCache.swift */; };
ECF4A70CCB729DD6CD8B814037BA7EE8 /* NMBExceptionCapture.m in Sources */ = {isa = PBXBuildFile; fileRef = 90C6C453A9A77ABBFD2BD4C39CBB9D2D /* NMBExceptionCapture.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
F095D15229D3BA53EB117E8833A05D3E /* Pods-MapCache_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E3321C36D6F54404B66845C742B0469 /* Pods-MapCache_Tests-dummy.m */; };
F1C5C1FB9845BCD95F196606849FBEAD /* SatisfyAllOf.swift in Sources */ = {isa = PBXBuildFile; fileRef = B5D22FB8513610A21360D1E02338BF9A /* SatisfyAllOf.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
F2AD738671623FFDE4277046C7784188 /* HooksPhase.swift in Sources */ = {isa = PBXBuildFile; fileRef = 095D50E538DE26EC08031596C90F63FD /* HooksPhase.swift */; };
F34340E990EDAE6103B91695F1A5F527 /* BeIdenticalTo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 71E69FB7C0F7DE5A4260714F32A682EA /* BeIdenticalTo.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
F53701A6203E5999ED720C70FA5B5BF5 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 85C001BEBCF7E787137457AACE8930A0 /* Foundation.framework */; };
F742396E2EC5CF0B283E601BAFD41425 /* RegionDownloaderDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = F861D2EB24A3C53FA694969CE5898DD9 /* RegionDownloaderDelegate.swift */; };
FA94BF94E57B46625F2F98E6D7C11E44 /* mach_excServer.c in Sources */ = {isa = PBXBuildFile; fileRef = A223787B1374FE433FD1F16506765723 /* mach_excServer.c */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
FAA820288D0B9BB1F30A40DA346B9968 /* MKTileOverlayPath+MapCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9F998B327617A16B050BE18763BA9F69 /* MKTileOverlayPath+MapCache.swift */; };
FB50301F3F0969845462C062D48A0B62 /* NMBExpectation.swift in Sources */ = {isa = PBXBuildFile; fileRef = A06395494C26D92E22C4713A7A60EC9D /* NMBExpectation.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
FC4F734925BC0EDDCD7C10AFBF93C576 /* DSL.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DD1DB477E523EBA097E15F6C4023BA5 /* DSL.h */; settings = {ATTRIBUTES = (Public, ); }; };
FC9E5E03A90FEAD4AB11759F8AC2805E /* Equal.swift in Sources */ = {isa = PBXBuildFile; fileRef = 70C51337CF026F14FA1BF8A6421907A1 /* Equal.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
FF33388220D4F6F4A6123BD4022F9154 /* Pods-MapCache_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 519F19D843259B908DDEACD20037BF62 /* Pods-MapCache_Example-dummy.m */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
406DF9EF0978B82D16A740A14A8074A9 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
proxyType = 1;
remoteGlobalIDString = A983A2D06C5B6AA3D6ABA5CCC0A16725;
remoteInfo = OHHTTPStubs;
};
BA2DE04ADF6276BDBFB93E00BD685C23 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
proxyType = 1;
remoteGlobalIDString = E3D53171C24DDE56EEF4FBEEB9C3674E;
remoteInfo = "Pods-MapCache_Example";
};
E1B3DD4C8E09D35800327BFBE8199647 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
proxyType = 1;
remoteGlobalIDString = D26394E74B3D99783EE42885C06E286A;
remoteInfo = MapCache;
};
E20E77835E58319B56E48066A2D309BF /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 6F13695E06195A78EA8A95F8C7ED0D2F;
remoteInfo = Nimble;
};
FB7A525540D4A0428C42E06CA628D8BF /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
proxyType = 1;
remoteGlobalIDString = C82891EAB7293DBEE916B21F57E8474D;
remoteInfo = Quick;
};
/* End PBXContainerItemProxy section */
/* Begin PBXFileReference section */
0027EFB32E00B5877A1BA9F57DC558F6 /* typeahead.jquery.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = typeahead.jquery.js; path = docs/docsets/MapCache.docset/Contents/Resources/Documents/js/typeahead.jquery.js; sourceTree = "<group>"; };
00471A748033C8088B6CB6C3E19DD550 /* SuiteHooks.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SuiteHooks.swift; path = Sources/Quick/Hooks/SuiteHooks.swift; sourceTree = "<group>"; };
02D03D8C615EE1D4BF8F38DC65AC32C5 /* ZoomableTile.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = ZoomableTile.html; path = docs/Structs/ZoomableTile.html; sourceTree = "<group>"; };
02ECD1EED8EB2554E1527BDD13B1E300 /* Structs.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = Structs.html; path = docs/Structs.html; sourceTree = "<group>"; };
038F40E278B35A9BA2F1195E3AF11B94 /* BeAnInstanceOf.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeAnInstanceOf.swift; path = Sources/Nimble/Matchers/BeAnInstanceOf.swift; sourceTree = "<group>"; };
05D7C1FB9885DD0C99FCB135564887AD /* Quick-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Quick-umbrella.h"; sourceTree = "<group>"; };
068C746F041696570B3A044FB9831C1C /* TileError.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = TileError.html; path = docs/docsets/MapCache.docset/Contents/Resources/Documents/Enums/TileError.html; sourceTree = "<group>"; };
0782689902F9CAED8A411853ABF05243 /* Level.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = Level.html; path = docs/Structs/Log/Level.html; sourceTree = "<group>"; };
079C5712F1D70CAA0BABF548473803E9 /* HashBase.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = HashBase.html; path = docs/Classes/HashBase.html; sourceTree = "<group>"; };
087DFFEFA5E431E1C3EEC0FEB6D022A7 /* Pods-MapCache_Example-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-MapCache_Example-Info.plist"; sourceTree = "<group>"; };
095D4F5BCD29E3C3DD5585BEB0D4DE78 /* Log.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = Log.html; path = docs/docsets/MapCache.docset/Contents/Resources/Documents/Structs/Log.html; sourceTree = "<group>"; };
095D50E538DE26EC08031596C90F63FD /* HooksPhase.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HooksPhase.swift; path = Sources/Quick/Hooks/HooksPhase.swift; sourceTree = "<group>"; };
0A9158A8F1BA1E0EB6BBB91DD7C9D908 /* OHHTTPStubs.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OHHTTPStubs.m; path = OHHTTPStubs/Sources/OHHTTPStubs.m; sourceTree = "<group>"; };
0B242CA3FD1834270BF6794628AA6EE6 /* QuickTestObservation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = QuickTestObservation.swift; path = Sources/Quick/QuickTestObservation.swift; sourceTree = "<group>"; };
0C6AD129F19C27D80D04F5219A57AC76 /* RegionDownloader.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RegionDownloader.swift; path = MapCache/Classes/RegionDownloader.swift; sourceTree = "<group>"; };
0C7A5C77C5BD4B7991DB665B2321EF71 /* MapCacheConfig.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = MapCacheConfig.html; path = docs/Structs/MapCacheConfig.html; sourceTree = "<group>"; };
0D631E9908483F9525A6B3F36F16CC61 /* Quick.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Quick.framework; sourceTree = BUILT_PRODUCTS_DIR; };
0D69FCB0F29008CC0C2B42656573A1C7 /* LoadTileMode.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = LoadTileMode.html; path = docs/docsets/MapCache.docset/Contents/Resources/Documents/Enums/LoadTileMode.html; sourceTree = "<group>"; };
0D9792A0C457F6F429A39E294A33C7E9 /* Pods-MapCache_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-MapCache_Example-frameworks.sh"; sourceTree = "<group>"; };
0E297A11D4F3C3CA8941993228FE2753 /* highlight.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = highlight.css; path = docs/css/highlight.css; sourceTree = "<group>"; };
0E3321C36D6F54404B66845C742B0469 /* Pods-MapCache_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-MapCache_Tests-dummy.m"; sourceTree = "<group>"; };
0E900612D9CC9915D08FE869EFD4CB8F /* NSBundle+CurrentTestBundle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSBundle+CurrentTestBundle.swift"; path = "Sources/Quick/NSBundle+CurrentTestBundle.swift"; sourceTree = "<group>"; };
0F3251148DCBFC8371CED5B35FC6C909 /* TileRangeError.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = TileRangeError.html; path = docs/Enums/TileRangeError.html; sourceTree = "<group>"; };
0F7C4C595806B97FD73FBC374EEB16B8 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = "<group>"; };
0FCA03C77BDFC02DA2D5345DE3A6183B /* NSMutableData.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = NSMutableData.html; path = docs/docsets/MapCache.docset/Contents/Resources/Documents/Extensions/NSMutableData.html; sourceTree = "<group>"; };
104E23BFD4B5FD65460EB618C185ABAA /* QuickSelectedTestSuiteBuilder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = QuickSelectedTestSuiteBuilder.swift; path = Sources/Quick/QuickSelectedTestSuiteBuilder.swift; sourceTree = "<group>"; };
10573CCA0C4E3DD543D75D3EBF88CD88 /* NSMutableData.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = NSMutableData.html; path = docs/Extensions/NSMutableData.html; sourceTree = "<group>"; };
108BD65B31C4E6D45EBEAC73D5EB5D76 /* Compatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Compatibility.h; path = OHHTTPStubs/Sources/Compatibility.h; sourceTree = "<group>"; };
10E0A105CAE0755D7BFCB20BD7776519 /* OHHTTPStubsSwift.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OHHTTPStubsSwift.swift; path = OHHTTPStubs/Sources/Swift/OHHTTPStubsSwift.swift; sourceTree = "<group>"; };
115747451E3769DDB80BB07379405375 /* MapCache */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = MapCache; path = MapCache.framework; sourceTree = BUILT_PRODUCTS_DIR; };
11C9E30D0FAB2692429127971DA3E86E /* MapCacheConfig.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = MapCacheConfig.html; path = docs/docsets/MapCache.docset/Contents/Resources/Documents/Structs/MapCacheConfig.html; sourceTree = "<group>"; };
1303F324EE68DF310ADE48F5F0C12387 /* NMBStringify.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NMBStringify.h; path = Sources/NimbleObjectiveC/NMBStringify.h; sourceTree = "<group>"; };
1420D9447B99B671D184715EF4867AC8 /* Typealiases.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = Typealiases.html; path = docs/Typealiases.html; sourceTree = "<group>"; };
147B1866704FC737FB7BD401F0614E42 /* TileCoords.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = TileCoords.html; path = docs/Classes/TileCoords.html; sourceTree = "<group>"; };
14835DAAF55242DA738A00FDE7B902CA /* BeLessThanOrEqual.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeLessThanOrEqual.swift; path = Sources/Nimble/Matchers/BeLessThanOrEqual.swift; sourceTree = "<group>"; };
14D9A3625DF1FC5B6B10AB138FC78FB2 /* URL+FileName.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "URL+FileName.swift"; path = "Sources/Quick/URL+FileName.swift"; sourceTree = "<group>"; };
163ACF5580C109C1EFE549ECE2ED531F /* highlight.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = highlight.css; path = docs/docsets/MapCache.docset/Contents/Resources/Documents/css/highlight.css; sourceTree = "<group>"; };
169DF6B8FE8722BD4795048414482BE3 /* ZoomRange.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = ZoomRange.html; path = docs/Structs/ZoomRange.html; sourceTree = "<group>"; };
1778275D64AF8DC267AE1EBDB276E5D5 /* OHHTTPStubs-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "OHHTTPStubs-Info.plist"; sourceTree = "<group>"; };
17E33041B314FA837A3CAEB9DF3CDE9F /* OHHTTPStubs.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = OHHTTPStubs.framework; sourceTree = BUILT_PRODUCTS_DIR; };
188CBDE7841D243BDA695CFBAF3E8B1C /* Callsite.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Callsite.swift; path = Sources/Quick/Callsite.swift; sourceTree = "<group>"; };
196E7B1E5FCCA8BA463BAB51B2CF5065 /* CwlCatchException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CwlCatchException.h; path = Carthage/Checkouts/CwlCatchException/Sources/CwlCatchExceptionSupport/include/CwlCatchException.h; sourceTree = "<group>"; };
1AE5C1033C788F3D7822839ED51C5265 /* ContainElementSatisfying.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ContainElementSatisfying.swift; path = Sources/Nimble/Matchers/ContainElementSatisfying.swift; sourceTree = "<group>"; };
1B25CC77A326D6CFB372A8106644EB58 /* TileRangeIterator.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = TileRangeIterator.html; path = docs/docsets/MapCache.docset/Contents/Resources/Documents/Structs/TileRangeIterator.html; sourceTree = "<group>"; };
1B5CEF88D3C3708634DDD8AD10AEF4FC /* Pods-MapCache_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-MapCache_Example-umbrella.h"; sourceTree = "<group>"; };
1BD493DB7E9740E359DA72AA44864828 /* Pods-MapCache_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-MapCache_Tests-umbrella.h"; sourceTree = "<group>"; };
1C3D35D44481BACD41EBE55CD5852865 /* OHHTTPStubsMethodSwizzling.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OHHTTPStubsMethodSwizzling.m; path = OHHTTPStubs/Sources/NSURLSession/OHHTTPStubsMethodSwizzling.m; sourceTree = "<group>"; };
1C8D180BA6024B0B0809AEFCC0ACEC4B /* QuickSpec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QuickSpec.h; path = Sources/QuickObjectiveC/QuickSpec.h; sourceTree = "<group>"; };
1CAD59D6DDB0ADBBC7141996539332C1 /* Quick.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Quick.h; path = Sources/QuickObjectiveC/Quick.h; sourceTree = "<group>"; };
1D25265EFDE8BBD91DDD672DDCC9FC54 /* MatcherProtocols.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MatcherProtocols.swift; path = Sources/Nimble/Matchers/MatcherProtocols.swift; sourceTree = "<group>"; };
1D949B53C8F5F77CEC4050A8EF59E0DF /* MapCache-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "MapCache-dummy.m"; sourceTree = "<group>"; };
1DC963D73D52370FB3F1067DC8B6E3F3 /* ZoomError.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = ZoomError.html; path = docs/Enums/ZoomError.html; sourceTree = "<group>"; };
1E3D9FABBEEAB0EB966BB656E2C6B8EC /* MapCacheProtocol.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = MapCacheProtocol.html; path = docs/docsets/MapCache.docset/Contents/Resources/Documents/Protocols/MapCacheProtocol.html; sourceTree = "<group>"; };
1E98592E0D8043ECD08AAD1B0D874E4E /* CachedTileOverlay.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = CachedTileOverlay.html; path = docs/Classes/CachedTileOverlay.html; sourceTree = "<group>"; };
1F901C8F3E3EA649E68D9DE38B402834 /* Pods-MapCache_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-MapCache_Tests-acknowledgements.plist"; sourceTree = "<group>"; };
201D413FAF68CFC90965B3466D982D51 /* MapCacheConfig.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MapCacheConfig.swift; path = MapCache/Classes/MapCacheConfig.swift; sourceTree = "<group>"; };
21CF616A5DAA42F367D9F3B0EE5CAF40 /* MKTileOverlayPath.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = MKTileOverlayPath.html; path = docs/docsets/MapCache.docset/Contents/Resources/Documents/Extensions/MKTileOverlayPath.html; sourceTree = "<group>"; };
224C7EBAEDB29E9EA57F695E7BEE19B7 /* allocatedDiskSizeForDirectory(at:).html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = "allocatedDiskSizeForDirectory(at:).html"; path = "docs/Extensions/FileManager/allocatedDiskSizeForDirectory(at:).html"; sourceTree = "<group>"; };
2392A8C037CE4EDF0021851066EA390F /* OHHTTPStubsResponse+JSON.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "OHHTTPStubsResponse+JSON.h"; path = "OHHTTPStubs/Sources/JSON/OHHTTPStubsResponse+JSON.h"; sourceTree = "<group>"; };
23D3BCD493B00F0CE281CD049CFA4E3C /* Pods-MapCache_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-MapCache_Example.debug.xcconfig"; sourceTree = "<group>"; };
242AE13D54C66C8BFF3AC20BA62F1E73 /* LoadTileMode.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = LoadTileMode.html; path = docs/Enums/LoadTileMode.html; sourceTree = "<group>"; };
265E140309F83C253B4CAFA6B6626115 /* BeAKindOf.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeAKindOf.swift; path = Sources/Nimble/Matchers/BeAKindOf.swift; sourceTree = "<group>"; };
27A43B882DF134E03603973C715AB8BE /* LatitudeError.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = LatitudeError.html; path = docs/docsets/MapCache.docset/Contents/Resources/Documents/Enums/LatitudeError.html; sourceTree = "<group>"; };
280AB5648E36ADAB7B4CCC18F32AC9DC /* Example.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Example.swift; path = Sources/Quick/Example.swift; sourceTree = "<group>"; };
28439AA4D2945933B55F7F4875C6C70E /* undocumented.json */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.json; name = undocumented.json; path = docs/undocumented.json; sourceTree = "<group>"; };
290CDE361EC6EE27C00F56F64EE3375D /* AssertionDispatcher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AssertionDispatcher.swift; path = Sources/Nimble/Adapters/AssertionDispatcher.swift; sourceTree = "<group>"; };
293E99D64778CE2C3B238189D1F7FA9E /* MapCache.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MapCache.swift; path = MapCache/Classes/MapCache.swift; sourceTree = "<group>"; };
2A42C4C22D3D7AD2F3F977273C4AAD85 /* MapCache-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "MapCache-Info.plist"; sourceTree = "<group>"; };
2D2C7E63F3F319386BD97281A90B3A62 /* MapCacheProtocol.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = MapCacheProtocol.html; path = docs/Protocols/MapCacheProtocol.html; sourceTree = "<group>"; };
2EC70B48F20DCCD140C7BB760640BEA7 /* Quick-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Quick-Info.plist"; sourceTree = "<group>"; };
2FE5D58E716E4C031264C924AA41A116 /* MapCache.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = MapCache.modulemap; sourceTree = "<group>"; };
3182E113ABA06EABCE9B4BEB1345052F /* Pods-MapCache_Tests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-MapCache_Tests-Info.plist"; sourceTree = "<group>"; };
329CBBE43CC34D07D4CC06145BF090AD /* OHHTTPStubs.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = OHHTTPStubs.debug.xcconfig; sourceTree = "<group>"; };
32A89F09D2724805B82C7E5E1A3971FD /* DiskCache.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = DiskCache.swift; sourceTree = "<group>"; };
32E5DC33B46C88EB33DD00B59A84F53D /* Nimble.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Nimble.release.xcconfig; sourceTree = "<group>"; };
356C67BFC36876747720CEB26E017BE5 /* Predicate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Predicate.swift; path = Sources/Nimble/Matchers/Predicate.swift; sourceTree = "<group>"; };
37100A76CACA4A8B339AC697D7853C2E /* BeCloseTo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeCloseTo.swift; path = Sources/Nimble/Matchers/BeCloseTo.swift; sourceTree = "<group>"; };
377C03F0B5DF71EFA2D9B09166434F9E /* ToSucceed.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ToSucceed.swift; path = Sources/Nimble/Matchers/ToSucceed.swift; sourceTree = "<group>"; };
37BDD79E80D8230F1DD36703F2633EB4 /* spinner.gif */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.gif; name = spinner.gif; path = docs/docsets/MapCache.docset/Contents/Resources/Documents/img/spinner.gif; sourceTree = "<group>"; };
37F26F52FA987A0BB660CCA8B4FE430B /* Configuration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Configuration.swift; path = Sources/Quick/Configuration/Configuration.swift; sourceTree = "<group>"; };
39C5A17C1D387A33887F689C62B1A83E /* OHHTTPStubs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OHHTTPStubs.h; path = OHHTTPStubs/Sources/OHHTTPStubs.h; sourceTree = "<group>"; };
39D1FD597A26F9601D452312EECF93BA /* OHHTTPStubs-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "OHHTTPStubs-umbrella.h"; sourceTree = "<group>"; };
3AAE799BE22026059E57FF1E226B8A9E /* RegionDownloaderDelegate.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = RegionDownloaderDelegate.html; path = docs/Protocols/RegionDownloaderDelegate.html; sourceTree = "<group>"; };
3AB518533AEF6717974AF0F50DA19ED9 /* TileCoords.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = TileCoords.html; path = docs/docsets/MapCache.docset/Contents/Resources/Documents/Classes/TileCoords.html; sourceTree = "<group>"; };
3BA1E6CA1599C38A2699EEA547D0B108 /* QuickSpec.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QuickSpec.m; path = Sources/QuickObjectiveC/QuickSpec.m; sourceTree = "<group>"; };
3D0EBD1CD49911A19015FE6DD20C3FFE /* lunr.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = lunr.min.js; path = docs/js/lunr.min.js; sourceTree = "<group>"; };
3DA478BE33C4773BABB89B1880C239C6 /* MapCacheProtocol.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MapCacheProtocol.swift; path = MapCache/Classes/MapCacheProtocol.swift; sourceTree = "<group>"; };
3E4A3A8232770371D01F5F0E9E7BFBA0 /* CwlCatchException.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CwlCatchException.swift; path = Carthage/Checkouts/CwlCatchException/Sources/CwlCatchException/CwlCatchException.swift; sourceTree = "<group>"; };
3EEEF021581588E7D8D629AAEBFCC445 /* CwlCatchBadInstruction.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CwlCatchBadInstruction.swift; path = Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlCatchBadInstruction.swift; sourceTree = "<group>"; };
3FDA8477428B90DA5A10CA00B80C6E7C /* String+DiskCache.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = "String+DiskCache.swift"; sourceTree = "<group>"; };
4011BB706A4DBECC785DF1F1F0A2A693 /* PostNotification.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PostNotification.swift; path = Sources/Nimble/Matchers/PostNotification.swift; sourceTree = "<group>"; };
402C821C535EBD96F3B3192E464A06A8 /* ZoomRange.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = ZoomRange.html; path = docs/docsets/MapCache.docset/Contents/Resources/Documents/Structs/ZoomRange.html; sourceTree = "<group>"; };
40ABA90AA6F9A3C9006FDCBFC7013BE8 /* Extensions.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = Extensions.html; path = docs/docsets/MapCache.docset/Contents/Resources/Documents/Extensions.html; sourceTree = "<group>"; };
40C487A2DA3AB6687086CF036D8E1EE9 /* ZoomableTile.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = ZoomableTile.html; path = docs/docsets/MapCache.docset/Contents/Resources/Documents/Structs/ZoomableTile.html; sourceTree = "<group>"; };
414EFDEA84A81A79F1B1B381C14D612D /* Pods_MapCache_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_MapCache_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; };
4165552B4E908E7F1071A3DDE18E00CD /* jazzy.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = jazzy.js; path = docs/docsets/MapCache.docset/Contents/Resources/Documents/js/jazzy.js; sourceTree = "<group>"; };
4258E26E2EE8D8352A448A2EC6DEA66D /* CwlBadInstructionException.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CwlBadInstructionException.swift; path = Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlBadInstructionException.swift; sourceTree = "<group>"; };
4374D1FD0F1C79FA764075AD83E0E21B /* QCKDSL.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QCKDSL.m; path = Sources/QuickObjectiveC/DSL/QCKDSL.m; sourceTree = "<group>"; };
43B8630C5FC22F69A6BC01633E677FA7 /* Enums.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = Enums.html; path = docs/docsets/MapCache.docset/Contents/Resources/Documents/Enums.html; sourceTree = "<group>"; };
45F9B8843CDEB47C095227DDA89D6A81 /* ExpectationMessage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExpectationMessage.swift; path = Sources/Nimble/ExpectationMessage.swift; sourceTree = "<group>"; };
4679A3022880119B7822FCFC9AC654C0 /* CwlMachBadInstructionHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CwlMachBadInstructionHandler.m; path = Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler.m; sourceTree = "<group>"; };
47242A4AE36CD33FA696B8C3BE753333 /* MapCache-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MapCache-prefix.pch"; sourceTree = "<group>"; };
482512D9FB30EFDB67E87E6E29633A2D /* mach_excServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mach_excServer.h; path = Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/mach_excServer.h; sourceTree = "<group>"; };
48FF332C1B575EE3C05F271B076AF6B3 /* Quick-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Quick-prefix.pch"; sourceTree = "<group>"; };
497B3A24DAFFB37735A15BB2A9936564 /* SourceLocation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SourceLocation.swift; path = Sources/Nimble/Utils/SourceLocation.swift; sourceTree = "<group>"; };
4A971D0DC3BC2373CAD0E1646713B548 /* TileRange.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TileRange.swift; path = MapCache/Classes/TileRange.swift; sourceTree = "<group>"; };
4B835DEC0552D5FF6D4FDA75601BEBD8 /* search.json */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.json; name = search.json; path = docs/docsets/MapCache.docset/Contents/Resources/Documents/search.json; sourceTree = "<group>"; };
4B98EDAD21361EF9DB8760647DA12CFE /* String.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = String.html; path = docs/docsets/MapCache.docset/Contents/Resources/Documents/Extensions/String.html; sourceTree = "<group>"; };
4BA781B1CCAE47E17983C6A28264506F /* Contain.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Contain.swift; path = Sources/Nimble/Matchers/Contain.swift; sourceTree = "<group>"; };
4C7EE3CBC6C192186DC6EFC9232204DB /* fileSizeForDirectory(at:).html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = "fileSizeForDirectory(at:).html"; path = "docs/Extensions/FileManager/fileSizeForDirectory(at:).html"; sourceTree = "<group>"; };
4CD4BC84DF30829CC8ABCA1B5DBDE927 /* Nimble-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Nimble-Info.plist"; sourceTree = "<group>"; };
4CE3416037004F3E622A56F8704D7F83 /* CachedTileOverlayRenderer.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = CachedTileOverlayRenderer.html; path = docs/docsets/MapCache.docset/Contents/Resources/Documents/Classes/CachedTileOverlayRenderer.html; sourceTree = "<group>"; };
4E19C48B0DB17CB623A00E85DBA1AB1B /* HaveCount.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HaveCount.swift; path = Sources/Nimble/Matchers/HaveCount.swift; sourceTree = "<group>"; };
4E1D1AF7420347BEA48836B2C951055F /* Enums.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = Enums.html; path = docs/Enums.html; sourceTree = "<group>"; };
4EF759EA3871C3DADE2F8FB670596585 /* ThrowAssertion.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ThrowAssertion.swift; path = Sources/Nimble/Matchers/ThrowAssertion.swift; sourceTree = "<group>"; };
4F305583AAD295C1B2EB3B8E414B10EB /* TileError.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = TileError.html; path = docs/Enums/TileError.html; sourceTree = "<group>"; };
5167D2E2E18F8E61B00150BFF2AF5916 /* World+DSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "World+DSL.swift"; path = "Sources/Quick/DSL/World+DSL.swift"; sourceTree = "<group>"; };
519F19D843259B908DDEACD20037BF62 /* Pods-MapCache_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-MapCache_Example-dummy.m"; sourceTree = "<group>"; };
521BC9C90F22CE38A970F282F9C80446 /* BeginWithPrefix.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeginWithPrefix.swift; path = Sources/Nimble/Matchers/BeginWithPrefix.swift; sourceTree = "<group>"; };
52FBBF76E533DFE890F02A9B58017C0F /* Match.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Match.swift; path = Sources/Nimble/Matchers/Match.swift; sourceTree = "<group>"; };
5449C3156A7936DFF326CDE593F807ED /* ExampleHooks.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExampleHooks.swift; path = Sources/Quick/Hooks/ExampleHooks.swift; sourceTree = "<group>"; };
56574B418B15EF2AE2DB5CB4A18A5076 /* Functions.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = Functions.html; path = docs/docsets/MapCache.docset/Contents/Resources/Documents/Functions.html; sourceTree = "<group>"; };
56C290C6C3615247A0BC5E117F823CA7 /* OHHTTPStubsResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OHHTTPStubsResponse.m; path = OHHTTPStubs/Sources/OHHTTPStubsResponse.m; sourceTree = "<group>"; };
570DD46A5646C5ADA575D84B13512F09 /* QCKDSL.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QCKDSL.h; path = Sources/QuickObjectiveC/DSL/QCKDSL.h; sourceTree = "<group>"; };
57EA2CBE3202F62E1C0E8E79BDB49FFB /* Extensions.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = Extensions.html; path = docs/Extensions.html; sourceTree = "<group>"; };
59FCF2E860D5A623CECC0F93360F797A /* ZoomableTile.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZoomableTile.swift; path = MapCache/Classes/ZoomableTile.swift; sourceTree = "<group>"; };
5A1D861E4ACD8B4A82DA3039A92E26F8 /* Nimble-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Nimble-prefix.pch"; sourceTree = "<group>"; };
5B45696F5CA6EF2FB70EB3EFAAF4C518 /* LongitudeError.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = LongitudeError.html; path = docs/docsets/MapCache.docset/Contents/Resources/Documents/Enums/LongitudeError.html; sourceTree = "<group>"; };
5BE6D466A7620298C619FA3E3C1BCD99 /* Structs.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = Structs.html; path = docs/docsets/MapCache.docset/Contents/Resources/Documents/Structs.html; sourceTree = "<group>"; };
5E20685EE2BFD6912BE103B4F09F16D5 /* QuickConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = QuickConfiguration.swift; path = Sources/Quick/Configuration/QuickConfiguration.swift; sourceTree = "<group>"; };
5EE081A80179A0557EC5BED8DA543C27 /* Int.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = Int.html; path = docs/docsets/MapCache.docset/Contents/Resources/Documents/Extensions/Int.html; sourceTree = "<group>"; };
62B658D205932EBCEFF050DA8AC9A467 /* Expectation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Expectation.swift; path = Sources/Nimble/Expectation.swift; sourceTree = "<group>"; };
6313FE95560ED5D9CF91CF162F53F7D9 /* search.json */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.json; name = search.json; path = docs/search.json; sourceTree = "<group>"; };
64D31DDF3262537B626E5CEDE49B1BE8 /* NMBExceptionCapture.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NMBExceptionCapture.h; path = Sources/NimbleObjectiveC/NMBExceptionCapture.h; sourceTree = "<group>"; };
6828822EDAB00DBD4714DF0772CD1509 /* BytesSequence.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = BytesSequence.html; path = docs/Structs/BytesSequence.html; sourceTree = "<group>"; };
686309A2CE3FE676BC46D15A4B0B19FA /* String.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = String.html; path = docs/Extensions/String.html; sourceTree = "<group>"; };
68980DEA69BFDB5FA142BEE4B3BE1AE5 /* ZoomRangeIterator.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = ZoomRangeIterator.html; path = docs/docsets/MapCache.docset/Contents/Resources/Documents/Structs/ZoomRangeIterator.html; sourceTree = "<group>"; };
68DEE32099782F214BAB5BEAE61CA2DA /* NMBStringify.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NMBStringify.m; path = Sources/NimbleObjectiveC/NMBStringify.m; sourceTree = "<group>"; };
6A80B33DA7FED3AC7553BA910690DB8E /* QuickConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QuickConfiguration.m; path = Sources/QuickObjectiveC/Configuration/QuickConfiguration.m; sourceTree = "<group>"; };
6B53B14BDD21A8D336C468BFA7B3B691 /* Nimble.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Nimble.debug.xcconfig; sourceTree = "<group>"; };
6D233AB7BCB615DB1F354514E9B37463 /* NimbleEnvironment.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NimbleEnvironment.swift; path = Sources/Nimble/Adapters/NimbleEnvironment.swift; sourceTree = "<group>"; };
6D721E9818FD8D436E09B1E61745A58B /* spinner.gif */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.gif; name = spinner.gif; path = docs/img/spinner.gif; sourceTree = "<group>"; };
6DD1DB477E523EBA097E15F6C4023BA5 /* DSL.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DSL.h; path = Sources/NimbleObjectiveC/DSL.h; sourceTree = "<group>"; };
6E1913DEDAC5D9F029914D34535DA2F4 /* Pods-MapCache_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-MapCache_Tests-acknowledgements.markdown"; sourceTree = "<group>"; };
6E40D143BB6463B43F8A9E50C99E9E81 /* OHHTTPStubs.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = OHHTTPStubs.modulemap; sourceTree = "<group>"; };
6E7D0FF3DC10859D4B568792DB60559D /* OHPathHelpers.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OHPathHelpers.m; path = OHHTTPStubs/Sources/OHPathHelpers/OHPathHelpers.m; sourceTree = "<group>"; };
70B588C2958C54156E8F401DCD24C8DC /* FileManager.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = FileManager.html; path = docs/docsets/MapCache.docset/Contents/Resources/Documents/Extensions/FileManager.html; sourceTree = "<group>"; };
70C51337CF026F14FA1BF8A6421907A1 /* Equal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Equal.swift; path = Sources/Nimble/Matchers/Equal.swift; sourceTree = "<group>"; };
717F963B65CF6D0713EBED481620D739 /* CachedTileOverlay.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = CachedTileOverlay.html; path = docs/docsets/MapCache.docset/Contents/Resources/Documents/Classes/CachedTileOverlay.html; sourceTree = "<group>"; };
719507F0D342B2614AE4D58CCCDA2C6D /* ElementsEqual.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ElementsEqual.swift; path = Sources/Nimble/Matchers/ElementsEqual.swift; sourceTree = "<group>"; };
71E69FB7C0F7DE5A4260714F32A682EA /* BeIdenticalTo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeIdenticalTo.swift; path = Sources/Nimble/Matchers/BeIdenticalTo.swift; sourceTree = "<group>"; };
721A69F3E37CA517082F22015A964C46 /* TileCoordsRegion.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TileCoordsRegion.swift; path = MapCache/Classes/TileCoordsRegion.swift; sourceTree = "<group>"; };
7377FF298025A20F6180FD00E3492530 /* MapCache.tgz */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file; name = MapCache.tgz; path = docs/docsets/MapCache.tgz; sourceTree = "<group>"; };
74610B5A83C078A53C953453B6632AEC /* CwlCatchException.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CwlCatchException.m; path = Carthage/Checkouts/CwlCatchException/Sources/CwlCatchExceptionSupport/CwlCatchException.m; sourceTree = "<group>"; };
75BC5DCDAA9DA816051EC50473CE8C17 /* Pods-MapCache_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-MapCache_Tests.release.xcconfig"; sourceTree = "<group>"; };
75F0867547328F46BD18B576077B0E6D /* ZoomRangeIterator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZoomRangeIterator.swift; path = MapCache/Classes/ZoomRangeIterator.swift; sourceTree = "<group>"; };
76802D35217F55336D4DFE387458C9FA /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = index.html; path = docs/docsets/MapCache.docset/Contents/Resources/Documents/index.html; sourceTree = "<group>"; };
76F8F1F4BCCAD5E4094A3BA5A5B182B1 /* URL.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = URL.html; path = docs/Extensions/URL.html; sourceTree = "<group>"; };
77080DD1E9B97D97F44A76632ABD790E /* Quick.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Quick.debug.xcconfig; sourceTree = "<group>"; };
77F6824352A5EA1AD6627ECC52A5833A /* FileManager+DiskCache.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = "FileManager+DiskCache.swift"; sourceTree = "<group>"; };
7840BF572C5313B8533A66F0212EE4C7 /* MatcherFunc.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MatcherFunc.swift; path = Sources/Nimble/Matchers/MatcherFunc.swift; sourceTree = "<group>"; };
791021CEDA7213ECA679AFD548B4B25C /* CachedTileOverlayZoomRenderer.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = CachedTileOverlayZoomRenderer.html; path = docs/docsets/MapCache.docset/Contents/Resources/Documents/Classes/CachedTileOverlayZoomRenderer.html; sourceTree = "<group>"; };
79662D907EF598C7C3018B9CFDC45312 /* Pods-MapCache_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-MapCache_Example-acknowledgements.plist"; sourceTree = "<group>"; };
798DE71500576FC9DCE2B85641FCC3BC /* jquery.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = jquery.min.js; path = docs/js/jquery.min.js; sourceTree = "<group>"; };
79AD12285796A825B4336C96E111373F /* URL+DiskCache.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = "URL+DiskCache.swift"; sourceTree = "<group>"; };
79B481E4186B4330A34B8CAB3ADDD5CE /* DSL+Wait.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DSL+Wait.swift"; path = "Sources/Nimble/DSL+Wait.swift"; sourceTree = "<group>"; };
79EFB418B58B624EA953AB19727B20CA /* undocumented.json */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.json; name = undocumented.json; path = docs/docsets/MapCache.docset/Contents/Resources/Documents/undocumented.json; sourceTree = "<group>"; };
7A0D21C0222C7AA21ED1DF6C73F1B920 /* MKMapView+MapCache.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "MKMapView+MapCache.swift"; path = "MapCache/Classes/MKMapView+MapCache.swift"; sourceTree = "<group>"; };
7A411AAA7230B0726A27FDD85A8E451E /* QuickSpecBase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QuickSpecBase.m; path = Sources/QuickObjCRuntime/QuickSpecBase.m; sourceTree = "<group>"; };
7A62813E0F4D4C8F42EDD954E62B6AE2 /* Quick-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Quick-dummy.m"; sourceTree = "<group>"; };
7A7FFC0191629B7C1E50034ECD7ABAC0 /* MKMapView.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = MKMapView.html; path = docs/Extensions/MKMapView.html; sourceTree = "<group>"; };
7B58D9612DA8DF07898D28FF34CA9B8B /* ZoomError.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = ZoomError.html; path = docs/docsets/MapCache.docset/Contents/Resources/Documents/Enums/ZoomError.html; sourceTree = "<group>"; };
7CFA7E82168D1175FAC43318F3218135 /* typeahead.jquery.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = typeahead.jquery.js; path = docs/js/typeahead.jquery.js; sourceTree = "<group>"; };
7D580A8BA854462A307C461E13A8CE93 /* BeLessThan.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeLessThan.swift; path = Sources/Nimble/Matchers/BeLessThan.swift; sourceTree = "<group>"; };
7F5A4D9CF9A781F0C1374BE737A272C1 /* World.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = World.swift; path = Sources/Quick/World.swift; sourceTree = "<group>"; };
7F736B2661A19E1FEF85AE5478657DEA /* dash.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = dash.png; path = docs/img/dash.png; sourceTree = "<group>"; };
806F9DD793AB7808F41C8455231DDC29 /* TileCoordsRegion.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = TileCoordsRegion.html; path = docs/docsets/MapCache.docset/Contents/Resources/Documents/Classes/TileCoordsRegion.html; sourceTree = "<group>"; };
827085290F2D1E97FABD330F77198FC2 /* LoadTileMode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LoadTileMode.swift; path = MapCache/Classes/LoadTileMode.swift; sourceTree = "<group>"; };
82CEF61084A1CBFF1A42F8EFBCD82E74 /* BytesSequence.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = BytesSequence.html; path = docs/docsets/MapCache.docset/Contents/Resources/Documents/Structs/BytesSequence.html; sourceTree = "<group>"; };
83DAC7CDC185221500D66153876755D4 /* NSURLRequest+HTTPBodyTesting.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSURLRequest+HTTPBodyTesting.m"; path = "OHHTTPStubs/Sources/NSURLSession/NSURLRequest+HTTPBodyTesting.m"; sourceTree = "<group>"; };
8420458258BC4015C54D2B29BFF7C754 /* DSL.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DSL.m; path = Sources/NimbleObjectiveC/DSL.m; sourceTree = "<group>"; };
85C001BEBCF7E787137457AACE8930A0 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; };
876777D03A0CB62426534C16CA0C789D /* ExampleMetadata.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExampleMetadata.swift; path = Sources/Quick/ExampleMetadata.swift; sourceTree = "<group>"; };
8828460C0663892385C2368BC6BD3085 /* Pods-MapCache_Tests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-MapCache_Tests-frameworks.sh"; sourceTree = "<group>"; };
8939410024A12EA5F7B0D6C9EF5DE9C9 /* XCTestObservationCenter+Register.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "XCTestObservationCenter+Register.m"; path = "Sources/NimbleObjectiveC/XCTestObservationCenter+Register.m"; sourceTree = "<group>"; };
8A95F31DBDACAE5DFFBC36B716DA46C2 /* carat.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = carat.png; path = docs/img/carat.png; sourceTree = "<group>"; };
8BAE11307305D971F3C32360B2D1E151 /* MKMapView.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = MKMapView.html; path = docs/docsets/MapCache.docset/Contents/Resources/Documents/Extensions/MKMapView.html; sourceTree = "<group>"; };
8C27288E1777A3E890BE523DD1D347C0 /* OHPathHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OHPathHelpers.h; path = OHHTTPStubs/Sources/OHPathHelpers/OHPathHelpers.h; sourceTree = "<group>"; };
8C6E9A24AB92490E03C94616F3BD8DCC /* OHHTTPStubsResponse+JSON.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "OHHTTPStubsResponse+JSON.m"; path = "OHHTTPStubs/Sources/JSON/OHHTTPStubsResponse+JSON.m"; sourceTree = "<group>"; };
8CC3ABC24B4E736C7C1778C4F93D9754 /* RegionDownloader.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = RegionDownloader.html; path = docs/docsets/MapCache.docset/Contents/Resources/Documents/Classes/RegionDownloader.html; sourceTree = "<group>"; };
8D1503E9B471BAE82CAA0C903BD142C5 /* ThrowError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ThrowError.swift; path = Sources/Nimble/Matchers/ThrowError.swift; sourceTree = "<group>"; };
8DCF2F6768FFC029E85B4F38DA023582 /* BeGreaterThan.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeGreaterThan.swift; path = Sources/Nimble/Matchers/BeGreaterThan.swift; sourceTree = "<group>"; };
8EAE4044AAA493DD77987479B9348526 /* ZoomRange.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZoomRange.swift; path = MapCache/Classes/ZoomRange.swift; sourceTree = "<group>"; };
8EFFDEC24784CD6F30995D093434FB33 /* DSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DSL.swift; path = Sources/Nimble/DSL.swift; sourceTree = "<group>"; };
8F8DD41230A818CC8561138EC00F2DF2 /* FileManager.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = FileManager.html; path = docs/Extensions/FileManager.html; sourceTree = "<group>"; };
90C6C453A9A77ABBFD2BD4C39CBB9D2D /* NMBExceptionCapture.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NMBExceptionCapture.m; path = Sources/NimbleObjectiveC/NMBExceptionCapture.m; sourceTree = "<group>"; };
922D045271477912FAD0F73EFA535E12 /* badge.svg */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = badge.svg; path = docs/docsets/MapCache.docset/Contents/Resources/Documents/badge.svg; sourceTree = "<group>"; };
9301985ECAE8672186B285291406DC7A /* OHHTTPStubs.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = OHHTTPStubs.release.xcconfig; sourceTree = "<group>"; };
93493184F746411209F83A00CD5BD5F5 /* TileCoordsRegion.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = TileCoordsRegion.html; path = docs/Classes/TileCoordsRegion.html; sourceTree = "<group>"; };
93E7E151A1A6F0E95D86558F966BA5B1 /* Log.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = Log.html; path = docs/Structs/Log.html; sourceTree = "<group>"; };
94B83FA6C2F6B4812E50A89FFB14ECB7 /* MD5.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = MD5.html; path = docs/Classes/MD5.html; sourceTree = "<group>"; };
9538049AE29D5331F9AF8BA94B0AACF7 /* OHHTTPStubs+NSURLSessionConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "OHHTTPStubs+NSURLSessionConfiguration.m"; path = "OHHTTPStubs/Sources/NSURLSession/OHHTTPStubs+NSURLSessionConfiguration.m"; sourceTree = "<group>"; };
9583DCE961D42D5696EA6B811BBED0B9 /* TileRangeIterator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TileRangeIterator.swift; path = MapCache/Classes/TileRangeIterator.swift; sourceTree = "<group>"; };
98CB9B9421D5CE735174ADBA22419059 /* URL.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = URL.html; path = docs/docsets/MapCache.docset/Contents/Resources/Documents/Extensions/URL.html; sourceTree = "<group>"; };
99D1FC5C79BC08499FFA68C3B3490CA2 /* Errors.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Errors.swift; path = Sources/Nimble/Utils/Errors.swift; sourceTree = "<group>"; };
9A28699871192AC15F1C8BF9ABE64187 /* MD5.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = MD5.swift; sourceTree = "<group>"; };
9A4D0207B772C1208E67879D598B501D /* badge.svg */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = badge.svg; path = docs/badge.svg; sourceTree = "<group>"; };
9AFC7FFB8FEA77F62F272D64637A8FB5 /* BeLogical.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeLogical.swift; path = Sources/Nimble/Matchers/BeLogical.swift; sourceTree = "<group>"; };
9AFD026CC1DEC26BFFBBC0B04702F65E /* Nimble-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Nimble-umbrella.h"; sourceTree = "<group>"; };
9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
9E0C2DED3E83AA59D978BEEB29D37317 /* TileRange.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = TileRange.html; path = docs/docsets/MapCache.docset/Contents/Resources/Documents/Structs/TileRange.html; sourceTree = "<group>"; };
9E57833FF8C066967F3E3F1A4FFD49A1 /* MKZoomScale.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = MKZoomScale.html; path = docs/Extensions/MKZoomScale.html; sourceTree = "<group>"; };
9F9827FDAD8E57368B491D592069CD73 /* DiskCache.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = DiskCache.html; path = docs/docsets/MapCache.docset/Contents/Resources/Documents/Classes/DiskCache.html; sourceTree = "<group>"; };
9F998B327617A16B050BE18763BA9F69 /* MKTileOverlayPath+MapCache.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "MKTileOverlayPath+MapCache.swift"; path = "MapCache/Classes/MKTileOverlayPath+MapCache.swift"; sourceTree = "<group>"; };
9FFC4C8AB45B0AC85F73C31AEFAF4CF6 /* jazzy.search.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = jazzy.search.js; path = docs/docsets/MapCache.docset/Contents/Resources/Documents/js/jazzy.search.js; sourceTree = "<group>"; };
A02BBD2C19B6DFC770D30CA0C0988ACF /* BeGreaterThanOrEqualTo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeGreaterThanOrEqualTo.swift; path = Sources/Nimble/Matchers/BeGreaterThanOrEqualTo.swift; sourceTree = "<group>"; };
A03E38A8214776632EEFE64956B4C098 /* dash.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = dash.png; path = docs/docsets/MapCache.docset/Contents/Resources/Documents/img/dash.png; sourceTree = "<group>"; };
A06395494C26D92E22C4713A7A60EC9D /* NMBExpectation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NMBExpectation.swift; path = Sources/Nimble/Adapters/NMBExpectation.swift; sourceTree = "<group>"; };
A223787B1374FE433FD1F16506765723 /* mach_excServer.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = mach_excServer.c; path = Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/mach_excServer.c; sourceTree = "<group>"; };
A37985E6BC13EB6F280EFC4445367A39 /* CachedTileOverlayZoomRenderer.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = CachedTileOverlayZoomRenderer.html; path = docs/Classes/CachedTileOverlayZoomRenderer.html; sourceTree = "<group>"; };
A3853D1BB13B6541AF95D89D4E348755 /* AssertionRecorder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AssertionRecorder.swift; path = Sources/Nimble/Adapters/AssertionRecorder.swift; sourceTree = "<group>"; };
A3C1E7D4CED9197662C01EC093CCCA3E /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = index.html; path = docs/index.html; sourceTree = "<group>"; };
A45F40A639F932A5B509547374FB3FC6 /* Pods-MapCache_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-MapCache_Tests.debug.xcconfig"; sourceTree = "<group>"; };
A72D0B0A00276AE38A37E5117E243E7F /* gh.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = gh.png; path = docs/docsets/MapCache.docset/Contents/Resources/Documents/img/gh.png; sourceTree = "<group>"; };
A76EB9DE29A7F13FB25AB2DA4C811C33 /* TileRange.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = TileRange.html; path = docs/Structs/TileRange.html; sourceTree = "<group>"; };
A7C2815866298748AE706B7098B86E0F /* SatisfyAnyOf.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SatisfyAnyOf.swift; path = Sources/Nimble/Matchers/SatisfyAnyOf.swift; sourceTree = "<group>"; };
A7DB1073344EA42B7A74983A25D9815F /* lunr.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = lunr.min.js; path = docs/docsets/MapCache.docset/Contents/Resources/Documents/js/lunr.min.js; sourceTree = "<group>"; };
A7FCF85A3E02EF292E95EB6F3297E528 /* RaisesException.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RaisesException.swift; path = Sources/Nimble/Matchers/RaisesException.swift; sourceTree = "<group>"; };
AA7B5966AF29542C25D82022323827AD /* Expression.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Expression.swift; path = Sources/Nimble/Expression.swift; sourceTree = "<group>"; };
AAEC7F2D15B9463F36D337745A5B59D9 /* Closures.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Closures.swift; path = Sources/Quick/Hooks/Closures.swift; sourceTree = "<group>"; };
AB85237B39AC47FBE20B24767D4F4FC1 /* fileSizeForDirectory(at:).html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = "fileSizeForDirectory(at:).html"; path = "docs/docsets/MapCache.docset/Contents/Resources/Documents/Extensions/FileManager/fileSizeForDirectory(at:).html"; sourceTree = "<group>"; };
ADDDDFB14BC0305B4F71A7ACF3E8A53A /* NMBObjCMatcher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NMBObjCMatcher.swift; path = Sources/Nimble/Adapters/NMBObjCMatcher.swift; sourceTree = "<group>"; };
AE3D2363136405066B92208E4E77BCA8 /* Typealiases.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = Typealiases.html; path = docs/docsets/MapCache.docset/Contents/Resources/Documents/Typealiases.html; sourceTree = "<group>"; };
AF2AE314DE2D1607A1FC3F1B6E528EC8 /* Quick.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Quick.modulemap; sourceTree = "<group>"; };
B17787C3F361B9BEDAEE3673D68ABABB /* QuickSpecBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QuickSpecBase.h; path = Sources/QuickObjCRuntime/include/QuickSpecBase.h; sourceTree = "<group>"; };
B2F6A61BE6A61EC88A7D06ADA00F40A4 /* TileRangeError.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = TileRangeError.html; path = docs/docsets/MapCache.docset/Contents/Resources/Documents/Enums/TileRangeError.html; sourceTree = "<group>"; };
B461AC39DBEF85D4F8F1AB959B435654 /* FailureMessage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FailureMessage.swift; path = Sources/Nimble/FailureMessage.swift; sourceTree = "<group>"; };
B5D22FB8513610A21360D1E02338BF9A /* SatisfyAllOf.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SatisfyAllOf.swift; path = Sources/Nimble/Matchers/SatisfyAllOf.swift; sourceTree = "<group>"; };
B7584D63B193C8A62D89611528DF4DC9 /* CachedTileOverlayRenderer.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = CachedTileOverlayRenderer.html; path = docs/Classes/CachedTileOverlayRenderer.html; sourceTree = "<group>"; };
B7B5F0D921920D2E76BD78A5D27BA4EF /* Log.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Log.swift; path = MapCache/Classes/Log.swift; sourceTree = "<group>"; };
B7EB149690CA9BF0EFEC86E189FDD4FB /* jazzy.search.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = jazzy.search.js; path = docs/js/jazzy.search.js; sourceTree = "<group>"; };
B86BAEEA20E808DE187FDA9E5B37C377 /* AdapterProtocols.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AdapterProtocols.swift; path = Sources/Nimble/Adapters/AdapterProtocols.swift; sourceTree = "<group>"; };
B941B8D3A118FF58FD84EE12104E843C /* MKZoomScale.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = MKZoomScale.html; path = docs/docsets/MapCache.docset/Contents/Resources/Documents/Extensions/MKZoomScale.html; sourceTree = "<group>"; };
B96A5693FC4E34A549D99D3CB6159651 /* jazzy.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = jazzy.css; path = docs/docsets/MapCache.docset/Contents/Resources/Documents/css/jazzy.css; sourceTree = "<group>"; };
B96D3BA3727E9EF1528CBF50332EA13D /* MapCache.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = MapCache.html; path = docs/docsets/MapCache.docset/Contents/Resources/Documents/Classes/MapCache.html; sourceTree = "<group>"; };
BAE263041362D074978BB3B577DF0A05 /* Nimble.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Nimble.framework; sourceTree = BUILT_PRODUCTS_DIR; };
BBFF9E0C26608D07B75303A92097698B /* RegionDownloaderDelegate.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = RegionDownloaderDelegate.html; path = docs/docsets/MapCache.docset/Contents/Resources/Documents/Protocols/RegionDownloaderDelegate.html; sourceTree = "<group>"; };
BC4D36579B8D8C0DC324262EF68C8F81 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = Info.plist; path = docs/docsets/MapCache.docset/Contents/Info.plist; sourceTree = "<group>"; };
BC7FFECB0CDB160946DB8BE55512EA9A /* BeVoid.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeVoid.swift; path = Sources/Nimble/Matchers/BeVoid.swift; sourceTree = "<group>"; };
BDB51DB4AFD2DAC1206FF01880A09FFA /* allocatedDiskSizeForDirectory(at:).html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = "allocatedDiskSizeForDirectory(at:).html"; path = "docs/docsets/MapCache.docset/Contents/Resources/Documents/Extensions/FileManager/allocatedDiskSizeForDirectory(at:).html"; sourceTree = "<group>"; };
BE038A9560BF49AB88699B44678C712C /* DispatchTimeInterval.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DispatchTimeInterval.swift; path = Sources/Nimble/Utils/DispatchTimeInterval.swift; sourceTree = "<group>"; };
BE2EA9E733489EB63B220AF86EA6D02A /* Nimble.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Nimble.h; path = Sources/Nimble/Nimble.h; sourceTree = "<group>"; };
BFA702638A02D12A14AC0BBD0828D6FB /* Pods-MapCache_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-MapCache_Example-acknowledgements.markdown"; sourceTree = "<group>"; };
C141CDBC01E04D18AD166A1D9A92553D /* Nimble.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Nimble.modulemap; sourceTree = "<group>"; };
C1D8C18AA77C0D9E6F6BCAFAC9303724 /* OHHTTPStubs-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "OHHTTPStubs-dummy.m"; sourceTree = "<group>"; };
C1E34C3FFFF6244EE96DD50DF66171B7 /* CwlMachBadInstructionHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CwlMachBadInstructionHandler.h; path = Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/include/CwlMachBadInstructionHandler.h; sourceTree = "<group>"; };
C2783F0F9F44EBD9E31B28687434E413 /* EndWith.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EndWith.swift; path = Sources/Nimble/Matchers/EndWith.swift; sourceTree = "<group>"; };
C2FBBDB5297F029688623E22D32F19D1 /* MapCache.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MapCache.debug.xcconfig; sourceTree = "<group>"; };
C3398B72D03E4964AAD7CA934EE2BB90 /* Nimble-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Nimble-dummy.m"; sourceTree = "<group>"; };
C38CD53319140733E843B1A25599DA80 /* BeEmpty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeEmpty.swift; path = Sources/Nimble/Matchers/BeEmpty.swift; sourceTree = "<group>"; };
C3FE61E1C35C6A5337401155C559D338 /* MKTileOverlayPath.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = MKTileOverlayPath.html; path = docs/Extensions/MKTileOverlayPath.html; sourceTree = "<group>"; };
C4A7207F1A784EC68715B54529DDC7CD /* carat.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = carat.png; path = docs/docsets/MapCache.docset/Contents/Resources/Documents/img/carat.png; sourceTree = "<group>"; };
C55C5081B00AFEAB28727F66FF92EA25 /* Classes.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = Classes.html; path = docs/docsets/MapCache.docset/Contents/Resources/Documents/Classes.html; sourceTree = "<group>"; };
C58E18764807E7D70092760ED1AC3BB6 /* MD5.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = MD5.html; path = docs/docsets/MapCache.docset/Contents/Resources/Documents/Classes/MD5.html; sourceTree = "<group>"; };
C9BC5CC27304C0F08B64684A729CCA39 /* TileCoords.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TileCoords.swift; path = MapCache/Classes/TileCoords.swift; sourceTree = "<group>"; };
CA6400621CEFA29BBBD06422083F212E /* CFNetwork.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CFNetwork.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/CFNetwork.framework; sourceTree = DEVELOPER_DIR; };
CB90B0E89C6CFC9AA355B9F905A086B7 /* CwlDarwinDefinitions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CwlDarwinDefinitions.swift; path = Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlDarwinDefinitions.swift; sourceTree = "<group>"; };
CBD9778DB539D712237C77CFF53816D5 /* QuickTestSuite.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = QuickTestSuite.swift; path = Sources/Quick/QuickTestSuite.swift; sourceTree = "<group>"; };
CD3B24DAE1154E464EE5276EB32E237A /* MKZoomScale+MapCache.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "MKZoomScale+MapCache.swift"; path = "MapCache/Classes/MKZoomScale+MapCache.swift"; sourceTree = "<group>"; };
CD4CDCB409A68461F6C1EE1BD7C80FFC /* MapKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MapKit.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/MapKit.framework; sourceTree = DEVELOPER_DIR; };
CD6202E638807A6E6B16EFBCA03EDE01 /* BeginWith.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeginWith.swift; path = Sources/Nimble/Matchers/BeginWith.swift; sourceTree = "<group>"; };
CED13538583D337B7AEBA7964D24830D /* jazzy.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = jazzy.js; path = docs/js/jazzy.js; sourceTree = "<group>"; };
CFCE2CC8E09A186B1A8DDF5C057919F8 /* OHHTTPStubsResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OHHTTPStubsResponse.h; path = OHHTTPStubs/Sources/OHHTTPStubsResponse.h; sourceTree = "<group>"; };
D0D88CEF514F88C968D3928F9D80D16A /* Protocols.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = Protocols.html; path = docs/docsets/MapCache.docset/Contents/Resources/Documents/Protocols.html; sourceTree = "<group>"; };
D1049A402DF50FE078C082DE2A04C740 /* MapCache-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MapCache-umbrella.h"; sourceTree = "<group>"; };
D2BFA0D15B2CDF3236A5DDBA7340AD6A /* Quick.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Quick.release.xcconfig; sourceTree = "<group>"; };
D3C4D4DC9E50B4FBA64B3F0B9AEA26D5 /* Pods-MapCache_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-MapCache_Example.release.xcconfig"; sourceTree = "<group>"; };
D3E142DDFFA65B2FF36F6DEAAD978ECD /* MatchError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MatchError.swift; path = Sources/Nimble/Matchers/MatchError.swift; sourceTree = "<group>"; };
D410D2895F8C5D5B92FB85E85F9BFA39 /* Protocols.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = Protocols.html; path = docs/Protocols.html; sourceTree = "<group>"; };
D666AE46160C89B3E68F33D59D5B1A85 /* MapCache.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = MapCache.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
D7F0B149DA948F6D187841464768C5D3 /* ExampleGroup.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExampleGroup.swift; path = Sources/Quick/ExampleGroup.swift; sourceTree = "<group>"; };
D904BBCB5957CD7F9F7D6AB6A87C4108 /* AllPass.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllPass.swift; path = Sources/Nimble/Matchers/AllPass.swift; sourceTree = "<group>"; };
D969F7AA89F7A16F77AE2737573BB0A5 /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; };
D9DA4EB3203E56F070FC87E511DB1869 /* Functions.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = Functions.html; path = docs/Functions.html; sourceTree = "<group>"; };
DB2D5BC595539D17E279F80BB02E6EB2 /* LatitudeError.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = LatitudeError.html; path = docs/Enums/LatitudeError.html; sourceTree = "<group>"; };
DB3979B4879E7B9997D44375285B18D7 /* Equal+Tuple.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Equal+Tuple.swift"; path = "Sources/Nimble/Matchers/Equal+Tuple.swift"; sourceTree = "<group>"; };
DB3A352B0013CE61E90CB01733B36E5C /* Int.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = Int.html; path = docs/Extensions/Int.html; sourceTree = "<group>"; };
DD23952448CF2E07A9A285868B0B2124 /* MapCache.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MapCache.release.xcconfig; sourceTree = "<group>"; };
DD834D8EA0D7286EF9DB57DF13DE3040 /* TileRangeIterator.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = TileRangeIterator.html; path = docs/Structs/TileRangeIterator.html; sourceTree = "<group>"; };
DE323BCAE949B9DB6C6C9C15701A906B /* Pods-MapCache_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-MapCache_Example.modulemap"; sourceTree = "<group>"; };
DF66B895C6D727BE4F8552FD97AE5A95 /* NimbleXCTestHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NimbleXCTestHandler.swift; path = Sources/Nimble/Adapters/NimbleXCTestHandler.swift; sourceTree = "<group>"; };
E0366A0F389F9CF2224E4635A80A90B5 /* MapCache.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = MapCache.html; path = docs/Classes/MapCache.html; sourceTree = "<group>"; };
E1938575E0750A7134669BFE6C2DC06B /* RegionDownloader.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = RegionDownloader.html; path = docs/Classes/RegionDownloader.html; sourceTree = "<group>"; };
E24B98270F8986B57629F65D5FBBB856 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = LICENSE; sourceTree = "<group>"; };
E24EFD64509489FEF6CC3F71C8E54B93 /* Behavior.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Behavior.swift; path = Sources/Quick/Behavior.swift; sourceTree = "<group>"; };
E24F0E3C039677F11FE58BA7BDA2BF89 /* jazzy.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = jazzy.css; path = docs/css/jazzy.css; sourceTree = "<group>"; };
E2E12229B33E67A816ED0FE00EED1E80 /* ErrorUtility.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ErrorUtility.swift; path = Sources/Quick/ErrorUtility.swift; sourceTree = "<group>"; };
E3D2A5970D3CCA3596D069B0305CAEE5 /* LongitudeError.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = LongitudeError.html; path = docs/Enums/LongitudeError.html; sourceTree = "<group>"; };
E66083250A6B08DE6FDD2812CD927B47 /* String+C99ExtendedIdentifier.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "String+C99ExtendedIdentifier.swift"; path = "Sources/Quick/String+C99ExtendedIdentifier.swift"; sourceTree = "<group>"; };
E74E3C132EEE41C3AFC841AD9EB87D10 /* docSet.dsidx */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file; name = docSet.dsidx; path = docs/docsets/MapCache.docset/Contents/Resources/docSet.dsidx; sourceTree = "<group>"; };
E74E9845F246A321E3B19F4314CA0776 /* Stringers.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Stringers.swift; path = Sources/Nimble/Utils/Stringers.swift; sourceTree = "<group>"; };
E92F65B4F349CB4CD2E8AE1F073A836E /* gh.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = gh.png; path = docs/img/gh.png; sourceTree = "<group>"; };
EB27159E408E45BC65B2669C4EE73997 /* Await.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Await.swift; path = Sources/Nimble/Utils/Await.swift; sourceTree = "<group>"; };
EBEFAD31D91294CD227A13D9C1D1D3D8 /* DSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DSL.swift; path = Sources/Quick/DSL/DSL.swift; sourceTree = "<group>"; };
EC5A591AAF800423D8D9B49E24B4A488 /* ZoomRangeIterator.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = ZoomRangeIterator.html; path = docs/Structs/ZoomRangeIterator.html; sourceTree = "<group>"; };
EDA5CA9D70114193EC21AA4581EC283F /* OHHTTPStubs-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "OHHTTPStubs-prefix.pch"; sourceTree = "<group>"; };
EDA88D9DE6A5FD4BA0CFD5F33426D0B0 /* BeNil.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeNil.swift; path = Sources/Nimble/Matchers/BeNil.swift; sourceTree = "<group>"; };
EE0AC45A0A7F9053CD207CFA516ABDB6 /* Filter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Filter.swift; path = Sources/Quick/Filter.swift; sourceTree = "<group>"; };
F268F3534B41F0176CC72038207681C8 /* Pods_MapCache_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_MapCache_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
F2DB9872219743A7E4FC02504054BB58 /* jquery.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = jquery.min.js; path = docs/docsets/MapCache.docset/Contents/Resources/Documents/js/jquery.min.js; sourceTree = "<group>"; };
F38933FE57D75379B1225A97218AAD59 /* OHHTTPStubsMethodSwizzling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OHHTTPStubsMethodSwizzling.h; path = OHHTTPStubs/Sources/NSURLSession/OHHTTPStubsMethodSwizzling.h; sourceTree = "<group>"; };
F511FE8E8CAF452D417259FE000E31FB /* QuickConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QuickConfiguration.h; path = Sources/QuickObjectiveC/Configuration/QuickConfiguration.h; sourceTree = "<group>"; };
F7508C7CFC6CDE99DD377BE9CF856029 /* CachedTileOverlay.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CachedTileOverlay.swift; path = MapCache/Classes/CachedTileOverlay.swift; sourceTree = "<group>"; };
F8171023FFE1E2338856DB99125515C5 /* Classes.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = Classes.html; path = docs/Classes.html; sourceTree = "<group>"; };
F861D2EB24A3C53FA694969CE5898DD9 /* RegionDownloaderDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RegionDownloaderDelegate.swift; path = MapCache/Classes/RegionDownloaderDelegate.swift; sourceTree = "<group>"; };
F86924B8A3F36F3BB85817DBF556F827 /* Pods-MapCache_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-MapCache_Tests.modulemap"; sourceTree = "<group>"; };
F8E7B9D4B99EC2F2B600BA7BE231610D /* XCTestSuite+QuickTestSuiteBuilder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "XCTestSuite+QuickTestSuiteBuilder.m"; path = "Sources/QuickObjectiveC/XCTestSuite+QuickTestSuiteBuilder.m"; sourceTree = "<group>"; };
F99CF48FE54BCEE7A0CB14F139E4F925 /* HashBase.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = HashBase.html; path = docs/docsets/MapCache.docset/Contents/Resources/Documents/Classes/HashBase.html; sourceTree = "<group>"; };
FA972DF245DD654A53967C1CD7B1BEC9 /* DiskCache.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = DiskCache.html; path = docs/Classes/DiskCache.html; sourceTree = "<group>"; };
FA9B065C4CAF2C93CBBCCF12BE7AFEC7 /* NSURLRequest+HTTPBodyTesting.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSURLRequest+HTTPBodyTesting.h"; path = "OHHTTPStubs/Sources/NSURLSession/NSURLRequest+HTTPBodyTesting.h"; sourceTree = "<group>"; };
FE2C48108986978DBE2A94856EDE4A8F /* CachedTileOverlayRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CachedTileOverlayRenderer.swift; path = MapCache/Classes/CachedTileOverlayRenderer.swift; sourceTree = "<group>"; };
FE9216851DCACC2538DB06820B19B1FA /* Level.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = Level.html; path = docs/docsets/MapCache.docset/Contents/Resources/Documents/Structs/Log/Level.html; sourceTree = "<group>"; };
FF6864A7985E551BC3005A491934A4F7 /* Async.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Async.swift; path = Sources/Nimble/Matchers/Async.swift; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
56C9039AFF61DA7B38E5F2F0AFDEDB11 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
5B70B7A48D33851645A970DA8AD85CD6 /* Foundation.framework in Frameworks */,
0B7BD24FDF2877B7DAB8E15AB42ABDB7 /* XCTest.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
9776171CD9EBE51BCBBA48B5361E0B31 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
F53701A6203E5999ED720C70FA5B5BF5 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
ADF44AF6A95EF82A615D2591AB4FE93A /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
318EF49A5B77A5A31647C948182DDA5C /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
BA642870840D4AF32720B0EB4C8E53C4 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
A2D0C5B280E43460625BC6EAFC8AA0FD /* Foundation.framework in Frameworks */,
B3180F23F76D473C97C42FD07EBD816E /* MapKit.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
DD6C5AE0FCB56EC173421774C5CA73D3 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
79A9ADCAE72B5F30CE882F79CDDDD47F /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
E6C4221503E63AB94BBB9CE997C151A0 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
A30F65F16395BF5436088F7F327E8817 /* CFNetwork.framework in Frameworks */,
2A090B165CFA5629C9CE47E6318AB38E /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
015CCD53DA97D89E72CF9D5711E72B6C /* OHPathHelpers */ = {
isa = PBXGroup;
children = (
8C27288E1777A3E890BE523DD1D347C0 /* OHPathHelpers.h */,
6E7D0FF3DC10859D4B568792DB60559D /* OHPathHelpers.m */,
);
name = OHPathHelpers;
sourceTree = "<group>";
};
08C37E0F1C984D982510C151A8F30901 /* NSURLSession */ = {
isa = PBXGroup;
children = (
FA9B065C4CAF2C93CBBCCF12BE7AFEC7 /* NSURLRequest+HTTPBodyTesting.h */,
83DAC7CDC185221500D66153876755D4 /* NSURLRequest+HTTPBodyTesting.m */,
9538049AE29D5331F9AF8BA94B0AACF7 /* OHHTTPStubs+NSURLSessionConfiguration.m */,
F38933FE57D75379B1225A97218AAD59 /* OHHTTPStubsMethodSwizzling.h */,
1C3D35D44481BACD41EBE55CD5852865 /* OHHTTPStubsMethodSwizzling.m */,
);
name = NSURLSession;
sourceTree = "<group>";
};
1E2853184B13600C67D7F5B5B8BF00B9 /* Targets Support Files */ = {
isa = PBXGroup;
children = (
6429C29EF6F09A97E116448D8BD16162 /* Pods-MapCache_Example */,
3CFBCD0AD5C2DC8B1C351071F86605D6 /* Pods-MapCache_Tests */,
);
name = "Targets Support Files";
sourceTree = "<group>";
};
2D8613D2F406C4CC5E9756725CEB05EA /* MapCache */ = {
isa = PBXGroup;
children = (
F7508C7CFC6CDE99DD377BE9CF856029 /* CachedTileOverlay.swift */,
FE2C48108986978DBE2A94856EDE4A8F /* CachedTileOverlayRenderer.swift */,
827085290F2D1E97FABD330F77198FC2 /* LoadTileMode.swift */,
B7B5F0D921920D2E76BD78A5D27BA4EF /* Log.swift */,
293E99D64778CE2C3B238189D1F7FA9E /* MapCache.swift */,
201D413FAF68CFC90965B3466D982D51 /* MapCacheConfig.swift */,
3DA478BE33C4773BABB89B1880C239C6 /* MapCacheProtocol.swift */,
7A0D21C0222C7AA21ED1DF6C73F1B920 /* MKMapView+MapCache.swift */,
9F998B327617A16B050BE18763BA9F69 /* MKTileOverlayPath+MapCache.swift */,
CD3B24DAE1154E464EE5276EB32E237A /* MKZoomScale+MapCache.swift */,
0C6AD129F19C27D80D04F5219A57AC76 /* RegionDownloader.swift */,
F861D2EB24A3C53FA694969CE5898DD9 /* RegionDownloaderDelegate.swift */,
C9BC5CC27304C0F08B64684A729CCA39 /* TileCoords.swift */,
721A69F3E37CA517082F22015A964C46 /* TileCoordsRegion.swift */,
4A971D0DC3BC2373CAD0E1646713B548 /* TileRange.swift */,
9583DCE961D42D5696EA6B811BBED0B9 /* TileRangeIterator.swift */,
59FCF2E860D5A623CECC0F93360F797A /* ZoomableTile.swift */,
8EAE4044AAA493DD77987479B9348526 /* ZoomRange.swift */,
75F0867547328F46BD18B576077B0E6D /* ZoomRangeIterator.swift */,
3B0F39D4266BB9EA56AE3D12DC96D8C5 /* DiskCache */,
94FC3AEC0B128755CC75DA2B0595B107 /* Pod */,
2F0D0E2733D704641C5B0CA22D398E78 /* Support Files */,
);
name = MapCache;
path = ../..;
sourceTree = "<group>";
};
2F0D0E2733D704641C5B0CA22D398E78 /* Support Files */ = {
isa = PBXGroup;
children = (
2FE5D58E716E4C031264C924AA41A116 /* MapCache.modulemap */,
1D949B53C8F5F77CEC4050A8EF59E0DF /* MapCache-dummy.m */,
2A42C4C22D3D7AD2F3F977273C4AAD85 /* MapCache-Info.plist */,
47242A4AE36CD33FA696B8C3BE753333 /* MapCache-prefix.pch */,
D1049A402DF50FE078C082DE2A04C740 /* MapCache-umbrella.h */,
C2FBBDB5297F029688623E22D32F19D1 /* MapCache.debug.xcconfig */,
DD23952448CF2E07A9A285868B0B2124 /* MapCache.release.xcconfig */,
);
name = "Support Files";
path = "Example/Pods/Target Support Files/MapCache";
sourceTree = "<group>";
};
3B0F39D4266BB9EA56AE3D12DC96D8C5 /* DiskCache */ = {
isa = PBXGroup;
children = (
32A89F09D2724805B82C7E5E1A3971FD /* DiskCache.swift */,
77F6824352A5EA1AD6627ECC52A5833A /* FileManager+DiskCache.swift */,
9A28699871192AC15F1C8BF9ABE64187 /* MD5.swift */,
3FDA8477428B90DA5A10CA00B80C6E7C /* String+DiskCache.swift */,
79AD12285796A825B4336C96E111373F /* URL+DiskCache.swift */,
);
name = DiskCache;
path = MapCache/Classes/DiskCache;
sourceTree = "<group>";
};
3CFBCD0AD5C2DC8B1C351071F86605D6 /* Pods-MapCache_Tests */ = {
isa = PBXGroup;
children = (
F86924B8A3F36F3BB85817DBF556F827 /* Pods-MapCache_Tests.modulemap */,
6E1913DEDAC5D9F029914D34535DA2F4 /* Pods-MapCache_Tests-acknowledgements.markdown */,
1F901C8F3E3EA649E68D9DE38B402834 /* Pods-MapCache_Tests-acknowledgements.plist */,
0E3321C36D6F54404B66845C742B0469 /* Pods-MapCache_Tests-dummy.m */,
8828460C0663892385C2368BC6BD3085 /* Pods-MapCache_Tests-frameworks.sh */,
3182E113ABA06EABCE9B4BEB1345052F /* Pods-MapCache_Tests-Info.plist */,
1BD493DB7E9740E359DA72AA44864828 /* Pods-MapCache_Tests-umbrella.h */,
A45F40A639F932A5B509547374FB3FC6 /* Pods-MapCache_Tests.debug.xcconfig */,
75BC5DCDAA9DA816051EC50473CE8C17 /* Pods-MapCache_Tests.release.xcconfig */,
);
name = "Pods-MapCache_Tests";
path = "Target Support Files/Pods-MapCache_Tests";
sourceTree = "<group>";
};
45279E83209057F3DFEEC45FDF9F10D5 /* Swift */ = {
isa = PBXGroup;
children = (
10E0A105CAE0755D7BFCB20BD7776519 /* OHHTTPStubsSwift.swift */,
);
name = Swift;
sourceTree = "<group>";
};
4AE59552C531B968AE822B1F0187EF59 /* Development Pods */ = {
isa = PBXGroup;
children = (
2D8613D2F406C4CC5E9756725CEB05EA /* MapCache */,
);
name = "Development Pods";
sourceTree = "<group>";
};
54F71BB6D27615BD7B4B39D702300855 /* Support Files */ = {
isa = PBXGroup;
children = (
C141CDBC01E04D18AD166A1D9A92553D /* Nimble.modulemap */,
C3398B72D03E4964AAD7CA934EE2BB90 /* Nimble-dummy.m */,
4CD4BC84DF30829CC8ABCA1B5DBDE927 /* Nimble-Info.plist */,
5A1D861E4ACD8B4A82DA3039A92E26F8 /* Nimble-prefix.pch */,
9AFD026CC1DEC26BFFBBC0B04702F65E /* Nimble-umbrella.h */,
6B53B14BDD21A8D336C468BFA7B3B691 /* Nimble.debug.xcconfig */,
32E5DC33B46C88EB33DD00B59A84F53D /* Nimble.release.xcconfig */,
);
name = "Support Files";
path = "../Target Support Files/Nimble";
sourceTree = "<group>";
};
5A4AC648FD35FBD80CB9FFDE3379A361 /* Pods */ = {
isa = PBXGroup;
children = (
ACE16BA3D1BB925AA0878A49C3ECC9BF /* Nimble */,
68A9483B2C158478370805B4DACAC10B /* OHHTTPStubs */,
9007EAA80132EB32FD88F81DAD3DB1CE /* Quick */,
);
name = Pods;
sourceTree = "<group>";
};
6429C29EF6F09A97E116448D8BD16162 /* Pods-MapCache_Example */ = {
isa = PBXGroup;
children = (
DE323BCAE949B9DB6C6C9C15701A906B /* Pods-MapCache_Example.modulemap */,
BFA702638A02D12A14AC0BBD0828D6FB /* Pods-MapCache_Example-acknowledgements.markdown */,
79662D907EF598C7C3018B9CFDC45312 /* Pods-MapCache_Example-acknowledgements.plist */,
519F19D843259B908DDEACD20037BF62 /* Pods-MapCache_Example-dummy.m */,
0D9792A0C457F6F429A39E294A33C7E9 /* Pods-MapCache_Example-frameworks.sh */,
087DFFEFA5E431E1C3EEC0FEB6D022A7 /* Pods-MapCache_Example-Info.plist */,
1B5CEF88D3C3708634DDD8AD10AEF4FC /* Pods-MapCache_Example-umbrella.h */,
23D3BCD493B00F0CE281CD049CFA4E3C /* Pods-MapCache_Example.debug.xcconfig */,
D3C4D4DC9E50B4FBA64B3F0B9AEA26D5 /* Pods-MapCache_Example.release.xcconfig */,
);
name = "Pods-MapCache_Example";
path = "Target Support Files/Pods-MapCache_Example";
sourceTree = "<group>";
};
68A9483B2C158478370805B4DACAC10B /* OHHTTPStubs */ = {
isa = PBXGroup;
children = (
CE0FC83F8A0F7D32847C89D68999B59A /* Core */,
702FA3E48DD81C700AD979894FD6BE76 /* JSON */,
08C37E0F1C984D982510C151A8F30901 /* NSURLSession */,
015CCD53DA97D89E72CF9D5711E72B6C /* OHPathHelpers */,
C674E2740A93BD1178BA098CA9C5BE72 /* Support Files */,
45279E83209057F3DFEEC45FDF9F10D5 /* Swift */,
);
path = OHHTTPStubs;
sourceTree = "<group>";
};
702FA3E48DD81C700AD979894FD6BE76 /* JSON */ = {
isa = PBXGroup;
children = (
2392A8C037CE4EDF0021851066EA390F /* OHHTTPStubsResponse+JSON.h */,
8C6E9A24AB92490E03C94616F3BD8DCC /* OHHTTPStubsResponse+JSON.m */,
);
name = JSON;
sourceTree = "<group>";
};
76FE4445446B8015183AA02B90BD9A08 /* iOS */ = {
isa = PBXGroup;
children = (
CA6400621CEFA29BBBD06422083F212E /* CFNetwork.framework */,
85C001BEBCF7E787137457AACE8930A0 /* Foundation.framework */,
CD4CDCB409A68461F6C1EE1BD7C80FFC /* MapKit.framework */,
D969F7AA89F7A16F77AE2737573BB0A5 /* XCTest.framework */,
);
name = iOS;
sourceTree = "<group>";
};
7BF19F57EE23C96102656ABF46D3848E /* Products */ = {
isa = PBXGroup;
children = (
115747451E3769DDB80BB07379405375 /* MapCache */,
BAE263041362D074978BB3B577DF0A05 /* Nimble.framework */,
17E33041B314FA837A3CAEB9DF3CDE9F /* OHHTTPStubs.framework */,
414EFDEA84A81A79F1B1B381C14D612D /* Pods_MapCache_Example.framework */,
F268F3534B41F0176CC72038207681C8 /* Pods_MapCache_Tests.framework */,
0D631E9908483F9525A6B3F36F16CC61 /* Quick.framework */,
);
name = Products;
sourceTree = "<group>";
};
9007EAA80132EB32FD88F81DAD3DB1CE /* Quick */ = {
isa = PBXGroup;
children = (
E24EFD64509489FEF6CC3F71C8E54B93 /* Behavior.swift */,
188CBDE7841D243BDA695CFBAF3E8B1C /* Callsite.swift */,
AAEC7F2D15B9463F36D337745A5B59D9 /* Closures.swift */,
37F26F52FA987A0BB660CCA8B4FE430B /* Configuration.swift */,
EBEFAD31D91294CD227A13D9C1D1D3D8 /* DSL.swift */,
E2E12229B33E67A816ED0FE00EED1E80 /* ErrorUtility.swift */,
280AB5648E36ADAB7B4CCC18F32AC9DC /* Example.swift */,
D7F0B149DA948F6D187841464768C5D3 /* ExampleGroup.swift */,
5449C3156A7936DFF326CDE593F807ED /* ExampleHooks.swift */,
876777D03A0CB62426534C16CA0C789D /* ExampleMetadata.swift */,
EE0AC45A0A7F9053CD207CFA516ABDB6 /* Filter.swift */,
095D50E538DE26EC08031596C90F63FD /* HooksPhase.swift */,
0E900612D9CC9915D08FE869EFD4CB8F /* NSBundle+CurrentTestBundle.swift */,
570DD46A5646C5ADA575D84B13512F09 /* QCKDSL.h */,
4374D1FD0F1C79FA764075AD83E0E21B /* QCKDSL.m */,
1CAD59D6DDB0ADBBC7141996539332C1 /* Quick.h */,
F511FE8E8CAF452D417259FE000E31FB /* QuickConfiguration.h */,
6A80B33DA7FED3AC7553BA910690DB8E /* QuickConfiguration.m */,
5E20685EE2BFD6912BE103B4F09F16D5 /* QuickConfiguration.swift */,
104E23BFD4B5FD65460EB618C185ABAA /* QuickSelectedTestSuiteBuilder.swift */,
1C8D180BA6024B0B0809AEFCC0ACEC4B /* QuickSpec.h */,
3BA1E6CA1599C38A2699EEA547D0B108 /* QuickSpec.m */,
B17787C3F361B9BEDAEE3673D68ABABB /* QuickSpecBase.h */,
7A411AAA7230B0726A27FDD85A8E451E /* QuickSpecBase.m */,
0B242CA3FD1834270BF6794628AA6EE6 /* QuickTestObservation.swift */,
CBD9778DB539D712237C77CFF53816D5 /* QuickTestSuite.swift */,
E66083250A6B08DE6FDD2812CD927B47 /* String+C99ExtendedIdentifier.swift */,
00471A748033C8088B6CB6C3E19DD550 /* SuiteHooks.swift */,
14D9A3625DF1FC5B6B10AB138FC78FB2 /* URL+FileName.swift */,
7F5A4D9CF9A781F0C1374BE737A272C1 /* World.swift */,
5167D2E2E18F8E61B00150BFF2AF5916 /* World+DSL.swift */,
F8E7B9D4B99EC2F2B600BA7BE231610D /* XCTestSuite+QuickTestSuiteBuilder.m */,
AC60FBD61742F564FB94559080F63DDC /* Support Files */,
);
path = Quick;
sourceTree = "<group>";
};
94FC3AEC0B128755CC75DA2B0595B107 /* Pod */ = {
isa = PBXGroup;
children = (
BDB51DB4AFD2DAC1206FF01880A09FFA /* allocatedDiskSizeForDirectory(at:).html */,
224C7EBAEDB29E9EA57F695E7BEE19B7 /* allocatedDiskSizeForDirectory(at:).html */,
9A4D0207B772C1208E67879D598B501D /* badge.svg */,
922D045271477912FAD0F73EFA535E12 /* badge.svg */,
82CEF61084A1CBFF1A42F8EFBCD82E74 /* BytesSequence.html */,
6828822EDAB00DBD4714DF0772CD1509 /* BytesSequence.html */,
1E98592E0D8043ECD08AAD1B0D874E4E /* CachedTileOverlay.html */,
717F963B65CF6D0713EBED481620D739 /* CachedTileOverlay.html */,
B7584D63B193C8A62D89611528DF4DC9 /* CachedTileOverlayRenderer.html */,
4CE3416037004F3E622A56F8704D7F83 /* CachedTileOverlayRenderer.html */,
A37985E6BC13EB6F280EFC4445367A39 /* CachedTileOverlayZoomRenderer.html */,
791021CEDA7213ECA679AFD548B4B25C /* CachedTileOverlayZoomRenderer.html */,
C4A7207F1A784EC68715B54529DDC7CD /* carat.png */,
8A95F31DBDACAE5DFFBC36B716DA46C2 /* carat.png */,
F8171023FFE1E2338856DB99125515C5 /* Classes.html */,
C55C5081B00AFEAB28727F66FF92EA25 /* Classes.html */,
A03E38A8214776632EEFE64956B4C098 /* dash.png */,
7F736B2661A19E1FEF85AE5478657DEA /* dash.png */,
FA972DF245DD654A53967C1CD7B1BEC9 /* DiskCache.html */,
9F9827FDAD8E57368B491D592069CD73 /* DiskCache.html */,
E74E3C132EEE41C3AFC841AD9EB87D10 /* docSet.dsidx */,
43B8630C5FC22F69A6BC01633E677FA7 /* Enums.html */,
4E1D1AF7420347BEA48836B2C951055F /* Enums.html */,
40ABA90AA6F9A3C9006FDCBFC7013BE8 /* Extensions.html */,
57EA2CBE3202F62E1C0E8E79BDB49FFB /* Extensions.html */,
70B588C2958C54156E8F401DCD24C8DC /* FileManager.html */,
8F8DD41230A818CC8561138EC00F2DF2 /* FileManager.html */,
AB85237B39AC47FBE20B24767D4F4FC1 /* fileSizeForDirectory(at:).html */,
4C7EE3CBC6C192186DC6EFC9232204DB /* fileSizeForDirectory(at:).html */,
56574B418B15EF2AE2DB5CB4A18A5076 /* Functions.html */,
D9DA4EB3203E56F070FC87E511DB1869 /* Functions.html */,
A72D0B0A00276AE38A37E5117E243E7F /* gh.png */,
E92F65B4F349CB4CD2E8AE1F073A836E /* gh.png */,
079C5712F1D70CAA0BABF548473803E9 /* HashBase.html */,
F99CF48FE54BCEE7A0CB14F139E4F925 /* HashBase.html */,
0E297A11D4F3C3CA8941993228FE2753 /* highlight.css */,
163ACF5580C109C1EFE549ECE2ED531F /* highlight.css */,
76802D35217F55336D4DFE387458C9FA /* index.html */,
A3C1E7D4CED9197662C01EC093CCCA3E /* index.html */,
BC4D36579B8D8C0DC324262EF68C8F81 /* Info.plist */,
5EE081A80179A0557EC5BED8DA543C27 /* Int.html */,
DB3A352B0013CE61E90CB01733B36E5C /* Int.html */,
E24F0E3C039677F11FE58BA7BDA2BF89 /* jazzy.css */,
B96A5693FC4E34A549D99D3CB6159651 /* jazzy.css */,
4165552B4E908E7F1071A3DDE18E00CD /* jazzy.js */,
CED13538583D337B7AEBA7964D24830D /* jazzy.js */,
9FFC4C8AB45B0AC85F73C31AEFAF4CF6 /* jazzy.search.js */,
B7EB149690CA9BF0EFEC86E189FDD4FB /* jazzy.search.js */,
F2DB9872219743A7E4FC02504054BB58 /* jquery.min.js */,
798DE71500576FC9DCE2B85641FCC3BC /* jquery.min.js */,
27A43B882DF134E03603973C715AB8BE /* LatitudeError.html */,
DB2D5BC595539D17E279F80BB02E6EB2 /* LatitudeError.html */,
FE9216851DCACC2538DB06820B19B1FA /* Level.html */,
0782689902F9CAED8A411853ABF05243 /* Level.html */,
E24B98270F8986B57629F65D5FBBB856 /* LICENSE */,
0D69FCB0F29008CC0C2B42656573A1C7 /* LoadTileMode.html */,
242AE13D54C66C8BFF3AC20BA62F1E73 /* LoadTileMode.html */,
095D4F5BCD29E3C3DD5585BEB0D4DE78 /* Log.html */,
93E7E151A1A6F0E95D86558F966BA5B1 /* Log.html */,
5B45696F5CA6EF2FB70EB3EFAAF4C518 /* LongitudeError.html */,
E3D2A5970D3CCA3596D069B0305CAEE5 /* LongitudeError.html */,
A7DB1073344EA42B7A74983A25D9815F /* lunr.min.js */,
3D0EBD1CD49911A19015FE6DD20C3FFE /* lunr.min.js */,
E0366A0F389F9CF2224E4635A80A90B5 /* MapCache.html */,
B96D3BA3727E9EF1528CBF50332EA13D /* MapCache.html */,
D666AE46160C89B3E68F33D59D5B1A85 /* MapCache.podspec */,
7377FF298025A20F6180FD00E3492530 /* MapCache.tgz */,
11C9E30D0FAB2692429127971DA3E86E /* MapCacheConfig.html */,
0C7A5C77C5BD4B7991DB665B2321EF71 /* MapCacheConfig.html */,
1E3D9FABBEEAB0EB966BB656E2C6B8EC /* MapCacheProtocol.html */,
2D2C7E63F3F319386BD97281A90B3A62 /* MapCacheProtocol.html */,
94B83FA6C2F6B4812E50A89FFB14ECB7 /* MD5.html */,
C58E18764807E7D70092760ED1AC3BB6 /* MD5.html */,
8BAE11307305D971F3C32360B2D1E151 /* MKMapView.html */,
7A7FFC0191629B7C1E50034ECD7ABAC0 /* MKMapView.html */,
21CF616A5DAA42F367D9F3B0EE5CAF40 /* MKTileOverlayPath.html */,
C3FE61E1C35C6A5337401155C559D338 /* MKTileOverlayPath.html */,
B941B8D3A118FF58FD84EE12104E843C /* MKZoomScale.html */,
9E57833FF8C066967F3E3F1A4FFD49A1 /* MKZoomScale.html */,
0FCA03C77BDFC02DA2D5345DE3A6183B /* NSMutableData.html */,
10573CCA0C4E3DD543D75D3EBF88CD88 /* NSMutableData.html */,
D0D88CEF514F88C968D3928F9D80D16A /* Protocols.html */,
D410D2895F8C5D5B92FB85E85F9BFA39 /* Protocols.html */,
0F7C4C595806B97FD73FBC374EEB16B8 /* README.md */,
E1938575E0750A7134669BFE6C2DC06B /* RegionDownloader.html */,
8CC3ABC24B4E736C7C1778C4F93D9754 /* RegionDownloader.html */,
BBFF9E0C26608D07B75303A92097698B /* RegionDownloaderDelegate.html */,
3AAE799BE22026059E57FF1E226B8A9E /* RegionDownloaderDelegate.html */,
4B835DEC0552D5FF6D4FDA75601BEBD8 /* search.json */,
6313FE95560ED5D9CF91CF162F53F7D9 /* search.json */,
37BDD79E80D8230F1DD36703F2633EB4 /* spinner.gif */,
6D721E9818FD8D436E09B1E61745A58B /* spinner.gif */,
4B98EDAD21361EF9DB8760647DA12CFE /* String.html */,
686309A2CE3FE676BC46D15A4B0B19FA /* String.html */,
5BE6D466A7620298C619FA3E3C1BCD99 /* Structs.html */,
02ECD1EED8EB2554E1527BDD13B1E300 /* Structs.html */,
147B1866704FC737FB7BD401F0614E42 /* TileCoords.html */,
3AB518533AEF6717974AF0F50DA19ED9 /* TileCoords.html */,
93493184F746411209F83A00CD5BD5F5 /* TileCoordsRegion.html */,
806F9DD793AB7808F41C8455231DDC29 /* TileCoordsRegion.html */,
068C746F041696570B3A044FB9831C1C /* TileError.html */,
4F305583AAD295C1B2EB3B8E414B10EB /* TileError.html */,
9E0C2DED3E83AA59D978BEEB29D37317 /* TileRange.html */,
A76EB9DE29A7F13FB25AB2DA4C811C33 /* TileRange.html */,
B2F6A61BE6A61EC88A7D06ADA00F40A4 /* TileRangeError.html */,
0F3251148DCBFC8371CED5B35FC6C909 /* TileRangeError.html */,
1B25CC77A326D6CFB372A8106644EB58 /* TileRangeIterator.html */,
DD834D8EA0D7286EF9DB57DF13DE3040 /* TileRangeIterator.html */,
0027EFB32E00B5877A1BA9F57DC558F6 /* typeahead.jquery.js */,
7CFA7E82168D1175FAC43318F3218135 /* typeahead.jquery.js */,
AE3D2363136405066B92208E4E77BCA8 /* Typealiases.html */,
1420D9447B99B671D184715EF4867AC8 /* Typealiases.html */,
79EFB418B58B624EA953AB19727B20CA /* undocumented.json */,
28439AA4D2945933B55F7F4875C6C70E /* undocumented.json */,
98CB9B9421D5CE735174ADBA22419059 /* URL.html */,
76F8F1F4BCCAD5E4094A3BA5A5B182B1 /* URL.html */,
40C487A2DA3AB6687086CF036D8E1EE9 /* ZoomableTile.html */,
02D03D8C615EE1D4BF8F38DC65AC32C5 /* ZoomableTile.html */,
7B58D9612DA8DF07898D28FF34CA9B8B /* ZoomError.html */,
1DC963D73D52370FB3F1067DC8B6E3F3 /* ZoomError.html */,
402C821C535EBD96F3B3192E464A06A8 /* ZoomRange.html */,
169DF6B8FE8722BD4795048414482BE3 /* ZoomRange.html */,
68980DEA69BFDB5FA142BEE4B3BE1AE5 /* ZoomRangeIterator.html */,
EC5A591AAF800423D8D9B49E24B4A488 /* ZoomRangeIterator.html */,
);
name = Pod;
sourceTree = "<group>";
};
AC60FBD61742F564FB94559080F63DDC /* Support Files */ = {
isa = PBXGroup;
children = (
AF2AE314DE2D1607A1FC3F1B6E528EC8 /* Quick.modulemap */,
7A62813E0F4D4C8F42EDD954E62B6AE2 /* Quick-dummy.m */,
2EC70B48F20DCCD140C7BB760640BEA7 /* Quick-Info.plist */,
48FF332C1B575EE3C05F271B076AF6B3 /* Quick-prefix.pch */,
05D7C1FB9885DD0C99FCB135564887AD /* Quick-umbrella.h */,
77080DD1E9B97D97F44A76632ABD790E /* Quick.debug.xcconfig */,
D2BFA0D15B2CDF3236A5DDBA7340AD6A /* Quick.release.xcconfig */,
);
name = "Support Files";
path = "../Target Support Files/Quick";
sourceTree = "<group>";
};
ACE16BA3D1BB925AA0878A49C3ECC9BF /* Nimble */ = {
isa = PBXGroup;
children = (
B86BAEEA20E808DE187FDA9E5B37C377 /* AdapterProtocols.swift */,
D904BBCB5957CD7F9F7D6AB6A87C4108 /* AllPass.swift */,
290CDE361EC6EE27C00F56F64EE3375D /* AssertionDispatcher.swift */,
A3853D1BB13B6541AF95D89D4E348755 /* AssertionRecorder.swift */,
FF6864A7985E551BC3005A491934A4F7 /* Async.swift */,
EB27159E408E45BC65B2669C4EE73997 /* Await.swift */,
265E140309F83C253B4CAFA6B6626115 /* BeAKindOf.swift */,
038F40E278B35A9BA2F1195E3AF11B94 /* BeAnInstanceOf.swift */,
37100A76CACA4A8B339AC697D7853C2E /* BeCloseTo.swift */,