-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathproject.pbxproj
More file actions
1527 lines (1515 loc) · 128 KB
/
project.pbxproj
File metadata and controls
1527 lines (1515 loc) · 128 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objects = {
/* Begin PBXBuildFile section */
01F397BAD1CB3F6C015058E2E072FE28 /* Single.swift in Sources */ = {isa = PBXBuildFile; fileRef = D7C3EFDE0739002559CCA557A32BF40C /* Single.swift */; };
0394473C5C7C8762D8FCD64FDAB76744 /* Zip+arity.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3533E502F2C1831E5D166924EB321A37 /* Zip+arity.swift */; };
0558A6166135C77069F494B49E6225B8 /* AsMaybe.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0B8C3EAAA0A8306CD320B7D4F4208C4A /* AsMaybe.swift */; };
0A7A958D72D67AE0D24FF939AA912424 /* Buffer.swift in Sources */ = {isa = PBXBuildFile; fileRef = E683AD4B41E4DA9041F2EDCC25E0E2A0 /* Buffer.swift */; };
0DD7C9DF5BD8A9724EB454B31957495C /* SwipeDirection.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0966549C33624D506A1149619A678E36 /* SwipeDirection.swift */; };
0E81C8F63E9538AB97E40312935BE2A4 /* ShareReplayScope.swift in Sources */ = {isa = PBXBuildFile; fileRef = 824978904F6A37C16988EE611ED1729E /* ShareReplayScope.swift */; };
0F68383196F2EA1F04E1D170302965E8 /* Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = C07EC684B28F590992B342C525AB320D /* Deprecated.swift */; };
1188AEE1A21CF3B33BB7134314610837 /* CombineLatest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 623F2D80C1D3DE59AD29ECF4FF2E2924 /* CombineLatest.swift */; };
11B8E3DA4F8DB69F4F872AFD2C94AF28 /* ConnectableObservableType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 16297E00900209D5DD818FBC9554F59B /* ConnectableObservableType.swift */; };
1371DC42037C18A17DAE8EBB5F21B5F3 /* ObserverBase.swift in Sources */ = {isa = PBXBuildFile; fileRef = D1E0A72C279DFB7B00A8311AD6F787B2 /* ObserverBase.swift */; };
141028B9A6A8835B70232CD331709354 /* Pods-KSSwipeStack_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 370EC9BDC1980AEE55204BEDC61864CF /* Pods-KSSwipeStack_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
154144C41F71ECCF0A5EA3CE7F67E2A3 /* SerialDispatchQueueScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = B9A05DB1D2DEC97241D7F82323DCC298 /* SerialDispatchQueueScheduler.swift */; };
15787416A7BAAB178E0BDDA39597A158 /* AsyncLock.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04E511A8A37613F7FD3414D73AE7F470 /* AsyncLock.swift */; };
165960D59D7FAAD04A5180C28118D34A /* Bag+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C481E410EE7AD0A8CF23808C675CB8D /* Bag+Rx.swift */; };
1897706824B6EB1DF602DEBF791B35D3 /* BooleanDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5291B3A338513019D5591EE94C13B392 /* BooleanDisposable.swift */; };
19A697E2DE28CC3B3CDE343427F00EDF /* VirtualTimeConverterType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 86440BF3A7E677C8D290CD835B303565 /* VirtualTimeConverterType.swift */; };
1CB739C45D28C7ABC611925F326A393E /* Catch.swift in Sources */ = {isa = PBXBuildFile; fileRef = E1AA6778DFB8A571BA0A4140B084A025 /* Catch.swift */; };
1ECE35D6B845610157373F442B587ABF /* ObservableType.swift in Sources */ = {isa = PBXBuildFile; fileRef = B6EAA1A9D2089CD724FBB1A73C5683B6 /* ObservableType.swift */; };
212D364CFD5EDFD4F454191FF8800483 /* Debug.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4EC4FFBFD10DB9651050A9A7CA9D8F66 /* Debug.swift */; };
21A3FE757DBE6E2F97BA2AF76E79FD57 /* Bag.swift in Sources */ = {isa = PBXBuildFile; fileRef = AE1E31E0DA634C2E99D2067E94DAE08B /* Bag.swift */; };
223B34C48E9D1F921FD559925F1646B7 /* DisposeBase.swift in Sources */ = {isa = PBXBuildFile; fileRef = E238FEA91CBDAFFF97AEF4CA108358D7 /* DisposeBase.swift */; };
223FE167B599DB59AEBE1237CC0EAC3A /* HistoricalScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = C79625897F40A4CFFD0C7332F245EF4D /* HistoricalScheduler.swift */; };
22F0B43A6D969609EC9085D158F48E4C /* RxSwift-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = C7BF5E28C388DB651AA4E92C855813D0 /* RxSwift-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
23A92888081DB4000E418ED3AC3EC834 /* Pods-KSSwipeStack_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BC0707E94F4E8BA6B0434B010BB45A9 /* Pods-KSSwipeStack_Example-dummy.m */; };
243B8244A00E891EC89ADD02AEF915E3 /* WithLatestFrom.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9519C89F339BAA9E5FFFE84EB205B4F2 /* WithLatestFrom.swift */; };
25B1E058B2EA4463229971A5C702586F /* Delay.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7467DEA4D46C1C95D06E934315AA13A9 /* Delay.swift */; };
261EFC48FFBDED23C7C57A71C3393BFE /* Queue.swift in Sources */ = {isa = PBXBuildFile; fileRef = 48D6EE1789AFB7FEE18956812517D6C6 /* Queue.swift */; };
26F4FDC08CE70E16FEE8A8BEF18073B2 /* SkipWhile.swift in Sources */ = {isa = PBXBuildFile; fileRef = E770CADA4AD1A1AEEB4B8F0845EA1276 /* SkipWhile.swift */; };
272B376FA87F62ABE783F2336D2C21F5 /* ElementAt.swift in Sources */ = {isa = PBXBuildFile; fileRef = F5ACC359E469688F9BB2C004B80BD8F0 /* ElementAt.swift */; };
28C3BB0A16DDBEEE041E6DB6FBC2DAA6 /* Timeout.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A5E6E186F2FBB2E3F5FDA62D1A79742 /* Timeout.swift */; };
2AF025DA9E69C4AFC3AFC48EA935FF79 /* TakeUntil.swift in Sources */ = {isa = PBXBuildFile; fileRef = F89F97837D89AD6DA04D3AB78C694BD4 /* TakeUntil.swift */; };
2BB4C1D8602CE965D61C22F12850C360 /* SchedulerServices+Emulation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6571B81DF4B1937A310940D79FC80C30 /* SchedulerServices+Emulation.swift */; };
2D5B624DE104E233D0CA7242971F846E /* OperationQueueScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D95E635B9DDFF22CC87B581387612B2 /* OperationQueueScheduler.swift */; };
2E5E03C2245F45068EF7A94ABD86453F /* StartWith.swift in Sources */ = {isa = PBXBuildFile; fileRef = 11EC10FE813DE472055C4A1EA0E6B293 /* StartWith.swift */; };
3061BB2672D6C7A9054DF120DCEA0BED /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7280E6358DEF684DD1CAA81F40E4BEF /* Foundation.framework */; };
33A1D3F0CBA48A7B74FDA610EFB4D8F2 /* LockOwnerType.swift in Sources */ = {isa = PBXBuildFile; fileRef = B2DD684BE9ECBE7B2BEB04A547685D8E /* LockOwnerType.swift */; };
343B9666DCA00E2219966B1194D06FA7 /* RxMutableBox.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4A49CF4E98435CF670836BC2012D97C /* RxMutableBox.swift */; };
36257E4C2ACA8D833DFF5C01BF9FF328 /* Concat.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7E2F039EA6F7F7BF3269EC43F19FCEBD /* Concat.swift */; };
38654DA3535EF8C87FF4E01E0A3BE755 /* Timer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6579FB49D74168032DBD8B701CE72B0A /* Timer.swift */; };
3C3878A01C3681B487D3E7E7B0F4ECDE /* CombineLatest+arity.swift in Sources */ = {isa = PBXBuildFile; fileRef = 664B4CB89DCDA0B1880BA2CE5CBFD83F /* CombineLatest+arity.swift */; };
3EB169CAB0429A6979B22796EA7D86F3 /* SingleAssignmentDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9CDB8C4C654093DD10D6919CD2618D0B /* SingleAssignmentDisposable.swift */; };
42521970096FD0114B6896BF7D4E750D /* GroupBy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 13F5DBF72F7EDD288E32DAFD1C0D6791 /* GroupBy.swift */; };
43C5C8337D78A1551A8FE514F5A3F361 /* ScheduledItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4437F358B5D31910DD9409F0FEAEE702 /* ScheduledItem.swift */; };
47DC2A1732FFBA649EC3A15182355FC9 /* KSSwipeStack.h in Headers */ = {isa = PBXBuildFile; fileRef = 07B7F28479BC563E875F93C49A65CC86 /* KSSwipeStack.h */; settings = {ATTRIBUTES = (Public, ); }; };
4873ACBFE9455DB0CF49C8535A44D359 /* Observable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 30CDA0576172F242DAB7C18DAAED48D6 /* Observable.swift */; };
48E3C59E76DBA6509D0CA6881F360842 /* Merge.swift in Sources */ = {isa = PBXBuildFile; fileRef = B3DBA46B2E96A313A48E448EE95587BE /* Merge.swift */; };
48EBB1DCB92932FFD7DF83061D438BDB /* RefCountDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = AAF0236C7C0BB7BD07900F91FBA74401 /* RefCountDisposable.swift */; };
48EEB3122E4846851C1B289CDBD36C31 /* Producer.swift in Sources */ = {isa = PBXBuildFile; fileRef = D13453C31D9D4F17248006ED70A72B1D /* Producer.swift */; };
48F0E5CB93AAAC6F42EFF30ABBB7CFBC /* Pods-KSSwipeStack_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AB0359546D76AFAD847D6A8973E2610E /* Pods-KSSwipeStack_Tests-dummy.m */; };
49C580A4C2F7F18B915F086102485301 /* Debounce.swift in Sources */ = {isa = PBXBuildFile; fileRef = 574EA67C0A4859186623FCE9B1090D94 /* Debounce.swift */; };
4D9DF9BAFE54C6FEC55D90D29BDC8CB2 /* SynchronizedDisposeType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D5DFA2839781124EC154CC0CDBD4C59 /* SynchronizedDisposeType.swift */; };
4F6291E38144C4DBD7203D77782DC51C /* ObserverType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 64F282BEC551E79087DC8CF81B24EE8A /* ObserverType.swift */; };
4FB3CFB054369AEC41916E144556B384 /* Completable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6836CA93140CED73D378A157F147E339 /* Completable.swift */; };
520A76B979F9790D47BC7569A96D2040 /* TailRecursiveSink.swift in Sources */ = {isa = PBXBuildFile; fileRef = 91253EAB79481C279C0FD5DC3D161756 /* TailRecursiveSink.swift */; };
521710610EFCA1AC25590A1F249EB093 /* Swipe.swift in Sources */ = {isa = PBXBuildFile; fileRef = 86845436C0C36BC2B1DCC3A3BF252FDF /* Swipe.swift */; };
5270490801587FC0AADA5CE05487335D /* Range.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0D4F34736AC132A7B8C28EF842363942 /* Range.swift */; };
52B179B4C9B7FD3AAAADA67658CDEDF4 /* AnonymousDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3D23097CF93EE0C1C749FED7BDACBD64 /* AnonymousDisposable.swift */; };
5A15F97273C48331AA5F864CBFCD55F5 /* Platform.Linux.swift in Sources */ = {isa = PBXBuildFile; fileRef = 639C37B243CF59905B0EE736AEFD0723 /* Platform.Linux.swift */; };
5DACD9EC706B4500F6E742941BB3DFE6 /* RecursiveLock.swift in Sources */ = {isa = PBXBuildFile; fileRef = 888C596BFDFE32DAB6A3ADEB13C2FDE1 /* RecursiveLock.swift */; };
5FE557C351D370D23FF8B2B3EF51F5BF /* Create.swift in Sources */ = {isa = PBXBuildFile; fileRef = F344566957E60EC4D7380D0FCBD44251 /* Create.swift */; };
6196F9B4D8861CBA17DFCE9A3B3B441F /* RecursiveScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 86CA0158A3B829240131287808D91B17 /* RecursiveScheduler.swift */; };
61AA519B39698D74B65388011DB5C725 /* PublishSubject.swift in Sources */ = {isa = PBXBuildFile; fileRef = D8AF6F4C6501810FD803368987196011 /* PublishSubject.swift */; };
6278B4DCFBFC19EBADE71851631E3DCB /* PrimitiveSequence+Zip+arity.swift in Sources */ = {isa = PBXBuildFile; fileRef = A463DE64864FC04BC5B965E55FB9E3A7 /* PrimitiveSequence+Zip+arity.swift */; };
6362A49952CC4C9C52FC5546A0FAEC76 /* Completable+AndThen.swift in Sources */ = {isa = PBXBuildFile; fileRef = 84F4CF21B07067899852B91144F14774 /* Completable+AndThen.swift */; };
639868DA228BC14F1F6D9641C13A8911 /* AddRef.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8709506DA028CCD435EB1554ECC5ABFF /* AddRef.swift */; };
63DA747601E730EBE8626F223D5B49B6 /* KSSwipeStack-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 84EEFE01AA1666F406D594CADD65DAEA /* KSSwipeStack-dummy.m */; };
66EA423E31A2C84F9FB8EB722FC7AD7E /* PrimitiveSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6A880617D78C83860A8C4973075D0D7F /* PrimitiveSequence.swift */; };
6973D6DC8CE4ECD74ED9446F2D956C87 /* GroupedObservable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 836295E383BF78493B4ACD61F7567973 /* GroupedObservable.swift */; };
69BD183E7EFE26FEC46E2D749EFC42B8 /* InvocableType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4ED42B3608413A8A7CB579ADDCB7B935 /* InvocableType.swift */; };
69F6709ED6902898377C2C4E8DAF0B17 /* Map.swift in Sources */ = {isa = PBXBuildFile; fileRef = 13E86199B4B643E8B5A1F877DB07D357 /* Map.swift */; };
6AD72A8F2DDF5B3E2BBC7F06B6A563B1 /* NopDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 224606BD16373BB8813868CC51CDD744 /* NopDisposable.swift */; };
6BE2610986791E0751A88748DBC80939 /* TakeWhile.swift in Sources */ = {isa = PBXBuildFile; fileRef = 870754994241868063928D498212FB89 /* TakeWhile.swift */; };
6CA47F92F8F37FABEDA2043A4F83385E /* Dematerialize.swift in Sources */ = {isa = PBXBuildFile; fileRef = F2B023D222272CBC334F76C0B4054124 /* Dematerialize.swift */; };
6E6D75CF070B403EC68457710C30733E /* AsyncSubject.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FDB5F164220206791863F5D09C0EE76 /* AsyncSubject.swift */; };
71422AF4A88343B0A9A7AB00E697DE19 /* Disposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C895F42517A6CC37CD883BE206C28BF /* Disposable.swift */; };
71A73C5087EEB680AEF2E00872BD3380 /* ObservableType+PrimitiveSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = B8F18514CFAA1AC1C1CD02DC39B81161 /* ObservableType+PrimitiveSequence.swift */; };
73F6D987BA05CBC9F0319962AF3DC89E /* PanDirectionGestureRecognizer.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE4FBA07972175EDDD25E3B4C2791A14 /* PanDirectionGestureRecognizer.swift */; };
7442A02404C1598A24E4C0E3D6CFB65E /* SingleAsync.swift in Sources */ = {isa = PBXBuildFile; fileRef = CAB11313F740B26C506EBCE00E7BB81A /* SingleAsync.swift */; };
75E1A655E3C6813D7D3024069021631C /* Scan.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9121E067C51AA8335371655C2DC6C373 /* Scan.swift */; };
787E0C433A8C14B7E4EB3BA68A2B607D /* Enumerated.swift in Sources */ = {isa = PBXBuildFile; fileRef = FD29F1F9986E5CAA766A874352995865 /* Enumerated.swift */; };
78DD5D77C1E057FB25CB403351B539F5 /* SwitchIfEmpty.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19161E2A1950E7603384F1315C43B670 /* SwitchIfEmpty.swift */; };
791B14FE0149D353274DD207D2FC4FFF /* ScheduledDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607C90FFC8DC21A4FDA6C40A4B330195 /* ScheduledDisposable.swift */; };
7953BE1048DD14462E5476C04402BFE6 /* ObservableType+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = CCAF0409EC3BEF485248D64AA670F3B9 /* ObservableType+Extensions.swift */; };
7B565CB690B6C052B6C04549EB257CED /* Amb.swift in Sources */ = {isa = PBXBuildFile; fileRef = E8B1B9FE19C5B52B07CC70CBFE0A9E2F /* Amb.swift */; };
7C9890F74E304A2EB48FB731E3174BBE /* SynchronizedOnType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8851DC077C7ADE382F8250EEEAB7831A /* SynchronizedOnType.swift */; };
7D5E5648CF2C18995519503D166CEA0B /* SynchronizedUnsubscribeType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 653173DDABC6EF779A569B1439030E2E /* SynchronizedUnsubscribeType.swift */; };
7DCEBD7EE9C4193E387624FFAB017479 /* CurrentThreadScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 14343A0DC5441A3E4C9B02C214A36C1E /* CurrentThreadScheduler.swift */; };
801D0B1DAFDDC77DF350BF8C0F377AC6 /* VirtualTimeScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 68B8A6B21C8C1E42823C37C4EEE2FD24 /* VirtualTimeScheduler.swift */; };
8310C6F838993073AFB4E8947195FC6D /* Zip.swift in Sources */ = {isa = PBXBuildFile; fileRef = 39E8554DBFA86DBE818354C0EFB2E9B0 /* Zip.swift */; };
83395C7F713263F7B7C0FA49A908C077 /* Event.swift in Sources */ = {isa = PBXBuildFile; fileRef = A4082E6DFDB2848A796547F32D287C83 /* Event.swift */; };
8528CCC4CB2CE8A9BA394D8E697E4AAF /* Sequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = CCD85FFD6C09F9ACA770EAFB6CB9C2AB /* Sequence.swift */; };
8B52D8C8CF20BC2B174F8AB84B77DE4E /* RxSwift.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 397ED6A120A7323FEFFD443352B8A3B8 /* RxSwift.framework */; };
8C067FD6EF8EECE20A1D7EA7BF4B46D2 /* DistinctUntilChanged.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F0FEC4949A0D64481B5A233ABCE88F5 /* DistinctUntilChanged.swift */; };
8C1A956EA76E3643047DCBCFC08F274C /* ObserveOn.swift in Sources */ = {isa = PBXBuildFile; fileRef = 69D0C43F13B960AA7CC2921168360442 /* ObserveOn.swift */; };
8D2D04BADA48C6EDAB2B1A3845958118 /* ObservableConvertibleType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E62B1616C22B976291DC4040E181D6 /* ObservableConvertibleType.swift */; };
8ECB2A39BF43AB3EF0B4F53D64FC78C5 /* HistoricalSchedulerTimeConverter.swift in Sources */ = {isa = PBXBuildFile; fileRef = D2894E0E42536AC759F4D40D7CD278FB /* HistoricalSchedulerTimeConverter.swift */; };
8F56E6E65D1FC9892598D54ED75D2264 /* KSSwipeStack-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = C9C1C031CA481EA4A91CDF721D51C739 /* KSSwipeStack-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
8FE8ACBD2001CFDD3ED0A212EE093152 /* DefaultIfEmpty.swift in Sources */ = {isa = PBXBuildFile; fileRef = BFF1EC1EFCCCC5C132755E8EB3035CEE /* DefaultIfEmpty.swift */; };
90C9831A0CF2284CE2B0B7BE8181C32B /* SwipableData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 62254A45CE960DCA959D78C2598AADA2 /* SwipableData.swift */; };
9398A1A7916CFDD5B7D999457C5A2ADE /* SwipeDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = CB3A4E40BD6085C26BA9B94644E4771B /* SwipeDelegate.swift */; };
9407379DB3166594C8CDD5027EA0E5DB /* ToArray.swift in Sources */ = {isa = PBXBuildFile; fileRef = 772E353720251005C79C2C88D6E68A0B /* ToArray.swift */; };
94BFE89D78123DD412F522A2BFA8B547 /* RxSwift-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0DA1A0159F4FAB076901B26B3CA1C703 /* RxSwift-dummy.m */; };
95389222A8A6DD7A3AD673C5D641FDBC /* InvocableScheduledItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8004344A04C3DCD44666B3905D1E0F60 /* InvocableScheduledItem.swift */; };
96C42393B39A880A0B84618328E48BFD /* Reduce.swift in Sources */ = {isa = PBXBuildFile; fileRef = 745BE594E349E9F5B3F60C8225B1C900 /* Reduce.swift */; };
97B217237CAE60B2ACA5A3E0152B8B45 /* Using.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9E66A00EA92C06317F0B78D049287892 /* Using.swift */; };
99AC0D9E7D9DF033377D313098C17D5A /* Empty.swift in Sources */ = {isa = PBXBuildFile; fileRef = 987278A2EDABFD542463A54689C30E16 /* Empty.swift */; };
9AE1F20C2A234A6BDEC42DDE5205733F /* AnyObserver.swift in Sources */ = {isa = PBXBuildFile; fileRef = A04615AEE6F7F350A2937469576CA1CE /* AnyObserver.swift */; };
9C7A0F3EBA8602BBE00A0325B6D7C46B /* Never.swift in Sources */ = {isa = PBXBuildFile; fileRef = F33ED41EA53A12AF8C538654200DD7EF /* Never.swift */; };
9FA6D22405F358EADD7380CB40EC5580 /* RetryWhen.swift in Sources */ = {isa = PBXBuildFile; fileRef = FED4B6B39EBECB70E556CF66F76422AB /* RetryWhen.swift */; };
A29B5CAD923CD9A8A413A04052173D98 /* Multicast.swift in Sources */ = {isa = PBXBuildFile; fileRef = CFE54CBBB5D46BFFE9351815940C7212 /* Multicast.swift */; };
A367FAB34AE26A5B9CF60F44519CACEE /* AnonymousObserver.swift in Sources */ = {isa = PBXBuildFile; fileRef = 63A903ED6377C4EF87F9272FB74877A8 /* AnonymousObserver.swift */; };
A53F07D32EA6D954E231B456CDDA31BA /* Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = BCA3EE0AD42E116AD3FAED41B42C3FAA /* Rx.swift */; };
A5917653B9AA1B0DCC4B034FCFE39B78 /* Cancelable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3B54CB725861402B932FD70F0370B65E /* Cancelable.swift */; };
A78BB29435830FC705F8220707716CAE /* DisposeBag.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8FD816B7085C1626A031A950B6D6FD8 /* DisposeBag.swift */; };
A8F45DC625F4A8DD979AD2A73F334709 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7280E6358DEF684DD1CAA81F40E4BEF /* Foundation.framework */; };
AAC7EA65ACC0A46CCD5F8B029AAABCCB /* Reactive.swift in Sources */ = {isa = PBXBuildFile; fileRef = 26131A9668DDB75192B03FA816B0BB8E /* Reactive.swift */; };
AC1203E64F358E9CEFC4C6B20270EC50 /* SwipeOptions.swift in Sources */ = {isa = PBXBuildFile; fileRef = CB7698109CCCD7FCD0A9FA8D5B95DC05 /* SwipeOptions.swift */; };
AEE9C213996C1D81A0506BDC7BED0C65 /* Window.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3C7B54027622438DF09D2B2A9CF6E0E4 /* Window.swift */; };
AEF2E873AABEB54EC2C7888258E9B2E0 /* Lock.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDFCBA724BE43DAB4D78D878572D43FA /* Lock.swift */; };
B1E616F3D6E06B89D4DAA565055CC701 /* Errors.swift in Sources */ = {isa = PBXBuildFile; fileRef = 86FAC0425DC39951322C1B186E888019 /* Errors.swift */; };
B27BBC50125CA38770CD0220503F5DA2 /* First.swift in Sources */ = {isa = PBXBuildFile; fileRef = 52ED29C3BED40D504FF7E6E6E221D4C6 /* First.swift */; };
B2ADB00742F42FDB61983255E8BE2685 /* Skip.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB1FBC8D05DDA89CA005C52A9C38B60E /* Skip.swift */; };
B87350105F0F3314F5F1346874084A3A /* DispatchQueue+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6BBD319A453D19BDB7DB2A250310610A /* DispatchQueue+Extensions.swift */; };
B93287580C097DA2A043BAFF6F48CC9E /* Maybe.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8E40C0FFD4623E5B653C60D619F3D04E /* Maybe.swift */; };
B9A2CEC856A99D501D3756390F48308C /* Generate.swift in Sources */ = {isa = PBXBuildFile; fileRef = D99ADAD0F658E1E1845B4616F53955C7 /* Generate.swift */; };
B9DA90D5F3E7F2AD433708ADE4FEE544 /* String+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7529571FFA5D581E2310272A9981900B /* String+Rx.swift */; };
BD404113A64E23B288CAB417228EB75D /* Platform.Darwin.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3602B10C26B57B8C81D41E58179E9EA3 /* Platform.Darwin.swift */; };
BD7611EE4612FB7E755F043EB1C7A4EF /* Materialize.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE975E692A2E7C4E4F01D601D43F3CE4 /* Materialize.swift */; };
BEF79AB89AFA06C480C2C649D2237E11 /* Take.swift in Sources */ = {isa = PBXBuildFile; fileRef = E2D91BAA2A1A87FE1AC0FAD4F8336C6E /* Take.swift */; };
C0261DDE2D2927CA286672644677D791 /* DispatchQueueConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1DF3714893A441F188D91574D53D0B14 /* DispatchQueueConfiguration.swift */; };
C086A9A3650E9901511D8F002E360102 /* TakeLast.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1CCE9D7391C1E07B216094A9296B28B3 /* TakeLast.swift */; };
C39A2E02C5E91C45660EC8CA2296BA11 /* SwiftSupport.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8C329F286AA748C94F25C0976FFB75CC /* SwiftSupport.swift */; };
C4A371FDB4360F5E02D1E4490D93C1E4 /* SwipableView.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA8664B339961AB4A9D963995F4284AD /* SwipableView.swift */; };
C4F77D120E3095256357FBE7545BEE38 /* SkipUntil.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8E4B544D4C268C3A977BB53DFE287502 /* SkipUntil.swift */; };
C7808BE1EF45FC72E3B974B6DAF8E434 /* Optional.swift in Sources */ = {isa = PBXBuildFile; fileRef = A74E57E0B83FF7117669F4E52B58D982 /* Optional.swift */; };
CFF37FE5011DA8FD60CCDCCC5193AE64 /* Deferred.swift in Sources */ = {isa = PBXBuildFile; fileRef = A1D3C05140C0E0079DA7213E1CCF2C8B /* Deferred.swift */; };
D02AA780D1A884B83BE2E66A28C3FC98 /* ReplaySubject.swift in Sources */ = {isa = PBXBuildFile; fileRef = 277C78EF3218B533F58F57A90A169FC0 /* ReplaySubject.swift */; };
D0B9BB4DD1C814AB23D5B53C8F6C3ABE /* Just.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8BA709540DCD38C186C8514EE291FE64 /* Just.swift */; };
D11E373002691DA7758F4BE3D4453B4E /* Disposables.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2A07E0754BC35FCD17067B03245BF295 /* Disposables.swift */; };
D12BFE95B6E4CC7A86E881DF9C96CB02 /* CombineLatest+Collection.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0A662F4B08C48B7621B749452B5AE8B3 /* CombineLatest+Collection.swift */; };
D16362038B56187374DE7C2AE036AE2B /* SchedulerType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 99A8FFD7F88FE64C073ACFE5A27A3EE4 /* SchedulerType.swift */; };
D2AC5A4E354FB0994B8658A07CA60513 /* AsSingle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 52D74BC062F235708620CBC78DD64AB0 /* AsSingle.swift */; };
D2D4A136C9EF73623436B5851F10D4A6 /* Filter.swift in Sources */ = {isa = PBXBuildFile; fileRef = FA4085D9A683B5AB5E74C2EBC798A89C /* Filter.swift */; };
D62EFCE97D7595D09F83B4E7F9285D4A /* Switch.swift in Sources */ = {isa = PBXBuildFile; fileRef = 14DE543EF7F13844A44706D4FA902B95 /* Switch.swift */; };
DBAE481EF1CA8E64046B4EF42DEC49E7 /* SubscribeOn.swift in Sources */ = {isa = PBXBuildFile; fileRef = A3032A3ABB758298999FCD16E9286300 /* SubscribeOn.swift */; };
DC9D5C878EAE9FCD539FBD37A4141DF0 /* Zip+Collection.swift in Sources */ = {isa = PBXBuildFile; fileRef = 56F8D284F73FC543931CD82601941371 /* Zip+Collection.swift */; };
E172C3054CA9D45D265520FBFC14B6DE /* PriorityQueue.swift in Sources */ = {isa = PBXBuildFile; fileRef = CDCFCC50B8512CC1F94292456040108D /* PriorityQueue.swift */; };
E243CC0943052AE6DBB86726288E29E8 /* SerialDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 404B20D79FDDE82AD5225E4C7083C1D0 /* SerialDisposable.swift */; };
E33A7CE4BEFDBCC9AED6A5B03377246A /* ConcurrentMainScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = D00D046699CD61DDA1C605FE6B1EB1EF /* ConcurrentMainScheduler.swift */; };
E7FA250EE4D2E9A8E6CCBB764759DE31 /* BehaviorSubject.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB3573911E3161BA9F066F530D08275A /* BehaviorSubject.swift */; };
E933D22C52CD57CEA92BAFA30ABAAAB5 /* SubjectType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 274D7A8F0D1F07E8FD4BFE88A0236D9A /* SubjectType.swift */; };
E9925EA625981DB3E9658838E9FCEFF7 /* CompositeDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 364095C1C06ABFBDA345BB4E6FAC3268 /* CompositeDisposable.swift */; };
EA2EE2625DE45265FC51972BFF3CD0C0 /* SubscriptionDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6CF92703C1FFE1C61ED363C77EBCCD33 /* SubscriptionDisposable.swift */; };
EA38B7D249F78AD144B921DDD146EB25 /* ConcurrentDispatchQueueScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3AE0D88E66D5D7EB6950C811A05A4364 /* ConcurrentDispatchQueueScheduler.swift */; };
EAD593D0D6A540415489DCF60CB82127 /* Repeat.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9E6A73A8AB1E90C20646E344A4AF6A99 /* Repeat.swift */; };
ED00358A3BF50D5F9167A2922D957C78 /* Throttle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04343301C78701CEB1E56D42348C9734 /* Throttle.swift */; };
EE398FB1680B4B8227BE0CDF2673B23C /* ScheduledItemType.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4BDEE6441E002AFDF577F5B8F2F0189 /* ScheduledItemType.swift */; };
EFA10ED7CFF8EA8DE1F9467372CDA11A /* MainScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3744B62191941C877540D1E430F40341 /* MainScheduler.swift */; };
EFDB735BB1E82372C161E3EDFE0BCEDB /* Pods-KSSwipeStack_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = AB74371B27A801EAD56638A0D16E22A7 /* Pods-KSSwipeStack_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
F0AC2D487C577A5E618635CAA058C572 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7280E6358DEF684DD1CAA81F40E4BEF /* Foundation.framework */; };
F145104E4EE6B418DBFF6910CC0BCEE8 /* Sink.swift in Sources */ = {isa = PBXBuildFile; fileRef = 410878EC07B9D8778F173E2D86541EFB /* Sink.swift */; };
F3B15D60666462214B16F6FDA86C600E /* SwipeHelper.swift in Sources */ = {isa = PBXBuildFile; fileRef = D4AE494364C2D8C87F8F0DD63A1B522A /* SwipeHelper.swift */; };
F3DAD347F9DED4B044E473B01F3C9426 /* Sample.swift in Sources */ = {isa = PBXBuildFile; fileRef = 18E514595DCE38BE558EF4E18221D287 /* Sample.swift */; };
F420CAA9644A79D09E25EE9446CA1F32 /* BinaryDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 66097E5BBBF7ACE79A697D14C1083AE3 /* BinaryDisposable.swift */; };
F5E8F4AD98C1E01FC8379472C4DB61F9 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7280E6358DEF684DD1CAA81F40E4BEF /* Foundation.framework */; };
F5EC6A03260F9A1B2AE04C73E7888690 /* InfiniteSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = F1F1FF3EABB74797E345FDE68086912E /* InfiniteSequence.swift */; };
F8FCE8D5832EB57F4EAD189DEE55D6AD /* ImmediateSchedulerType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 201C275DC2CF1AF39E509A65399BE40E /* ImmediateSchedulerType.swift */; };
F9BC2F04F226B0684702AAD1629500BA /* Error.swift in Sources */ = {isa = PBXBuildFile; fileRef = 01B0643D132B07538C52EE9B6A632B5A /* Error.swift */; };
FA0A05AA14F1A0A61C4988D055689C3A /* SwipeView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F6C88853CDB0FA7CFD2382C8F9EB1E4C /* SwipeView.swift */; };
FA6BEFDBF5BFCFE18CB45C4C550CEDFC /* DelaySubscription.swift in Sources */ = {isa = PBXBuildFile; fileRef = D69A649DCD1BA9F73AC62DD0E9160823 /* DelaySubscription.swift */; };
FFE0F799031C0366602A41E9AD054421 /* Do.swift in Sources */ = {isa = PBXBuildFile; fileRef = 096BE0BF4085C5CD8DB2D92F8409D21D /* Do.swift */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
036AF28F149FA4FF71C78C5C7EED60B8 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = BA44B3E303E8669F60C06247373D2267;
remoteInfo = RxSwift;
};
2AC1661DB8D5D75D01BB7586E81BDF57 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 4E3E344DFCD8E804D16CACD4D0F9FF53;
remoteInfo = KSSwipeStack;
};
80AC678A79821BCE3B9E20913AD819CC /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = BA44B3E303E8669F60C06247373D2267;
remoteInfo = RxSwift;
};
/* End PBXContainerItemProxy section */
/* Begin PBXFileReference section */
01B0643D132B07538C52EE9B6A632B5A /* Error.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Error.swift; path = RxSwift/Observables/Error.swift; sourceTree = "<group>"; };
04343301C78701CEB1E56D42348C9734 /* Throttle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Throttle.swift; path = RxSwift/Observables/Throttle.swift; sourceTree = "<group>"; };
04E511A8A37613F7FD3414D73AE7F470 /* AsyncLock.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsyncLock.swift; path = RxSwift/Concurrency/AsyncLock.swift; sourceTree = "<group>"; };
07B7F28479BC563E875F93C49A65CC86 /* KSSwipeStack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KSSwipeStack.h; path = KSSwipeStack/Classes/KSSwipeStack.h; sourceTree = "<group>"; };
0966549C33624D506A1149619A678E36 /* SwipeDirection.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwipeDirection.swift; path = KSSwipeStack/Classes/SwipeDirection.swift; sourceTree = "<group>"; };
096BE0BF4085C5CD8DB2D92F8409D21D /* Do.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Do.swift; path = RxSwift/Observables/Do.swift; sourceTree = "<group>"; };
0A662F4B08C48B7621B749452B5AE8B3 /* CombineLatest+Collection.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CombineLatest+Collection.swift"; path = "RxSwift/Observables/CombineLatest+Collection.swift"; sourceTree = "<group>"; };
0B8C3EAAA0A8306CD320B7D4F4208C4A /* AsMaybe.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsMaybe.swift; path = RxSwift/Observables/AsMaybe.swift; sourceTree = "<group>"; };
0D4F34736AC132A7B8C28EF842363942 /* Range.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Range.swift; path = RxSwift/Observables/Range.swift; sourceTree = "<group>"; };
0DA1A0159F4FAB076901B26B3CA1C703 /* RxSwift-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RxSwift-dummy.m"; sourceTree = "<group>"; };
0FDB5F164220206791863F5D09C0EE76 /* AsyncSubject.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsyncSubject.swift; path = RxSwift/Subjects/AsyncSubject.swift; sourceTree = "<group>"; };
11167FE0C459B48A3B902C985CB37296 /* RxSwift.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = RxSwift.modulemap; sourceTree = "<group>"; };
11EC10FE813DE472055C4A1EA0E6B293 /* StartWith.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StartWith.swift; path = RxSwift/Observables/StartWith.swift; sourceTree = "<group>"; };
13E86199B4B643E8B5A1F877DB07D357 /* Map.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Map.swift; path = RxSwift/Observables/Map.swift; sourceTree = "<group>"; };
13F5DBF72F7EDD288E32DAFD1C0D6791 /* GroupBy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GroupBy.swift; path = RxSwift/Observables/GroupBy.swift; sourceTree = "<group>"; };
14343A0DC5441A3E4C9B02C214A36C1E /* CurrentThreadScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CurrentThreadScheduler.swift; path = RxSwift/Schedulers/CurrentThreadScheduler.swift; sourceTree = "<group>"; };
14DE543EF7F13844A44706D4FA902B95 /* Switch.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Switch.swift; path = RxSwift/Observables/Switch.swift; sourceTree = "<group>"; };
16297E00900209D5DD818FBC9554F59B /* ConnectableObservableType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConnectableObservableType.swift; path = RxSwift/ConnectableObservableType.swift; sourceTree = "<group>"; };
186629442990D823FD4DF31E9630A207 /* Pods-KSSwipeStack_Tests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-KSSwipeStack_Tests-resources.sh"; sourceTree = "<group>"; };
18E514595DCE38BE558EF4E18221D287 /* Sample.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Sample.swift; path = RxSwift/Observables/Sample.swift; sourceTree = "<group>"; };
19161E2A1950E7603384F1315C43B670 /* SwitchIfEmpty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwitchIfEmpty.swift; path = RxSwift/Observables/SwitchIfEmpty.swift; sourceTree = "<group>"; };
1B8320BC475208AE06BCD0CE81C39F29 /* RxSwift-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RxSwift-prefix.pch"; sourceTree = "<group>"; };
1CCE9D7391C1E07B216094A9296B28B3 /* TakeLast.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TakeLast.swift; path = RxSwift/Observables/TakeLast.swift; sourceTree = "<group>"; };
1DF3714893A441F188D91574D53D0B14 /* DispatchQueueConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DispatchQueueConfiguration.swift; path = RxSwift/Schedulers/Internal/DispatchQueueConfiguration.swift; sourceTree = "<group>"; };
201C275DC2CF1AF39E509A65399BE40E /* ImmediateSchedulerType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImmediateSchedulerType.swift; path = RxSwift/ImmediateSchedulerType.swift; sourceTree = "<group>"; };
224606BD16373BB8813868CC51CDD744 /* NopDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NopDisposable.swift; path = RxSwift/Disposables/NopDisposable.swift; sourceTree = "<group>"; };
257C04F9791B98E552E4151D0A4B0513 /* Pods-KSSwipeStack_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-KSSwipeStack_Example.debug.xcconfig"; sourceTree = "<group>"; };
26131A9668DDB75192B03FA816B0BB8E /* Reactive.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Reactive.swift; path = RxSwift/Reactive.swift; sourceTree = "<group>"; };
274D7A8F0D1F07E8FD4BFE88A0236D9A /* SubjectType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SubjectType.swift; path = RxSwift/Subjects/SubjectType.swift; sourceTree = "<group>"; };
277C78EF3218B533F58F57A90A169FC0 /* ReplaySubject.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ReplaySubject.swift; path = RxSwift/Subjects/ReplaySubject.swift; sourceTree = "<group>"; };
2A07E0754BC35FCD17067B03245BF295 /* Disposables.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Disposables.swift; path = RxSwift/Disposables/Disposables.swift; sourceTree = "<group>"; };
2B76B727B73D51623D48735F66E83375 /* Pods-KSSwipeStack_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-KSSwipeStack_Tests.modulemap"; sourceTree = "<group>"; };
2D423572C560D2B33204D49D5AFB94B1 /* Pods-KSSwipeStack_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-KSSwipeStack_Example-frameworks.sh"; sourceTree = "<group>"; };
30CDA0576172F242DAB7C18DAAED48D6 /* Observable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Observable.swift; path = RxSwift/Observable.swift; sourceTree = "<group>"; };
3533E502F2C1831E5D166924EB321A37 /* Zip+arity.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Zip+arity.swift"; path = "RxSwift/Observables/Zip+arity.swift"; sourceTree = "<group>"; };
3602B10C26B57B8C81D41E58179E9EA3 /* Platform.Darwin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Platform.Darwin.swift; path = Platform/Platform.Darwin.swift; sourceTree = "<group>"; };
364095C1C06ABFBDA345BB4E6FAC3268 /* CompositeDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CompositeDisposable.swift; path = RxSwift/Disposables/CompositeDisposable.swift; sourceTree = "<group>"; };
370EC9BDC1980AEE55204BEDC61864CF /* Pods-KSSwipeStack_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-KSSwipeStack_Example-umbrella.h"; sourceTree = "<group>"; };
3744B62191941C877540D1E430F40341 /* MainScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MainScheduler.swift; path = RxSwift/Schedulers/MainScheduler.swift; sourceTree = "<group>"; };
38E62B1616C22B976291DC4040E181D6 /* ObservableConvertibleType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObservableConvertibleType.swift; path = RxSwift/ObservableConvertibleType.swift; sourceTree = "<group>"; };
397ED6A120A7323FEFFD443352B8A3B8 /* RxSwift.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = RxSwift.framework; sourceTree = BUILT_PRODUCTS_DIR; };
39E8554DBFA86DBE818354C0EFB2E9B0 /* Zip.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Zip.swift; path = RxSwift/Observables/Zip.swift; sourceTree = "<group>"; };
3AE0D88E66D5D7EB6950C811A05A4364 /* ConcurrentDispatchQueueScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConcurrentDispatchQueueScheduler.swift; path = RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift; sourceTree = "<group>"; };
3B54CB725861402B932FD70F0370B65E /* Cancelable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Cancelable.swift; path = RxSwift/Cancelable.swift; sourceTree = "<group>"; };
3C7B54027622438DF09D2B2A9CF6E0E4 /* Window.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Window.swift; path = RxSwift/Observables/Window.swift; sourceTree = "<group>"; };
3D23097CF93EE0C1C749FED7BDACBD64 /* AnonymousDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnonymousDisposable.swift; path = RxSwift/Disposables/AnonymousDisposable.swift; sourceTree = "<group>"; };
404B20D79FDDE82AD5225E4C7083C1D0 /* SerialDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SerialDisposable.swift; path = RxSwift/Disposables/SerialDisposable.swift; sourceTree = "<group>"; };
410878EC07B9D8778F173E2D86541EFB /* Sink.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Sink.swift; path = RxSwift/Observables/Sink.swift; sourceTree = "<group>"; };
4437F358B5D31910DD9409F0FEAEE702 /* ScheduledItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ScheduledItem.swift; path = RxSwift/Schedulers/Internal/ScheduledItem.swift; sourceTree = "<group>"; };
44A62B112A96D7C88E74E03B88FE1F3C /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
48D6EE1789AFB7FEE18956812517D6C6 /* Queue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Queue.swift; path = Platform/DataStructures/Queue.swift; sourceTree = "<group>"; };
4BC0707E94F4E8BA6B0434B010BB45A9 /* Pods-KSSwipeStack_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-KSSwipeStack_Example-dummy.m"; sourceTree = "<group>"; };
4C481E410EE7AD0A8CF23808C675CB8D /* Bag+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Bag+Rx.swift"; path = "RxSwift/Extensions/Bag+Rx.swift"; sourceTree = "<group>"; };
4C895F42517A6CC37CD883BE206C28BF /* Disposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Disposable.swift; path = RxSwift/Disposable.swift; sourceTree = "<group>"; };
4EC4FFBFD10DB9651050A9A7CA9D8F66 /* Debug.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Debug.swift; path = RxSwift/Observables/Debug.swift; sourceTree = "<group>"; };
4ED42B3608413A8A7CB579ADDCB7B935 /* InvocableType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InvocableType.swift; path = RxSwift/Schedulers/Internal/InvocableType.swift; sourceTree = "<group>"; };
5291B3A338513019D5591EE94C13B392 /* BooleanDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BooleanDisposable.swift; path = RxSwift/Disposables/BooleanDisposable.swift; sourceTree = "<group>"; };
52D74BC062F235708620CBC78DD64AB0 /* AsSingle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsSingle.swift; path = RxSwift/Observables/AsSingle.swift; sourceTree = "<group>"; };
52ED29C3BED40D504FF7E6E6E221D4C6 /* First.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = First.swift; path = RxSwift/Observables/First.swift; sourceTree = "<group>"; };
55BF3D8D70B563F112385F3FA1EE2512 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
56F8D284F73FC543931CD82601941371 /* Zip+Collection.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Zip+Collection.swift"; path = "RxSwift/Observables/Zip+Collection.swift"; sourceTree = "<group>"; };
574EA67C0A4859186623FCE9B1090D94 /* Debounce.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Debounce.swift; path = RxSwift/Observables/Debounce.swift; sourceTree = "<group>"; };
5A5E6E186F2FBB2E3F5FDA62D1A79742 /* Timeout.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Timeout.swift; path = RxSwift/Observables/Timeout.swift; sourceTree = "<group>"; };
5CFFC05EF855196A4F107282BD845E96 /* Pods_KSSwipeStack_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_KSSwipeStack_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
5F0FEC4949A0D64481B5A233ABCE88F5 /* DistinctUntilChanged.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DistinctUntilChanged.swift; path = RxSwift/Observables/DistinctUntilChanged.swift; sourceTree = "<group>"; };
607C90FFC8DC21A4FDA6C40A4B330195 /* ScheduledDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ScheduledDisposable.swift; path = RxSwift/Disposables/ScheduledDisposable.swift; sourceTree = "<group>"; };
62254A45CE960DCA959D78C2598AADA2 /* SwipableData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwipableData.swift; path = KSSwipeStack/Classes/SwipableData.swift; sourceTree = "<group>"; };
623F2D80C1D3DE59AD29ECF4FF2E2924 /* CombineLatest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CombineLatest.swift; path = RxSwift/Observables/CombineLatest.swift; sourceTree = "<group>"; };
62DE64027F70AD816881EBCA03AE8B3A /* KSSwipeStack.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = KSSwipeStack.framework; sourceTree = BUILT_PRODUCTS_DIR; };
639C37B243CF59905B0EE736AEFD0723 /* Platform.Linux.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Platform.Linux.swift; path = Platform/Platform.Linux.swift; sourceTree = "<group>"; };
63A903ED6377C4EF87F9272FB74877A8 /* AnonymousObserver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnonymousObserver.swift; path = RxSwift/Observers/AnonymousObserver.swift; sourceTree = "<group>"; };
63E8B3C0C07A60E1278140C39D2521D4 /* Pods-KSSwipeStack_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-KSSwipeStack_Example-acknowledgements.markdown"; sourceTree = "<group>"; };
64F282BEC551E79087DC8CF81B24EE8A /* ObserverType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObserverType.swift; path = RxSwift/ObserverType.swift; sourceTree = "<group>"; };
653173DDABC6EF779A569B1439030E2E /* SynchronizedUnsubscribeType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SynchronizedUnsubscribeType.swift; path = RxSwift/Concurrency/SynchronizedUnsubscribeType.swift; sourceTree = "<group>"; };
6571B81DF4B1937A310940D79FC80C30 /* SchedulerServices+Emulation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "SchedulerServices+Emulation.swift"; path = "RxSwift/Schedulers/SchedulerServices+Emulation.swift"; sourceTree = "<group>"; };
6579FB49D74168032DBD8B701CE72B0A /* Timer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Timer.swift; path = RxSwift/Observables/Timer.swift; sourceTree = "<group>"; };
66097E5BBBF7ACE79A697D14C1083AE3 /* BinaryDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BinaryDisposable.swift; path = RxSwift/Disposables/BinaryDisposable.swift; sourceTree = "<group>"; };
664B4CB89DCDA0B1880BA2CE5CBFD83F /* CombineLatest+arity.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CombineLatest+arity.swift"; path = "RxSwift/Observables/CombineLatest+arity.swift"; sourceTree = "<group>"; };
676F7B2E868D75D196793B2DA5E40186 /* Pods_KSSwipeStack_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_KSSwipeStack_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; };
6836CA93140CED73D378A157F147E339 /* Completable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Completable.swift; path = RxSwift/Traits/Completable.swift; sourceTree = "<group>"; };
68B8A6B21C8C1E42823C37C4EEE2FD24 /* VirtualTimeScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = VirtualTimeScheduler.swift; path = RxSwift/Schedulers/VirtualTimeScheduler.swift; sourceTree = "<group>"; };
69D0C43F13B960AA7CC2921168360442 /* ObserveOn.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObserveOn.swift; path = RxSwift/Observables/ObserveOn.swift; sourceTree = "<group>"; };
6A880617D78C83860A8C4973075D0D7F /* PrimitiveSequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PrimitiveSequence.swift; path = RxSwift/Traits/PrimitiveSequence.swift; sourceTree = "<group>"; };
6BBD319A453D19BDB7DB2A250310610A /* DispatchQueue+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DispatchQueue+Extensions.swift"; path = "Platform/DispatchQueue+Extensions.swift"; sourceTree = "<group>"; };
6CF92703C1FFE1C61ED363C77EBCCD33 /* SubscriptionDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SubscriptionDisposable.swift; path = RxSwift/Disposables/SubscriptionDisposable.swift; sourceTree = "<group>"; };
6D5DFA2839781124EC154CC0CDBD4C59 /* SynchronizedDisposeType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SynchronizedDisposeType.swift; path = RxSwift/Concurrency/SynchronizedDisposeType.swift; sourceTree = "<group>"; };
6D95E635B9DDFF22CC87B581387612B2 /* OperationQueueScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OperationQueueScheduler.swift; path = RxSwift/Schedulers/OperationQueueScheduler.swift; sourceTree = "<group>"; };
6F0762A61C64AAE88E69036E7172F281 /* RxSwift.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RxSwift.xcconfig; sourceTree = "<group>"; };
745BE594E349E9F5B3F60C8225B1C900 /* Reduce.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Reduce.swift; path = RxSwift/Observables/Reduce.swift; sourceTree = "<group>"; };
7467DEA4D46C1C95D06E934315AA13A9 /* Delay.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Delay.swift; path = RxSwift/Observables/Delay.swift; sourceTree = "<group>"; };
7529571FFA5D581E2310272A9981900B /* String+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "String+Rx.swift"; path = "RxSwift/Extensions/String+Rx.swift"; sourceTree = "<group>"; };
772E353720251005C79C2C88D6E68A0B /* ToArray.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ToArray.swift; path = RxSwift/Observables/ToArray.swift; sourceTree = "<group>"; };
7AF9560D9F2C79F249DD45EB4E81B9F1 /* Pods-KSSwipeStack_Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-KSSwipeStack_Example-resources.sh"; sourceTree = "<group>"; };
7BE04F3651716D58DAD613C5357FEBA4 /* Pods-KSSwipeStack_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-KSSwipeStack_Tests.release.xcconfig"; sourceTree = "<group>"; };
7E2F039EA6F7F7BF3269EC43F19FCEBD /* Concat.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Concat.swift; path = RxSwift/Observables/Concat.swift; sourceTree = "<group>"; };
8004344A04C3DCD44666B3905D1E0F60 /* InvocableScheduledItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InvocableScheduledItem.swift; path = RxSwift/Schedulers/Internal/InvocableScheduledItem.swift; sourceTree = "<group>"; };
824978904F6A37C16988EE611ED1729E /* ShareReplayScope.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ShareReplayScope.swift; path = RxSwift/Observables/ShareReplayScope.swift; sourceTree = "<group>"; };
836295E383BF78493B4ACD61F7567973 /* GroupedObservable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GroupedObservable.swift; path = RxSwift/GroupedObservable.swift; sourceTree = "<group>"; };
84EEFE01AA1666F406D594CADD65DAEA /* KSSwipeStack-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "KSSwipeStack-dummy.m"; sourceTree = "<group>"; };
84F4CF21B07067899852B91144F14774 /* Completable+AndThen.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Completable+AndThen.swift"; path = "RxSwift/Traits/Completable+AndThen.swift"; sourceTree = "<group>"; };
86440BF3A7E677C8D290CD835B303565 /* VirtualTimeConverterType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = VirtualTimeConverterType.swift; path = RxSwift/Schedulers/VirtualTimeConverterType.swift; sourceTree = "<group>"; };
86845436C0C36BC2B1DCC3A3BF252FDF /* Swipe.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Swipe.swift; path = KSSwipeStack/Classes/Swipe.swift; sourceTree = "<group>"; };
86CA0158A3B829240131287808D91B17 /* RecursiveScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RecursiveScheduler.swift; path = RxSwift/Schedulers/RecursiveScheduler.swift; sourceTree = "<group>"; };
86FAC0425DC39951322C1B186E888019 /* Errors.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Errors.swift; path = RxSwift/Errors.swift; sourceTree = "<group>"; };
870754994241868063928D498212FB89 /* TakeWhile.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TakeWhile.swift; path = RxSwift/Observables/TakeWhile.swift; sourceTree = "<group>"; };
8709506DA028CCD435EB1554ECC5ABFF /* AddRef.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AddRef.swift; path = RxSwift/Observables/AddRef.swift; sourceTree = "<group>"; };
8851DC077C7ADE382F8250EEEAB7831A /* SynchronizedOnType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SynchronizedOnType.swift; path = RxSwift/Concurrency/SynchronizedOnType.swift; sourceTree = "<group>"; };
888C596BFDFE32DAB6A3ADEB13C2FDE1 /* RecursiveLock.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RecursiveLock.swift; path = Platform/RecursiveLock.swift; sourceTree = "<group>"; };
8BA709540DCD38C186C8514EE291FE64 /* Just.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Just.swift; path = RxSwift/Observables/Just.swift; sourceTree = "<group>"; };
8C329F286AA748C94F25C0976FFB75CC /* SwiftSupport.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftSupport.swift; path = RxSwift/SwiftSupport/SwiftSupport.swift; sourceTree = "<group>"; };
8E40C0FFD4623E5B653C60D619F3D04E /* Maybe.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Maybe.swift; path = RxSwift/Traits/Maybe.swift; sourceTree = "<group>"; };
8E4B544D4C268C3A977BB53DFE287502 /* SkipUntil.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SkipUntil.swift; path = RxSwift/Observables/SkipUntil.swift; sourceTree = "<group>"; };
9121E067C51AA8335371655C2DC6C373 /* Scan.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Scan.swift; path = RxSwift/Observables/Scan.swift; sourceTree = "<group>"; };
91253EAB79481C279C0FD5DC3D161756 /* TailRecursiveSink.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TailRecursiveSink.swift; path = RxSwift/Observers/TailRecursiveSink.swift; sourceTree = "<group>"; };
92B61551E5E98AF6580BD4675D864F86 /* KSSwipeStack-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "KSSwipeStack-prefix.pch"; sourceTree = "<group>"; };
93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
9519C89F339BAA9E5FFFE84EB205B4F2 /* WithLatestFrom.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WithLatestFrom.swift; path = RxSwift/Observables/WithLatestFrom.swift; sourceTree = "<group>"; };
987278A2EDABFD542463A54689C30E16 /* Empty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Empty.swift; path = RxSwift/Observables/Empty.swift; sourceTree = "<group>"; };
99A8FFD7F88FE64C073ACFE5A27A3EE4 /* SchedulerType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SchedulerType.swift; path = RxSwift/SchedulerType.swift; sourceTree = "<group>"; };
9CDB8C4C654093DD10D6919CD2618D0B /* SingleAssignmentDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SingleAssignmentDisposable.swift; path = RxSwift/Disposables/SingleAssignmentDisposable.swift; sourceTree = "<group>"; };
9E66A00EA92C06317F0B78D049287892 /* Using.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Using.swift; path = RxSwift/Observables/Using.swift; sourceTree = "<group>"; };
9E6A73A8AB1E90C20646E344A4AF6A99 /* Repeat.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Repeat.swift; path = RxSwift/Observables/Repeat.swift; sourceTree = "<group>"; };
A04615AEE6F7F350A2937469576CA1CE /* AnyObserver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnyObserver.swift; path = RxSwift/AnyObserver.swift; sourceTree = "<group>"; };
A1D3C05140C0E0079DA7213E1CCF2C8B /* Deferred.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Deferred.swift; path = RxSwift/Observables/Deferred.swift; sourceTree = "<group>"; };
A3032A3ABB758298999FCD16E9286300 /* SubscribeOn.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SubscribeOn.swift; path = RxSwift/Observables/SubscribeOn.swift; sourceTree = "<group>"; };
A4082E6DFDB2848A796547F32D287C83 /* Event.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Event.swift; path = RxSwift/Event.swift; sourceTree = "<group>"; };
A463DE64864FC04BC5B965E55FB9E3A7 /* PrimitiveSequence+Zip+arity.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "PrimitiveSequence+Zip+arity.swift"; path = "RxSwift/Traits/PrimitiveSequence+Zip+arity.swift"; sourceTree = "<group>"; };
A665D13D9CB1C41E17E46A736CB183FB /* Pods-KSSwipeStack_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-KSSwipeStack_Tests-acknowledgements.plist"; sourceTree = "<group>"; };
A6D9EE383BC4BE09E3505DE27762D165 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
A74E57E0B83FF7117669F4E52B58D982 /* Optional.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Optional.swift; path = RxSwift/Observables/Optional.swift; sourceTree = "<group>"; };
AA8664B339961AB4A9D963995F4284AD /* SwipableView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwipableView.swift; path = KSSwipeStack/Classes/SwipableView.swift; sourceTree = "<group>"; };
AAE9667DFF5CE0E07110E0E275F3C030 /* Pods-KSSwipeStack_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-KSSwipeStack_Tests-acknowledgements.markdown"; sourceTree = "<group>"; };
AAF0236C7C0BB7BD07900F91FBA74401 /* RefCountDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RefCountDisposable.swift; path = RxSwift/Disposables/RefCountDisposable.swift; sourceTree = "<group>"; };
AB0359546D76AFAD847D6A8973E2610E /* Pods-KSSwipeStack_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-KSSwipeStack_Tests-dummy.m"; sourceTree = "<group>"; };
AB74371B27A801EAD56638A0D16E22A7 /* Pods-KSSwipeStack_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-KSSwipeStack_Tests-umbrella.h"; sourceTree = "<group>"; };
AE1E31E0DA634C2E99D2067E94DAE08B /* Bag.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Bag.swift; path = Platform/DataStructures/Bag.swift; sourceTree = "<group>"; };
B2DD684BE9ECBE7B2BEB04A547685D8E /* LockOwnerType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LockOwnerType.swift; path = RxSwift/Concurrency/LockOwnerType.swift; sourceTree = "<group>"; };
B3DBA46B2E96A313A48E448EE95587BE /* Merge.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Merge.swift; path = RxSwift/Observables/Merge.swift; sourceTree = "<group>"; };
B4A49CF4E98435CF670836BC2012D97C /* RxMutableBox.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxMutableBox.swift; path = RxSwift/RxMutableBox.swift; sourceTree = "<group>"; };
B4BDEE6441E002AFDF577F5B8F2F0189 /* ScheduledItemType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ScheduledItemType.swift; path = RxSwift/Schedulers/Internal/ScheduledItemType.swift; sourceTree = "<group>"; };
B6EAA1A9D2089CD724FBB1A73C5683B6 /* ObservableType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObservableType.swift; path = RxSwift/ObservableType.swift; sourceTree = "<group>"; };
B8F18514CFAA1AC1C1CD02DC39B81161 /* ObservableType+PrimitiveSequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ObservableType+PrimitiveSequence.swift"; path = "RxSwift/Traits/ObservableType+PrimitiveSequence.swift"; sourceTree = "<group>"; };
B9A05DB1D2DEC97241D7F82323DCC298 /* SerialDispatchQueueScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SerialDispatchQueueScheduler.swift; path = RxSwift/Schedulers/SerialDispatchQueueScheduler.swift; sourceTree = "<group>"; };
BCA3EE0AD42E116AD3FAED41B42C3FAA /* Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Rx.swift; path = RxSwift/Rx.swift; sourceTree = "<group>"; };
BE4FBA07972175EDDD25E3B4C2791A14 /* PanDirectionGestureRecognizer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PanDirectionGestureRecognizer.swift; path = KSSwipeStack/Classes/PanDirectionGestureRecognizer.swift; sourceTree = "<group>"; };
BE975E692A2E7C4E4F01D601D43F3CE4 /* Materialize.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Materialize.swift; path = RxSwift/Observables/Materialize.swift; sourceTree = "<group>"; };
BF8D9AA5E59FDEFDE105A6D0E2226E9A /* Pods-KSSwipeStack_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-KSSwipeStack_Example-acknowledgements.plist"; sourceTree = "<group>"; };
BFF1EC1EFCCCC5C132755E8EB3035CEE /* DefaultIfEmpty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DefaultIfEmpty.swift; path = RxSwift/Observables/DefaultIfEmpty.swift; sourceTree = "<group>"; };
C07EC684B28F590992B342C525AB320D /* Deprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Deprecated.swift; path = RxSwift/Deprecated.swift; sourceTree = "<group>"; };
C3DE0C25DDABDF51429B18F07245C080 /* Pods-KSSwipeStack_Tests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-KSSwipeStack_Tests-frameworks.sh"; sourceTree = "<group>"; };
C79625897F40A4CFFD0C7332F245EF4D /* HistoricalScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HistoricalScheduler.swift; path = RxSwift/Schedulers/HistoricalScheduler.swift; sourceTree = "<group>"; };
C7BF5E28C388DB651AA4E92C855813D0 /* RxSwift-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RxSwift-umbrella.h"; sourceTree = "<group>"; };
C9C1C031CA481EA4A91CDF721D51C739 /* KSSwipeStack-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "KSSwipeStack-umbrella.h"; sourceTree = "<group>"; };
CAB11313F740B26C506EBCE00E7BB81A /* SingleAsync.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SingleAsync.swift; path = RxSwift/Observables/SingleAsync.swift; sourceTree = "<group>"; };
CB3A4E40BD6085C26BA9B94644E4771B /* SwipeDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwipeDelegate.swift; path = KSSwipeStack/Classes/SwipeDelegate.swift; sourceTree = "<group>"; };
CB7698109CCCD7FCD0A9FA8D5B95DC05 /* SwipeOptions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwipeOptions.swift; path = KSSwipeStack/Classes/SwipeOptions.swift; sourceTree = "<group>"; };
CCAF0409EC3BEF485248D64AA670F3B9 /* ObservableType+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ObservableType+Extensions.swift"; path = "RxSwift/ObservableType+Extensions.swift"; sourceTree = "<group>"; };
CCD85FFD6C09F9ACA770EAFB6CB9C2AB /* Sequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Sequence.swift; path = RxSwift/Observables/Sequence.swift; sourceTree = "<group>"; };
CDCFCC50B8512CC1F94292456040108D /* PriorityQueue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PriorityQueue.swift; path = Platform/DataStructures/PriorityQueue.swift; sourceTree = "<group>"; };
CFE54CBBB5D46BFFE9351815940C7212 /* Multicast.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Multicast.swift; path = RxSwift/Observables/Multicast.swift; sourceTree = "<group>"; };
D00D046699CD61DDA1C605FE6B1EB1EF /* ConcurrentMainScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConcurrentMainScheduler.swift; path = RxSwift/Schedulers/ConcurrentMainScheduler.swift; sourceTree = "<group>"; };
D0C28D93C9846ED33A1106F2C65E4ADA /* Pods-KSSwipeStack_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-KSSwipeStack_Example.release.xcconfig"; sourceTree = "<group>"; };
D13453C31D9D4F17248006ED70A72B1D /* Producer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Producer.swift; path = RxSwift/Observables/Producer.swift; sourceTree = "<group>"; };
D1E0A72C279DFB7B00A8311AD6F787B2 /* ObserverBase.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObserverBase.swift; path = RxSwift/Observers/ObserverBase.swift; sourceTree = "<group>"; };
D2894E0E42536AC759F4D40D7CD278FB /* HistoricalSchedulerTimeConverter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HistoricalSchedulerTimeConverter.swift; path = RxSwift/Schedulers/HistoricalSchedulerTimeConverter.swift; sourceTree = "<group>"; };
D4AE494364C2D8C87F8F0DD63A1B522A /* SwipeHelper.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwipeHelper.swift; path = KSSwipeStack/Classes/SwipeHelper.swift; sourceTree = "<group>"; };
D69A649DCD1BA9F73AC62DD0E9160823 /* DelaySubscription.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DelaySubscription.swift; path = RxSwift/Observables/DelaySubscription.swift; sourceTree = "<group>"; };
D7C3EFDE0739002559CCA557A32BF40C /* Single.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Single.swift; path = RxSwift/Traits/Single.swift; sourceTree = "<group>"; };
D8AF6F4C6501810FD803368987196011 /* PublishSubject.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PublishSubject.swift; path = RxSwift/Subjects/PublishSubject.swift; sourceTree = "<group>"; };
D9134996E1694A7A8D05283FA0CDBBA7 /* Pods-KSSwipeStack_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-KSSwipeStack_Example.modulemap"; sourceTree = "<group>"; };
D99ADAD0F658E1E1845B4616F53955C7 /* Generate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Generate.swift; path = RxSwift/Observables/Generate.swift; sourceTree = "<group>"; };
D9D741B268A3433455B545C47C7C3560 /* Pods-KSSwipeStack_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-KSSwipeStack_Tests.debug.xcconfig"; sourceTree = "<group>"; };
DB1FBC8D05DDA89CA005C52A9C38B60E /* Skip.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Skip.swift; path = RxSwift/Observables/Skip.swift; sourceTree = "<group>"; };
DB3573911E3161BA9F066F530D08275A /* BehaviorSubject.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BehaviorSubject.swift; path = RxSwift/Subjects/BehaviorSubject.swift; sourceTree = "<group>"; };
DCAF397EC252D20EB91206BFE80144AD /* RxSwift.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = RxSwift.framework; sourceTree = BUILT_PRODUCTS_DIR; };
DDFCBA724BE43DAB4D78D878572D43FA /* Lock.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Lock.swift; path = RxSwift/Concurrency/Lock.swift; sourceTree = "<group>"; };
E1AA6778DFB8A571BA0A4140B084A025 /* Catch.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Catch.swift; path = RxSwift/Observables/Catch.swift; sourceTree = "<group>"; };
E238FEA91CBDAFFF97AEF4CA108358D7 /* DisposeBase.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DisposeBase.swift; path = RxSwift/Disposables/DisposeBase.swift; sourceTree = "<group>"; };
E2D91BAA2A1A87FE1AC0FAD4F8336C6E /* Take.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Take.swift; path = RxSwift/Observables/Take.swift; sourceTree = "<group>"; };
E2FF3470330E66C4B8231393B52290A8 /* KSSwipeStack.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = KSSwipeStack.xcconfig; sourceTree = "<group>"; };
E683AD4B41E4DA9041F2EDCC25E0E2A0 /* Buffer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Buffer.swift; path = RxSwift/Observables/Buffer.swift; sourceTree = "<group>"; };
E770CADA4AD1A1AEEB4B8F0845EA1276 /* SkipWhile.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SkipWhile.swift; path = RxSwift/Observables/SkipWhile.swift; sourceTree = "<group>"; };
E8B1B9FE19C5B52B07CC70CBFE0A9E2F /* Amb.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Amb.swift; path = RxSwift/Observables/Amb.swift; sourceTree = "<group>"; };
EDA028485ADAF2CB23F9D9D561607F7B /* KSSwipeStack.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = KSSwipeStack.modulemap; sourceTree = "<group>"; };
EDF564576123A1647DBD215F6ABE01DF /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
F1F1FF3EABB74797E345FDE68086912E /* InfiniteSequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InfiniteSequence.swift; path = Platform/DataStructures/InfiniteSequence.swift; sourceTree = "<group>"; };
F2B023D222272CBC334F76C0B4054124 /* Dematerialize.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Dematerialize.swift; path = RxSwift/Observables/Dematerialize.swift; sourceTree = "<group>"; };
F33ED41EA53A12AF8C538654200DD7EF /* Never.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Never.swift; path = RxSwift/Observables/Never.swift; sourceTree = "<group>"; };
F344566957E60EC4D7380D0FCBD44251 /* Create.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Create.swift; path = RxSwift/Observables/Create.swift; sourceTree = "<group>"; };
F5ACC359E469688F9BB2C004B80BD8F0 /* ElementAt.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ElementAt.swift; path = RxSwift/Observables/ElementAt.swift; sourceTree = "<group>"; };
F6C88853CDB0FA7CFD2382C8F9EB1E4C /* SwipeView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwipeView.swift; path = KSSwipeStack/Classes/SwipeView.swift; sourceTree = "<group>"; };
F7280E6358DEF684DD1CAA81F40E4BEF /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.3.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; };
F89F97837D89AD6DA04D3AB78C694BD4 /* TakeUntil.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TakeUntil.swift; path = RxSwift/Observables/TakeUntil.swift; sourceTree = "<group>"; };
F8FD816B7085C1626A031A950B6D6FD8 /* DisposeBag.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DisposeBag.swift; path = RxSwift/Disposables/DisposeBag.swift; sourceTree = "<group>"; };
FA4085D9A683B5AB5E74C2EBC798A89C /* Filter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Filter.swift; path = RxSwift/Observables/Filter.swift; sourceTree = "<group>"; };
FD29F1F9986E5CAA766A874352995865 /* Enumerated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Enumerated.swift; path = RxSwift/Observables/Enumerated.swift; sourceTree = "<group>"; };
FED4B6B39EBECB70E556CF66F76422AB /* RetryWhen.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RetryWhen.swift; path = RxSwift/Observables/RetryWhen.swift; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
04DBF38CD9836637506242F3BCE53F9B /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
F5E8F4AD98C1E01FC8379472C4DB61F9 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
05787A50A92678F1C004AF133582BCE1 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
F0AC2D487C577A5E618635CAA058C572 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
ACD4497C969E26A9DFCAB10B347CD993 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
3061BB2672D6C7A9054DF120DCEA0BED /* Foundation.framework in Frameworks */,
8B52D8C8CF20BC2B174F8AB84B77DE4E /* RxSwift.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
D6FB721063D1B670B1147FB66E2F6861 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
A8F45DC625F4A8DD979AD2A73F334709 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
2A4C36E7B3F4E82093C3ACFA84B51CA5 /* Development Pods */ = {
isa = PBXGroup;
children = (
2C179584ED8342D0411F62C20048FBF5 /* KSSwipeStack */,
);
name = "Development Pods";
sourceTree = "<group>";
};
2C179584ED8342D0411F62C20048FBF5 /* KSSwipeStack */ = {
isa = PBXGroup;
children = (
07B7F28479BC563E875F93C49A65CC86 /* KSSwipeStack.h */,
BE4FBA07972175EDDD25E3B4C2791A14 /* PanDirectionGestureRecognizer.swift */,
62254A45CE960DCA959D78C2598AADA2 /* SwipableData.swift */,
AA8664B339961AB4A9D963995F4284AD /* SwipableView.swift */,
86845436C0C36BC2B1DCC3A3BF252FDF /* Swipe.swift */,
CB3A4E40BD6085C26BA9B94644E4771B /* SwipeDelegate.swift */,
0966549C33624D506A1149619A678E36 /* SwipeDirection.swift */,
D4AE494364C2D8C87F8F0DD63A1B522A /* SwipeHelper.swift */,
CB7698109CCCD7FCD0A9FA8D5B95DC05 /* SwipeOptions.swift */,
F6C88853CDB0FA7CFD2382C8F9EB1E4C /* SwipeView.swift */,
5283B182B3801B5FA878B8164044FC26 /* Support Files */,
);
name = KSSwipeStack;
path = ../..;
sourceTree = "<group>";
};
4B71E05EFFAF585F413DAE9DB8BE4298 /* Products */ = {
isa = PBXGroup;
children = (
62DE64027F70AD816881EBCA03AE8B3A /* KSSwipeStack.framework */,
676F7B2E868D75D196793B2DA5E40186 /* Pods_KSSwipeStack_Example.framework */,
5CFFC05EF855196A4F107282BD845E96 /* Pods_KSSwipeStack_Tests.framework */,
DCAF397EC252D20EB91206BFE80144AD /* RxSwift.framework */,
);
name = Products;
sourceTree = "<group>";
};
5283B182B3801B5FA878B8164044FC26 /* Support Files */ = {
isa = PBXGroup;
children = (
A6D9EE383BC4BE09E3505DE27762D165 /* Info.plist */,
EDA028485ADAF2CB23F9D9D561607F7B /* KSSwipeStack.modulemap */,
E2FF3470330E66C4B8231393B52290A8 /* KSSwipeStack.xcconfig */,
84EEFE01AA1666F406D594CADD65DAEA /* KSSwipeStack-dummy.m */,
92B61551E5E98AF6580BD4675D864F86 /* KSSwipeStack-prefix.pch */,
C9C1C031CA481EA4A91CDF721D51C739 /* KSSwipeStack-umbrella.h */,
);
name = "Support Files";
path = "Example/Pods/Target Support Files/KSSwipeStack";
sourceTree = "<group>";
};
71C1F39C20F7F859FB245A1026D6704A /* Pods-KSSwipeStack_Tests */ = {
isa = PBXGroup;
children = (
44A62B112A96D7C88E74E03B88FE1F3C /* Info.plist */,
2B76B727B73D51623D48735F66E83375 /* Pods-KSSwipeStack_Tests.modulemap */,
AAE9667DFF5CE0E07110E0E275F3C030 /* Pods-KSSwipeStack_Tests-acknowledgements.markdown */,
A665D13D9CB1C41E17E46A736CB183FB /* Pods-KSSwipeStack_Tests-acknowledgements.plist */,
AB0359546D76AFAD847D6A8973E2610E /* Pods-KSSwipeStack_Tests-dummy.m */,
C3DE0C25DDABDF51429B18F07245C080 /* Pods-KSSwipeStack_Tests-frameworks.sh */,
186629442990D823FD4DF31E9630A207 /* Pods-KSSwipeStack_Tests-resources.sh */,
AB74371B27A801EAD56638A0D16E22A7 /* Pods-KSSwipeStack_Tests-umbrella.h */,
D9D741B268A3433455B545C47C7C3560 /* Pods-KSSwipeStack_Tests.debug.xcconfig */,
7BE04F3651716D58DAD613C5357FEBA4 /* Pods-KSSwipeStack_Tests.release.xcconfig */,
);
name = "Pods-KSSwipeStack_Tests";
path = "Target Support Files/Pods-KSSwipeStack_Tests";
sourceTree = "<group>";
};
7A3BD000B1FD8E4011DC534B33BDD0E9 /* Frameworks */ = {
isa = PBXGroup;
children = (
397ED6A120A7323FEFFD443352B8A3B8 /* RxSwift.framework */,
A333A0148FCDD9B7019BAA72B2667C5B /* iOS */,
);
name = Frameworks;
sourceTree = "<group>";
};
7DB346D0F39D3F0E887471402A8071AB = {
isa = PBXGroup;
children = (
93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */,
2A4C36E7B3F4E82093C3ACFA84B51CA5 /* Development Pods */,
7A3BD000B1FD8E4011DC534B33BDD0E9 /* Frameworks */,
ACC81BBE859C1328A6DD6B5A9A9C56E1 /* Pods */,
4B71E05EFFAF585F413DAE9DB8BE4298 /* Products */,
82FC71FEE24DA08C7C91B0F63341F6B2 /* Targets Support Files */,
);
sourceTree = "<group>";
};
82FC71FEE24DA08C7C91B0F63341F6B2 /* Targets Support Files */ = {
isa = PBXGroup;
children = (
EE83C5D66C501DA3DA4A82708E6B60FB /* Pods-KSSwipeStack_Example */,
71C1F39C20F7F859FB245A1026D6704A /* Pods-KSSwipeStack_Tests */,
);
name = "Targets Support Files";
sourceTree = "<group>";
};
A2C710C1DFBAC649852529F5709A6C0E /* RxSwift */ = {
isa = PBXGroup;
children = (
8709506DA028CCD435EB1554ECC5ABFF /* AddRef.swift */,
E8B1B9FE19C5B52B07CC70CBFE0A9E2F /* Amb.swift */,
3D23097CF93EE0C1C749FED7BDACBD64 /* AnonymousDisposable.swift */,
63A903ED6377C4EF87F9272FB74877A8 /* AnonymousObserver.swift */,
A04615AEE6F7F350A2937469576CA1CE /* AnyObserver.swift */,
0B8C3EAAA0A8306CD320B7D4F4208C4A /* AsMaybe.swift */,
52D74BC062F235708620CBC78DD64AB0 /* AsSingle.swift */,
04E511A8A37613F7FD3414D73AE7F470 /* AsyncLock.swift */,
0FDB5F164220206791863F5D09C0EE76 /* AsyncSubject.swift */,
AE1E31E0DA634C2E99D2067E94DAE08B /* Bag.swift */,
4C481E410EE7AD0A8CF23808C675CB8D /* Bag+Rx.swift */,
DB3573911E3161BA9F066F530D08275A /* BehaviorSubject.swift */,
66097E5BBBF7ACE79A697D14C1083AE3 /* BinaryDisposable.swift */,
5291B3A338513019D5591EE94C13B392 /* BooleanDisposable.swift */,
E683AD4B41E4DA9041F2EDCC25E0E2A0 /* Buffer.swift */,
3B54CB725861402B932FD70F0370B65E /* Cancelable.swift */,
E1AA6778DFB8A571BA0A4140B084A025 /* Catch.swift */,
623F2D80C1D3DE59AD29ECF4FF2E2924 /* CombineLatest.swift */,
664B4CB89DCDA0B1880BA2CE5CBFD83F /* CombineLatest+arity.swift */,
0A662F4B08C48B7621B749452B5AE8B3 /* CombineLatest+Collection.swift */,
6836CA93140CED73D378A157F147E339 /* Completable.swift */,
84F4CF21B07067899852B91144F14774 /* Completable+AndThen.swift */,
364095C1C06ABFBDA345BB4E6FAC3268 /* CompositeDisposable.swift */,
7E2F039EA6F7F7BF3269EC43F19FCEBD /* Concat.swift */,
3AE0D88E66D5D7EB6950C811A05A4364 /* ConcurrentDispatchQueueScheduler.swift */,
D00D046699CD61DDA1C605FE6B1EB1EF /* ConcurrentMainScheduler.swift */,
16297E00900209D5DD818FBC9554F59B /* ConnectableObservableType.swift */,
F344566957E60EC4D7380D0FCBD44251 /* Create.swift */,
14343A0DC5441A3E4C9B02C214A36C1E /* CurrentThreadScheduler.swift */,
574EA67C0A4859186623FCE9B1090D94 /* Debounce.swift */,
4EC4FFBFD10DB9651050A9A7CA9D8F66 /* Debug.swift */,
BFF1EC1EFCCCC5C132755E8EB3035CEE /* DefaultIfEmpty.swift */,
A1D3C05140C0E0079DA7213E1CCF2C8B /* Deferred.swift */,
7467DEA4D46C1C95D06E934315AA13A9 /* Delay.swift */,
D69A649DCD1BA9F73AC62DD0E9160823 /* DelaySubscription.swift */,
F2B023D222272CBC334F76C0B4054124 /* Dematerialize.swift */,
C07EC684B28F590992B342C525AB320D /* Deprecated.swift */,
6BBD319A453D19BDB7DB2A250310610A /* DispatchQueue+Extensions.swift */,
1DF3714893A441F188D91574D53D0B14 /* DispatchQueueConfiguration.swift */,
4C895F42517A6CC37CD883BE206C28BF /* Disposable.swift */,
2A07E0754BC35FCD17067B03245BF295 /* Disposables.swift */,
F8FD816B7085C1626A031A950B6D6FD8 /* DisposeBag.swift */,
E238FEA91CBDAFFF97AEF4CA108358D7 /* DisposeBase.swift */,
5F0FEC4949A0D64481B5A233ABCE88F5 /* DistinctUntilChanged.swift */,
096BE0BF4085C5CD8DB2D92F8409D21D /* Do.swift */,
F5ACC359E469688F9BB2C004B80BD8F0 /* ElementAt.swift */,
987278A2EDABFD542463A54689C30E16 /* Empty.swift */,
FD29F1F9986E5CAA766A874352995865 /* Enumerated.swift */,
01B0643D132B07538C52EE9B6A632B5A /* Error.swift */,
86FAC0425DC39951322C1B186E888019 /* Errors.swift */,
A4082E6DFDB2848A796547F32D287C83 /* Event.swift */,
FA4085D9A683B5AB5E74C2EBC798A89C /* Filter.swift */,
52ED29C3BED40D504FF7E6E6E221D4C6 /* First.swift */,
D99ADAD0F658E1E1845B4616F53955C7 /* Generate.swift */,
13F5DBF72F7EDD288E32DAFD1C0D6791 /* GroupBy.swift */,
836295E383BF78493B4ACD61F7567973 /* GroupedObservable.swift */,
C79625897F40A4CFFD0C7332F245EF4D /* HistoricalScheduler.swift */,
D2894E0E42536AC759F4D40D7CD278FB /* HistoricalSchedulerTimeConverter.swift */,
201C275DC2CF1AF39E509A65399BE40E /* ImmediateSchedulerType.swift */,
F1F1FF3EABB74797E345FDE68086912E /* InfiniteSequence.swift */,
8004344A04C3DCD44666B3905D1E0F60 /* InvocableScheduledItem.swift */,
4ED42B3608413A8A7CB579ADDCB7B935 /* InvocableType.swift */,
8BA709540DCD38C186C8514EE291FE64 /* Just.swift */,
DDFCBA724BE43DAB4D78D878572D43FA /* Lock.swift */,
B2DD684BE9ECBE7B2BEB04A547685D8E /* LockOwnerType.swift */,
3744B62191941C877540D1E430F40341 /* MainScheduler.swift */,
13E86199B4B643E8B5A1F877DB07D357 /* Map.swift */,
BE975E692A2E7C4E4F01D601D43F3CE4 /* Materialize.swift */,
8E40C0FFD4623E5B653C60D619F3D04E /* Maybe.swift */,
B3DBA46B2E96A313A48E448EE95587BE /* Merge.swift */,
CFE54CBBB5D46BFFE9351815940C7212 /* Multicast.swift */,
F33ED41EA53A12AF8C538654200DD7EF /* Never.swift */,
224606BD16373BB8813868CC51CDD744 /* NopDisposable.swift */,
30CDA0576172F242DAB7C18DAAED48D6 /* Observable.swift */,
38E62B1616C22B976291DC4040E181D6 /* ObservableConvertibleType.swift */,
B6EAA1A9D2089CD724FBB1A73C5683B6 /* ObservableType.swift */,
CCAF0409EC3BEF485248D64AA670F3B9 /* ObservableType+Extensions.swift */,
B8F18514CFAA1AC1C1CD02DC39B81161 /* ObservableType+PrimitiveSequence.swift */,
69D0C43F13B960AA7CC2921168360442 /* ObserveOn.swift */,
D1E0A72C279DFB7B00A8311AD6F787B2 /* ObserverBase.swift */,
64F282BEC551E79087DC8CF81B24EE8A /* ObserverType.swift */,
6D95E635B9DDFF22CC87B581387612B2 /* OperationQueueScheduler.swift */,
A74E57E0B83FF7117669F4E52B58D982 /* Optional.swift */,
3602B10C26B57B8C81D41E58179E9EA3 /* Platform.Darwin.swift */,
639C37B243CF59905B0EE736AEFD0723 /* Platform.Linux.swift */,
6A880617D78C83860A8C4973075D0D7F /* PrimitiveSequence.swift */,
A463DE64864FC04BC5B965E55FB9E3A7 /* PrimitiveSequence+Zip+arity.swift */,
CDCFCC50B8512CC1F94292456040108D /* PriorityQueue.swift */,
D13453C31D9D4F17248006ED70A72B1D /* Producer.swift */,
D8AF6F4C6501810FD803368987196011 /* PublishSubject.swift */,
48D6EE1789AFB7FEE18956812517D6C6 /* Queue.swift */,
0D4F34736AC132A7B8C28EF842363942 /* Range.swift */,
26131A9668DDB75192B03FA816B0BB8E /* Reactive.swift */,
888C596BFDFE32DAB6A3ADEB13C2FDE1 /* RecursiveLock.swift */,
86CA0158A3B829240131287808D91B17 /* RecursiveScheduler.swift */,
745BE594E349E9F5B3F60C8225B1C900 /* Reduce.swift */,
AAF0236C7C0BB7BD07900F91FBA74401 /* RefCountDisposable.swift */,
9E6A73A8AB1E90C20646E344A4AF6A99 /* Repeat.swift */,
277C78EF3218B533F58F57A90A169FC0 /* ReplaySubject.swift */,
FED4B6B39EBECB70E556CF66F76422AB /* RetryWhen.swift */,
BCA3EE0AD42E116AD3FAED41B42C3FAA /* Rx.swift */,
B4A49CF4E98435CF670836BC2012D97C /* RxMutableBox.swift */,
18E514595DCE38BE558EF4E18221D287 /* Sample.swift */,
9121E067C51AA8335371655C2DC6C373 /* Scan.swift */,
607C90FFC8DC21A4FDA6C40A4B330195 /* ScheduledDisposable.swift */,
4437F358B5D31910DD9409F0FEAEE702 /* ScheduledItem.swift */,
B4BDEE6441E002AFDF577F5B8F2F0189 /* ScheduledItemType.swift */,
6571B81DF4B1937A310940D79FC80C30 /* SchedulerServices+Emulation.swift */,
99A8FFD7F88FE64C073ACFE5A27A3EE4 /* SchedulerType.swift */,
CCD85FFD6C09F9ACA770EAFB6CB9C2AB /* Sequence.swift */,
B9A05DB1D2DEC97241D7F82323DCC298 /* SerialDispatchQueueScheduler.swift */,
404B20D79FDDE82AD5225E4C7083C1D0 /* SerialDisposable.swift */,
824978904F6A37C16988EE611ED1729E /* ShareReplayScope.swift */,
D7C3EFDE0739002559CCA557A32BF40C /* Single.swift */,
9CDB8C4C654093DD10D6919CD2618D0B /* SingleAssignmentDisposable.swift */,
CAB11313F740B26C506EBCE00E7BB81A /* SingleAsync.swift */,
410878EC07B9D8778F173E2D86541EFB /* Sink.swift */,
DB1FBC8D05DDA89CA005C52A9C38B60E /* Skip.swift */,
8E4B544D4C268C3A977BB53DFE287502 /* SkipUntil.swift */,
E770CADA4AD1A1AEEB4B8F0845EA1276 /* SkipWhile.swift */,
11EC10FE813DE472055C4A1EA0E6B293 /* StartWith.swift */,
7529571FFA5D581E2310272A9981900B /* String+Rx.swift */,
274D7A8F0D1F07E8FD4BFE88A0236D9A /* SubjectType.swift */,
A3032A3ABB758298999FCD16E9286300 /* SubscribeOn.swift */,
6CF92703C1FFE1C61ED363C77EBCCD33 /* SubscriptionDisposable.swift */,
8C329F286AA748C94F25C0976FFB75CC /* SwiftSupport.swift */,
14DE543EF7F13844A44706D4FA902B95 /* Switch.swift */,
19161E2A1950E7603384F1315C43B670 /* SwitchIfEmpty.swift */,
6D5DFA2839781124EC154CC0CDBD4C59 /* SynchronizedDisposeType.swift */,
8851DC077C7ADE382F8250EEEAB7831A /* SynchronizedOnType.swift */,
653173DDABC6EF779A569B1439030E2E /* SynchronizedUnsubscribeType.swift */,
91253EAB79481C279C0FD5DC3D161756 /* TailRecursiveSink.swift */,
E2D91BAA2A1A87FE1AC0FAD4F8336C6E /* Take.swift */,
1CCE9D7391C1E07B216094A9296B28B3 /* TakeLast.swift */,
F89F97837D89AD6DA04D3AB78C694BD4 /* TakeUntil.swift */,
870754994241868063928D498212FB89 /* TakeWhile.swift */,
04343301C78701CEB1E56D42348C9734 /* Throttle.swift */,
5A5E6E186F2FBB2E3F5FDA62D1A79742 /* Timeout.swift */,
6579FB49D74168032DBD8B701CE72B0A /* Timer.swift */,
772E353720251005C79C2C88D6E68A0B /* ToArray.swift */,
9E66A00EA92C06317F0B78D049287892 /* Using.swift */,
86440BF3A7E677C8D290CD835B303565 /* VirtualTimeConverterType.swift */,
68B8A6B21C8C1E42823C37C4EEE2FD24 /* VirtualTimeScheduler.swift */,
3C7B54027622438DF09D2B2A9CF6E0E4 /* Window.swift */,
9519C89F339BAA9E5FFFE84EB205B4F2 /* WithLatestFrom.swift */,
39E8554DBFA86DBE818354C0EFB2E9B0 /* Zip.swift */,
3533E502F2C1831E5D166924EB321A37 /* Zip+arity.swift */,
56F8D284F73FC543931CD82601941371 /* Zip+Collection.swift */,
B29A9E424121BEAC5127A5C3FC47AC6D /* Support Files */,
);
path = RxSwift;
sourceTree = "<group>";
};
A333A0148FCDD9B7019BAA72B2667C5B /* iOS */ = {
isa = PBXGroup;
children = (
F7280E6358DEF684DD1CAA81F40E4BEF /* Foundation.framework */,
);
name = iOS;
sourceTree = "<group>";
};
ACC81BBE859C1328A6DD6B5A9A9C56E1 /* Pods */ = {
isa = PBXGroup;
children = (
A2C710C1DFBAC649852529F5709A6C0E /* RxSwift */,
);
name = Pods;
sourceTree = "<group>";
};
B29A9E424121BEAC5127A5C3FC47AC6D /* Support Files */ = {
isa = PBXGroup;
children = (
55BF3D8D70B563F112385F3FA1EE2512 /* Info.plist */,
11167FE0C459B48A3B902C985CB37296 /* RxSwift.modulemap */,
6F0762A61C64AAE88E69036E7172F281 /* RxSwift.xcconfig */,
0DA1A0159F4FAB076901B26B3CA1C703 /* RxSwift-dummy.m */,
1B8320BC475208AE06BCD0CE81C39F29 /* RxSwift-prefix.pch */,
C7BF5E28C388DB651AA4E92C855813D0 /* RxSwift-umbrella.h */,
);
name = "Support Files";
path = "../Target Support Files/RxSwift";
sourceTree = "<group>";
};
EE83C5D66C501DA3DA4A82708E6B60FB /* Pods-KSSwipeStack_Example */ = {
isa = PBXGroup;
children = (
EDF564576123A1647DBD215F6ABE01DF /* Info.plist */,
D9134996E1694A7A8D05283FA0CDBBA7 /* Pods-KSSwipeStack_Example.modulemap */,
63E8B3C0C07A60E1278140C39D2521D4 /* Pods-KSSwipeStack_Example-acknowledgements.markdown */,
BF8D9AA5E59FDEFDE105A6D0E2226E9A /* Pods-KSSwipeStack_Example-acknowledgements.plist */,
4BC0707E94F4E8BA6B0434B010BB45A9 /* Pods-KSSwipeStack_Example-dummy.m */,
2D423572C560D2B33204D49D5AFB94B1 /* Pods-KSSwipeStack_Example-frameworks.sh */,
7AF9560D9F2C79F249DD45EB4E81B9F1 /* Pods-KSSwipeStack_Example-resources.sh */,
370EC9BDC1980AEE55204BEDC61864CF /* Pods-KSSwipeStack_Example-umbrella.h */,
257C04F9791B98E552E4151D0A4B0513 /* Pods-KSSwipeStack_Example.debug.xcconfig */,
D0C28D93C9846ED33A1106F2C65E4ADA /* Pods-KSSwipeStack_Example.release.xcconfig */,
);
name = "Pods-KSSwipeStack_Example";
path = "Target Support Files/Pods-KSSwipeStack_Example";
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXHeadersBuildPhase section */
28AF0A4F12B485E6F1FF73D2E329EAFB /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
8F56E6E65D1FC9892598D54ED75D2264 /* KSSwipeStack-umbrella.h in Headers */,
47DC2A1732FFBA649EC3A15182355FC9 /* KSSwipeStack.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
420B95339211BFD182C1F8A94ACC1D49 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
141028B9A6A8835B70232CD331709354 /* Pods-KSSwipeStack_Example-umbrella.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
67CAE15A4224547D4FF4BDE031F34617 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
22F0B43A6D969609EC9085D158F48E4C /* RxSwift-umbrella.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
C3B89C9F625895191A692D3325AF4702 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
EFDB735BB1E82372C161E3EDFE0BCEDB /* Pods-KSSwipeStack_Tests-umbrella.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
4E3E344DFCD8E804D16CACD4D0F9FF53 /* KSSwipeStack */ = {
isa = PBXNativeTarget;
buildConfigurationList = 9EEA023F5E241CC752090381FF8E3892 /* Build configuration list for PBXNativeTarget "KSSwipeStack" */;
buildPhases = (
5AF42B6183801E60A8AA14897F197C68 /* Sources */,
ACD4497C969E26A9DFCAB10B347CD993 /* Frameworks */,
28AF0A4F12B485E6F1FF73D2E329EAFB /* Headers */,
);
buildRules = (
);
dependencies = (
C657F68549FC5099DC270F2E92E42FA4 /* PBXTargetDependency */,
);
name = KSSwipeStack;
productName = KSSwipeStack;
productReference = 62DE64027F70AD816881EBCA03AE8B3A /* KSSwipeStack.framework */;
productType = "com.apple.product-type.framework";
};
6C2ADE6B5990401AB676409EC575BE1C /* Pods-KSSwipeStack_Tests */ = {
isa = PBXNativeTarget;
buildConfigurationList = 8D1DC68E313AA43AA0E1E6C6A733DF1C /* Build configuration list for PBXNativeTarget "Pods-KSSwipeStack_Tests" */;
buildPhases = (
933BFAF1FB62A1E5BD08FC930B9F8616 /* Sources */,
04DBF38CD9836637506242F3BCE53F9B /* Frameworks */,
C3B89C9F625895191A692D3325AF4702 /* Headers */,
);
buildRules = (
);
dependencies = (
);
name = "Pods-KSSwipeStack_Tests";
productName = "Pods-KSSwipeStack_Tests";
productReference = 5CFFC05EF855196A4F107282BD845E96 /* Pods_KSSwipeStack_Tests.framework */;
productType = "com.apple.product-type.framework";
};
BA44B3E303E8669F60C06247373D2267 /* RxSwift */ = {
isa = PBXNativeTarget;
buildConfigurationList = 5C5E48E5BFC724E7657FA5BBC788B712 /* Build configuration list for PBXNativeTarget "RxSwift" */;
buildPhases = (
621A7C8F5045728AA028F935849568E4 /* Sources */,
05787A50A92678F1C004AF133582BCE1 /* Frameworks */,
67CAE15A4224547D4FF4BDE031F34617 /* Headers */,
);
buildRules = (
);
dependencies = (
);
name = RxSwift;
productName = RxSwift;
productReference = DCAF397EC252D20EB91206BFE80144AD /* RxSwift.framework */;
productType = "com.apple.product-type.framework";
};
D2BF36CAB736AB150BA6B4F708E2BF02 /* Pods-KSSwipeStack_Example */ = {
isa = PBXNativeTarget;
buildConfigurationList = F51E0D2B5130466E8F42E3DEBBB19B17 /* Build configuration list for PBXNativeTarget "Pods-KSSwipeStack_Example" */;
buildPhases = (
B323BED40021A4BD64D98308CE0AA5AA /* Sources */,
D6FB721063D1B670B1147FB66E2F6861 /* Frameworks */,
420B95339211BFD182C1F8A94ACC1D49 /* Headers */,
);
buildRules = (
);
dependencies = (
98A72BFE43370320DC72B18D25BA172C /* PBXTargetDependency */,
30CC05B277599382A2A5B20C19EA9633 /* PBXTargetDependency */,
);
name = "Pods-KSSwipeStack_Example";
productName = "Pods-KSSwipeStack_Example";
productReference = 676F7B2E868D75D196793B2DA5E40186 /* Pods_KSSwipeStack_Example.framework */;
productType = "com.apple.product-type.framework";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
D41D8CD98F00B204E9800998ECF8427E /* Project object */ = {
isa = PBXProject;
attributes = {
LastSwiftUpdateCheck = 0830;
LastUpgradeCheck = 0910;
};
buildConfigurationList = 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */;
compatibilityVersion = "Xcode 3.2";
developmentRegion = English;
hasScannedForEncodings = 0;
knownRegions = (
en,
);
mainGroup = 7DB346D0F39D3F0E887471402A8071AB;
productRefGroup = 4B71E05EFFAF585F413DAE9DB8BE4298 /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
4E3E344DFCD8E804D16CACD4D0F9FF53 /* KSSwipeStack */,
D2BF36CAB736AB150BA6B4F708E2BF02 /* Pods-KSSwipeStack_Example */,
6C2ADE6B5990401AB676409EC575BE1C /* Pods-KSSwipeStack_Tests */,
BA44B3E303E8669F60C06247373D2267 /* RxSwift */,
);
};
/* End PBXProject section */
/* Begin PBXSourcesBuildPhase section */
5AF42B6183801E60A8AA14897F197C68 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
63DA747601E730EBE8626F223D5B49B6 /* KSSwipeStack-dummy.m in Sources */,
73F6D987BA05CBC9F0319962AF3DC89E /* PanDirectionGestureRecognizer.swift in Sources */,
90C9831A0CF2284CE2B0B7BE8181C32B /* SwipableData.swift in Sources */,
C4A371FDB4360F5E02D1E4490D93C1E4 /* SwipableView.swift in Sources */,
521710610EFCA1AC25590A1F249EB093 /* Swipe.swift in Sources */,
9398A1A7916CFDD5B7D999457C5A2ADE /* SwipeDelegate.swift in Sources */,
0DD7C9DF5BD8A9724EB454B31957495C /* SwipeDirection.swift in Sources */,
F3B15D60666462214B16F6FDA86C600E /* SwipeHelper.swift in Sources */,
AC1203E64F358E9CEFC4C6B20270EC50 /* SwipeOptions.swift in Sources */,
FA0A05AA14F1A0A61C4988D055689C3A /* SwipeView.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
621A7C8F5045728AA028F935849568E4 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
639868DA228BC14F1F6D9641C13A8911 /* AddRef.swift in Sources */,
7B565CB690B6C052B6C04549EB257CED /* Amb.swift in Sources */,
52B179B4C9B7FD3AAAADA67658CDEDF4 /* AnonymousDisposable.swift in Sources */,
A367FAB34AE26A5B9CF60F44519CACEE /* AnonymousObserver.swift in Sources */,
9AE1F20C2A234A6BDEC42DDE5205733F /* AnyObserver.swift in Sources */,
0558A6166135C77069F494B49E6225B8 /* AsMaybe.swift in Sources */,
D2AC5A4E354FB0994B8658A07CA60513 /* AsSingle.swift in Sources */,
15787416A7BAAB178E0BDDA39597A158 /* AsyncLock.swift in Sources */,
6E6D75CF070B403EC68457710C30733E /* AsyncSubject.swift in Sources */,
165960D59D7FAAD04A5180C28118D34A /* Bag+Rx.swift in Sources */,
21A3FE757DBE6E2F97BA2AF76E79FD57 /* Bag.swift in Sources */,
E7FA250EE4D2E9A8E6CCBB764759DE31 /* BehaviorSubject.swift in Sources */,
F420CAA9644A79D09E25EE9446CA1F32 /* BinaryDisposable.swift in Sources */,
1897706824B6EB1DF602DEBF791B35D3 /* BooleanDisposable.swift in Sources */,
0A7A958D72D67AE0D24FF939AA912424 /* Buffer.swift in Sources */,
A5917653B9AA1B0DCC4B034FCFE39B78 /* Cancelable.swift in Sources */,
1CB739C45D28C7ABC611925F326A393E /* Catch.swift in Sources */,
3C3878A01C3681B487D3E7E7B0F4ECDE /* CombineLatest+arity.swift in Sources */,
D12BFE95B6E4CC7A86E881DF9C96CB02 /* CombineLatest+Collection.swift in Sources */,
1188AEE1A21CF3B33BB7134314610837 /* CombineLatest.swift in Sources */,
6362A49952CC4C9C52FC5546A0FAEC76 /* Completable+AndThen.swift in Sources */,
4FB3CFB054369AEC41916E144556B384 /* Completable.swift in Sources */,
E9925EA625981DB3E9658838E9FCEFF7 /* CompositeDisposable.swift in Sources */,
36257E4C2ACA8D833DFF5C01BF9FF328 /* Concat.swift in Sources */,
EA38B7D249F78AD144B921DDD146EB25 /* ConcurrentDispatchQueueScheduler.swift in Sources */,
E33A7CE4BEFDBCC9AED6A5B03377246A /* ConcurrentMainScheduler.swift in Sources */,
11B8E3DA4F8DB69F4F872AFD2C94AF28 /* ConnectableObservableType.swift in Sources */,
5FE557C351D370D23FF8B2B3EF51F5BF /* Create.swift in Sources */,
7DCEBD7EE9C4193E387624FFAB017479 /* CurrentThreadScheduler.swift in Sources */,
49C580A4C2F7F18B915F086102485301 /* Debounce.swift in Sources */,
212D364CFD5EDFD4F454191FF8800483 /* Debug.swift in Sources */,
8FE8ACBD2001CFDD3ED0A212EE093152 /* DefaultIfEmpty.swift in Sources */,
CFF37FE5011DA8FD60CCDCCC5193AE64 /* Deferred.swift in Sources */,
25B1E058B2EA4463229971A5C702586F /* Delay.swift in Sources */,
FA6BEFDBF5BFCFE18CB45C4C550CEDFC /* DelaySubscription.swift in Sources */,
6CA47F92F8F37FABEDA2043A4F83385E /* Dematerialize.swift in Sources */,
0F68383196F2EA1F04E1D170302965E8 /* Deprecated.swift in Sources */,
B87350105F0F3314F5F1346874084A3A /* DispatchQueue+Extensions.swift in Sources */,
C0261DDE2D2927CA286672644677D791 /* DispatchQueueConfiguration.swift in Sources */,
71422AF4A88343B0A9A7AB00E697DE19 /* Disposable.swift in Sources */,
D11E373002691DA7758F4BE3D4453B4E /* Disposables.swift in Sources */,
A78BB29435830FC705F8220707716CAE /* DisposeBag.swift in Sources */,
223B34C48E9D1F921FD559925F1646B7 /* DisposeBase.swift in Sources */,
8C067FD6EF8EECE20A1D7EA7BF4B46D2 /* DistinctUntilChanged.swift in Sources */,
FFE0F799031C0366602A41E9AD054421 /* Do.swift in Sources */,
272B376FA87F62ABE783F2336D2C21F5 /* ElementAt.swift in Sources */,
99AC0D9E7D9DF033377D313098C17D5A /* Empty.swift in Sources */,
787E0C433A8C14B7E4EB3BA68A2B607D /* Enumerated.swift in Sources */,
F9BC2F04F226B0684702AAD1629500BA /* Error.swift in Sources */,
B1E616F3D6E06B89D4DAA565055CC701 /* Errors.swift in Sources */,
83395C7F713263F7B7C0FA49A908C077 /* Event.swift in Sources */,
D2D4A136C9EF73623436B5851F10D4A6 /* Filter.swift in Sources */,
B27BBC50125CA38770CD0220503F5DA2 /* First.swift in Sources */,
B9A2CEC856A99D501D3756390F48308C /* Generate.swift in Sources */,
42521970096FD0114B6896BF7D4E750D /* GroupBy.swift in Sources */,
6973D6DC8CE4ECD74ED9446F2D956C87 /* GroupedObservable.swift in Sources */,
223FE167B599DB59AEBE1237CC0EAC3A /* HistoricalScheduler.swift in Sources */,
8ECB2A39BF43AB3EF0B4F53D64FC78C5 /* HistoricalSchedulerTimeConverter.swift in Sources */,
F8FCE8D5832EB57F4EAD189DEE55D6AD /* ImmediateSchedulerType.swift in Sources */,
F5EC6A03260F9A1B2AE04C73E7888690 /* InfiniteSequence.swift in Sources */,
95389222A8A6DD7A3AD673C5D641FDBC /* InvocableScheduledItem.swift in Sources */,
69BD183E7EFE26FEC46E2D749EFC42B8 /* InvocableType.swift in Sources */,
D0B9BB4DD1C814AB23D5B53C8F6C3ABE /* Just.swift in Sources */,
AEF2E873AABEB54EC2C7888258E9B2E0 /* Lock.swift in Sources */,
33A1D3F0CBA48A7B74FDA610EFB4D8F2 /* LockOwnerType.swift in Sources */,
EFA10ED7CFF8EA8DE1F9467372CDA11A /* MainScheduler.swift in Sources */,
69F6709ED6902898377C2C4E8DAF0B17 /* Map.swift in Sources */,
BD7611EE4612FB7E755F043EB1C7A4EF /* Materialize.swift in Sources */,
B93287580C097DA2A043BAFF6F48CC9E /* Maybe.swift in Sources */,
48E3C59E76DBA6509D0CA6881F360842 /* Merge.swift in Sources */,
A29B5CAD923CD9A8A413A04052173D98 /* Multicast.swift in Sources */,
9C7A0F3EBA8602BBE00A0325B6D7C46B /* Never.swift in Sources */,
6AD72A8F2DDF5B3E2BBC7F06B6A563B1 /* NopDisposable.swift in Sources */,
4873ACBFE9455DB0CF49C8535A44D359 /* Observable.swift in Sources */,
8D2D04BADA48C6EDAB2B1A3845958118 /* ObservableConvertibleType.swift in Sources */,
7953BE1048DD14462E5476C04402BFE6 /* ObservableType+Extensions.swift in Sources */,
71A73C5087EEB680AEF2E00872BD3380 /* ObservableType+PrimitiveSequence.swift in Sources */,
1ECE35D6B845610157373F442B587ABF /* ObservableType.swift in Sources */,
8C1A956EA76E3643047DCBCFC08F274C /* ObserveOn.swift in Sources */,
1371DC42037C18A17DAE8EBB5F21B5F3 /* ObserverBase.swift in Sources */,
4F6291E38144C4DBD7203D77782DC51C /* ObserverType.swift in Sources */,
2D5B624DE104E233D0CA7242971F846E /* OperationQueueScheduler.swift in Sources */,
C7808BE1EF45FC72E3B974B6DAF8E434 /* Optional.swift in Sources */,
BD404113A64E23B288CAB417228EB75D /* Platform.Darwin.swift in Sources */,
5A15F97273C48331AA5F864CBFCD55F5 /* Platform.Linux.swift in Sources */,
6278B4DCFBFC19EBADE71851631E3DCB /* PrimitiveSequence+Zip+arity.swift in Sources */,
66EA423E31A2C84F9FB8EB722FC7AD7E /* PrimitiveSequence.swift in Sources */,
E172C3054CA9D45D265520FBFC14B6DE /* PriorityQueue.swift in Sources */,
48EEB3122E4846851C1B289CDBD36C31 /* Producer.swift in Sources */,
61AA519B39698D74B65388011DB5C725 /* PublishSubject.swift in Sources */,
261EFC48FFBDED23C7C57A71C3393BFE /* Queue.swift in Sources */,
5270490801587FC0AADA5CE05487335D /* Range.swift in Sources */,