forked from soffes/cheddar-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.pbxproj
1526 lines (1511 loc) · 120 KB
/
project.pbxproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objects = {
/* Begin PBXBuildFile section */
B208BC2915BF63A80080705D /* CDIAddListTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = B208BB9315BF63A80080705D /* CDIAddListTableViewCell.m */; };
B208BC2A15BF63A80080705D /* CDIAddTaskAnimationView.m in Sources */ = {isa = PBXBuildFile; fileRef = B208BB9515BF63A80080705D /* CDIAddTaskAnimationView.m */; };
B208BC2B15BF63A80080705D /* CDIAddTaskView.m in Sources */ = {isa = PBXBuildFile; fileRef = B208BB9715BF63A80080705D /* CDIAddTaskView.m */; };
B208BC2C15BF63A80080705D /* CDIAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = B208BB9915BF63A80080705D /* CDIAppDelegate.m */; };
B208BC2D15BF63A80080705D /* CDIAttributedLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = B208BB9B15BF63A80080705D /* CDIAttributedLabel.m */; };
B208BC2E15BF63A80080705D /* CDICreateListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B208BB9D15BF63A80080705D /* CDICreateListViewController.m */; };
B208BC2F15BF63A80080705D /* CDIListsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B208BB9F15BF63A80080705D /* CDIListsViewController.m */; };
B208BC3015BF63A80080705D /* CDIListTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = B208BBA115BF63A80080705D /* CDIListTableViewCell.m */; };
B208BC3115BF63A80080705D /* CDIListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B208BBA315BF63A80080705D /* CDIListViewController.m */; };
B208BC3215BF63A80080705D /* CDILoadingView.m in Sources */ = {isa = PBXBuildFile; fileRef = B208BBA515BF63A80080705D /* CDILoadingView.m */; };
B208BC3315BF63A80080705D /* CDIManagedTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B208BBA715BF63A80080705D /* CDIManagedTableViewController.m */; };
B208BC3415BF63A80080705D /* CDINoListsView.m in Sources */ = {isa = PBXBuildFile; fileRef = B208BBA915BF63A80080705D /* CDINoListsView.m */; };
B208BC3515BF63A80080705D /* CDINoTasksView.m in Sources */ = {isa = PBXBuildFile; fileRef = B208BBAB15BF63A80080705D /* CDINoTasksView.m */; };
B208BC3615BF63A80080705D /* CDIPullToRefreshContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = B208BBAD15BF63A80080705D /* CDIPullToRefreshContentView.m */; };
B208BC3715BF63A80080705D /* CDIPullToRefreshView.m in Sources */ = {isa = PBXBuildFile; fileRef = B208BBAF15BF63A80080705D /* CDIPullToRefreshView.m */; };
B208BC3815BF63A80080705D /* CDIRenameTaskViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B208BBB115BF63A80080705D /* CDIRenameTaskViewController.m */; };
B208BC3915BF63A80080705D /* CDISessionsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B208BBB315BF63A80080705D /* CDISessionsViewController.m */; };
B208BC3A15BF63A80080705D /* CDISettingsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B208BBB515BF63A80080705D /* CDISettingsViewController.m */; };
B208BC3B15BF63A80080705D /* CDISignInViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B208BBB715BF63A80080705D /* CDISignInViewController.m */; };
B208BC3C15BF63A80080705D /* CDISignUpViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B208BBB915BF63A80080705D /* CDISignUpViewController.m */; };
B208BC3D15BF63A80080705D /* CDISplitViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B208BBBB15BF63A80080705D /* CDISplitViewController.m */; };
B208BC3E15BF63A80080705D /* CDITableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = B208BBBD15BF63A80080705D /* CDITableViewCell.m */; };
B208BC3F15BF63A80080705D /* CDITableViewCellDeleteConfirmationControl.m in Sources */ = {isa = PBXBuildFile; fileRef = B208BBBF15BF63A80080705D /* CDITableViewCellDeleteConfirmationControl.m */; };
B208BC4015BF63A80080705D /* CDITagView.m in Sources */ = {isa = PBXBuildFile; fileRef = B208BBC115BF63A80080705D /* CDITagView.m */; };
B208BC4115BF63A80080705D /* CDITaskTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = B208BBC315BF63A80080705D /* CDITaskTableViewCell.m */; };
B208BC4215BF63A80080705D /* CDITransactionObserver.m in Sources */ = {isa = PBXBuildFile; fileRef = B208BBC515BF63A80080705D /* CDITransactionObserver.m */; };
B208BC4315BF63A80080705D /* CDIUpgradeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B208BBC715BF63A80080705D /* CDIUpgradeViewController.m */; };
B208BC4415BF63A80080705D /* SKPaymentTransaction+CheddariOSAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = B208BBC915BF63A80080705D /* SKPaymentTransaction+CheddariOSAdditions.m */; };
B208BC4515BF63A80080705D /* UIButton+CheddariOSAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = B208BBCB15BF63A80080705D /* UIButton+CheddariOSAdditions.m */; };
B208BC4615BF63A80080705D /* UIColor+CheddariOSAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = B208BBCD15BF63A80080705D /* UIColor+CheddariOSAdditions.m */; };
B208BC4715BF63A80080705D /* UIFont+CheddariOSAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = B208BBCF15BF63A80080705D /* UIFont+CheddariOSAdditions.m */; };
B208BC4815BF63A80080705D /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = B208BBD215BF63A80080705D /* main.m */; };
B208BC4B15BF63A80080705D /* add-list-arrow.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BBD715BF63A80080705D /* add-list-arrow.png */; };
B208BC4C15BF63A80080705D /* add-list-arrow@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BBD815BF63A80080705D /* add-list-arrow@2x.png */; };
B208BC4D15BF63A80080705D /* add-task-arrow.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BBD915BF63A80080705D /* add-task-arrow.png */; };
B208BC4E15BF63A80080705D /* add-task-arrow@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BBDA15BF63A80080705D /* add-task-arrow@2x.png */; };
B208BC4F15BF63A80080705D /* arches.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BBDB15BF63A80080705D /* arches.png */; };
B208BC5015BF63A80080705D /* arches@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BBDC15BF63A80080705D /* arches@2x.png */; };
B208BC5115BF63A80080705D /* archive-button-highlighted.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BBDD15BF63A80080705D /* archive-button-highlighted.png */; };
B208BC5215BF63A80080705D /* archive-button-highlighted@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BBDE15BF63A80080705D /* archive-button-highlighted@2x.png */; };
B208BC5315BF63A80080705D /* archive-button.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BBDF15BF63A80080705D /* archive-button.png */; };
B208BC5415BF63A80080705D /* archive-button@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BBE015BF63A80080705D /* archive-button@2x.png */; };
B208BC5515BF63A80080705D /* big-button-highlighted.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BBE115BF63A80080705D /* big-button-highlighted.png */; };
B208BC5615BF63A80080705D /* big-button-highlighted@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BBE215BF63A80080705D /* big-button-highlighted@2x.png */; };
B208BC5715BF63A80080705D /* big-button.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BBE315BF63A80080705D /* big-button.png */; };
B208BC5815BF63A80080705D /* big-button@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BBE415BF63A80080705D /* big-button@2x.png */; };
B208BC5915BF63A80080705D /* big-gray-button-highlighted.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BBE515BF63A80080705D /* big-gray-button-highlighted.png */; };
B208BC5A15BF63A80080705D /* big-gray-button-highlighted@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BBE615BF63A80080705D /* big-gray-button-highlighted@2x.png */; };
B208BC5B15BF63A80080705D /* big-gray-button.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BBE715BF63A80080705D /* big-gray-button.png */; };
B208BC5C15BF63A80080705D /* big-gray-button@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BBE815BF63A80080705D /* big-gray-button@2x.png */; };
B208BC5D15BF63A80080705D /* big-orange-button-highlighted.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BBE915BF63A80080705D /* big-orange-button-highlighted.png */; };
B208BC5E15BF63A80080705D /* big-orange-button-highlighted@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BBEA15BF63A80080705D /* big-orange-button-highlighted@2x.png */; };
B208BC5F15BF63A80080705D /* big-orange-button.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BBEB15BF63A80080705D /* big-orange-button.png */; };
B208BC6015BF63A80080705D /* big-orange-button@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BBEC15BF63A80080705D /* big-orange-button@2x.png */; };
B208BC6115BF63A80080705D /* checkbox.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BBED15BF63A80080705D /* checkbox.png */; };
B208BC6215BF63A80080705D /* checkbox@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BBEE15BF63A80080705D /* checkbox@2x.png */; };
B208BC6B15BF63A80080705D /* Default-Landscape.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BBF715BF63A80080705D /* Default-Landscape.png */; };
B208BC6C15BF63A80080705D /* Default-Landscape@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BBF815BF63A80080705D /* Default-Landscape@2x.png */; };
B208BC6D15BF63A80080705D /* Default-Portrait.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BBF915BF63A80080705D /* Default-Portrait.png */; };
B208BC6E15BF63A80080705D /* Default-Portrait@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BBFA15BF63A80080705D /* Default-Portrait@2x.png */; };
B208BC6F15BF63A80080705D /* Default.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BBFB15BF63A80080705D /* Default.png */; };
B208BC7015BF63A80080705D /* Default@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BBFC15BF63A80080705D /* Default@2x.png */; };
B208BC7115BF63A80080705D /* disclosure-highlighted.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BBFD15BF63A80080705D /* disclosure-highlighted.png */; };
B208BC7215BF63A80080705D /* disclosure-highlighted@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BBFE15BF63A80080705D /* disclosure-highlighted@2x.png */; };
B208BC7315BF63A80080705D /* disclosure.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BBFF15BF63A80080705D /* disclosure.png */; };
B208BC7415BF63A80080705D /* disclosure@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BC0015BF63A80080705D /* disclosure@2x.png */; };
B208BC7515BF63A80080705D /* Icon-100.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BC0115BF63A80080705D /* Icon-100.png */; };
B208BC7615BF63A80080705D /* Icon-114.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BC0215BF63A80080705D /* Icon-114.png */; };
B208BC7715BF63A80080705D /* Icon-144.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BC0315BF63A80080705D /* Icon-144.png */; };
B208BC7815BF63A80080705D /* Icon-29.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BC0415BF63A80080705D /* Icon-29.png */; };
B208BC7915BF63A80080705D /* Icon-50.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BC0515BF63A80080705D /* Icon-50.png */; };
B208BC7A15BF63A80080705D /* Icon-57.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BC0615BF63A80080705D /* Icon-57.png */; };
B208BC7B15BF63A80080705D /* Icon-58.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BC0715BF63A80080705D /* Icon-58.png */; };
B208BC7C15BF63A80080705D /* Icon-72.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BC0815BF63A80080705D /* Icon-72.png */; };
B208BC7D15BF63A80080705D /* list-icon.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BC0915BF63A80080705D /* list-icon.png */; };
B208BC7E15BF63A80080705D /* list-icon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BC0A15BF63A80080705D /* list-icon@2x.png */; };
B208BC7F15BF63A80080705D /* nav-back-highlighted.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BC0B15BF63A80080705D /* nav-back-highlighted.png */; };
B208BC8015BF63A80080705D /* nav-back-highlighted@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BC0C15BF63A80080705D /* nav-back-highlighted@2x.png */; };
B208BC8115BF63A80080705D /* nav-back.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BC0D15BF63A80080705D /* nav-back.png */; };
B208BC8215BF63A80080705D /* nav-back@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BC0E15BF63A80080705D /* nav-back@2x.png */; };
B208BC8315BF63A80080705D /* nav-background.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BC0F15BF63A80080705D /* nav-background.png */; };
B208BC8415BF63A80080705D /* nav-background@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BC1015BF63A80080705D /* nav-background@2x.png */; };
B208BC8515BF63A80080705D /* nav-button-highlighted.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BC1115BF63A80080705D /* nav-button-highlighted.png */; };
B208BC8615BF63A80080705D /* nav-button-highlighted@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BC1215BF63A80080705D /* nav-button-highlighted@2x.png */; };
B208BC8715BF63A80080705D /* nav-button.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BC1315BF63A80080705D /* nav-button.png */; };
B208BC8815BF63A80080705D /* nav-button@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BC1415BF63A80080705D /* nav-button@2x.png */; };
B208BC8915BF63A80080705D /* nav-title.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BC1515BF63A80080705D /* nav-title.png */; };
B208BC8A15BF63A80080705D /* nav-title@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BC1615BF63A80080705D /* nav-title@2x.png */; };
B208BC8B15BF63A80080705D /* plus.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BC1715BF63A80080705D /* plus.png */; };
B208BC8C15BF63A80080705D /* plus@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BC1815BF63A80080705D /* plus@2x.png */; };
B208BC8D15BF63A80080705D /* settings.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BC1915BF63A80080705D /* settings.png */; };
B208BC8E15BF63A80080705D /* settings@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BC1A15BF63A80080705D /* settings@2x.png */; };
B208BC8F15BF63A80080705D /* small-check.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BC1B15BF63A80080705D /* small-check.png */; };
B208BC9015BF63A80080705D /* small-check@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BC1C15BF63A80080705D /* small-check@2x.png */; };
B208BC9115BF63A80080705D /* tag-x.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BC1D15BF63A80080705D /* tag-x.png */; };
B208BC9215BF63A80080705D /* tag-x@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BC1E15BF63A80080705D /* tag-x@2x.png */; };
B208BC9315BF63A80080705D /* tag.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BC1F15BF63A80080705D /* tag.png */; };
B208BC9415BF63A80080705D /* tag@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BC2015BF63A80080705D /* tag@2x.png */; };
B208BC9515BF63A80080705D /* task-icon.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BC2115BF63A80080705D /* task-icon.png */; };
B208BC9615BF63A80080705D /* task-icon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BC2215BF63A80080705D /* task-icon@2x.png */; };
B208BC9715BF63A80080705D /* textfield-focused.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BC2315BF63A80080705D /* textfield-focused.png */; };
B208BC9815BF63A80080705D /* textfield-focused@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BC2415BF63A80080705D /* textfield-focused@2x.png */; };
B208BC9915BF63A80080705D /* textfield.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BC2515BF63A80080705D /* textfield.png */; };
B208BC9A15BF63A80080705D /* textfield@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BC2615BF63A80080705D /* textfield@2x.png */; };
B208BC9B15BF63A80080705D /* x.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BC2715BF63A80080705D /* x.png */; };
B208BC9C15BF63A80080705D /* x@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B208BC2815BF63A80080705D /* x@2x.png */; };
B208C10115BF63E20080705D /* Crashlytics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B208BE4315BF63E00080705D /* Crashlytics.framework */; };
B208C10F15BF63E20080705D /* LocalyticsDatabase.m in Sources */ = {isa = PBXBuildFile; fileRef = B208BE6015BF63E00080705D /* LocalyticsDatabase.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
B208C11015BF63E20080705D /* LocalyticsSession.m in Sources */ = {isa = PBXBuildFile; fileRef = B208BE6215BF63E00080705D /* LocalyticsSession.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
B208C11115BF63E20080705D /* LocalyticsUploader.m in Sources */ = {isa = PBXBuildFile; fileRef = B208BE6415BF63E00080705D /* LocalyticsUploader.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
B208C11215BF63E20080705D /* LocalyticsUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = B208BE6615BF63E00080705D /* LocalyticsUtilities.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
B208C14015BF63E20080705D /* SSPullToRefreshDefaultContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = B208BEC515BF63E00080705D /* SSPullToRefreshDefaultContentView.m */; };
B208C14115BF63E20080705D /* SSPullToRefreshSimpleContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = B208BEC715BF63E00080705D /* SSPullToRefreshSimpleContentView.m */; };
B208C14215BF63E20080705D /* SSPullToRefreshView.m in Sources */ = {isa = PBXBuildFile; fileRef = B208BEC915BF63E00080705D /* SSPullToRefreshView.m */; };
B208C1A515BF63E20080705D /* TTTAttributedLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = B208BF7E15BF63E00080705D /* TTTAttributedLabel.m */; };
B208C1EB15BF64630080705D /* libSSToolkit.a in Frameworks */ = {isa = PBXBuildFile; fileRef = B208C1DF15BF63E30080705D /* libSSToolkit.a */; };
B208C1F415BF64630080705D /* CoreData.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B208C1EC15BF64630080705D /* CoreData.framework */; };
B208C1F515BF64630080705D /* CoreText.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B208C1ED15BF64630080705D /* CoreText.framework */; };
B208C1F615BF64630080705D /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B208C1EE15BF64630080705D /* Foundation.framework */; };
B208C1F715BF64630080705D /* MobileCoreServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B208C1EF15BF64630080705D /* MobileCoreServices.framework */; };
B208C1F815BF64630080705D /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B208C1F015BF64630080705D /* QuartzCore.framework */; };
B208C1F915BF64630080705D /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B208C1F115BF64630080705D /* Security.framework */; };
B208C1FA15BF64630080705D /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B208C1F215BF64630080705D /* SystemConfiguration.framework */; };
B208C1FB15BF64630080705D /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B208C1F315BF64630080705D /* UIKit.framework */; };
B208C5FC15BF658D0080705D /* libCheddarKit.a in Frameworks */ = {isa = PBXBuildFile; fileRef = B208C5BF15BF654B0080705D /* libCheddarKit.a */; };
B23261AA15C207FF00D455EF /* CDIWebSignInViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B23261A915C207FF00D455EF /* CDIWebSignInViewController.m */; };
B26AE9B415C5CF2B0008AB1F /* CDISettingsTapPickerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B26AE9B315C5CF2B0008AB1F /* CDISettingsTapPickerViewController.m */; };
B26AE9B715C5D0040008AB1F /* CDISettingsTextSizePickerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B26AE9B615C5D0040008AB1F /* CDISettingsTextSizePickerViewController.m */; };
B26AE9BA15C5D0100008AB1F /* CDISettingsFontPickerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B26AE9B915C5D0100008AB1F /* CDISettingsFontPickerViewController.m */; };
B26AE9BD15C5D25E0008AB1F /* CDIGroupedTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B26AE9BC15C5D25E0008AB1F /* CDIGroupedTableViewController.m */; };
B26AE9C015C5D52D0008AB1F /* CDIPickerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B26AE9BF15C5D52D0008AB1F /* CDIPickerViewController.m */; };
B28F84DB15C37E1D003E4595 /* SSToolkitResources.bundle in Resources */ = {isa = PBXBuildFile; fileRef = B208C1E315BF63E30080705D /* SSToolkitResources.bundle */; };
B28FD2BE15BF730100365CD6 /* CFNetwork.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B28FD2BD15BF730100365CD6 /* CFNetwork.framework */; };
B28FD2C015BF731100365CD6 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B28FD2BF15BF731000365CD6 /* CoreGraphics.framework */; };
B28FD2C215BF731B00365CD6 /* MessageUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B28FD2C115BF731B00365CD6 /* MessageUI.framework */; };
B28FD2C415BF732100365CD6 /* libz.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = B28FD2C315BF732100365CD6 /* libz.dylib */; };
B28FD2C615BF732800365CD6 /* StoreKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B28FD2C515BF732800365CD6 /* StoreKit.framework */; };
B28FD2C815BF732F00365CD6 /* libsqlite3.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = B28FD2C715BF732F00365CD6 /* libsqlite3.dylib */; };
B28FD2D115BF739300365CD6 /* libicucore.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = B28FD2D015BF739300365CD6 /* libicucore.dylib */; };
B28FD2D915BF742D00365CD6 /* Cheddar.entitlements in Resources */ = {isa = PBXBuildFile; fileRef = B28FD2D215BF742D00365CD6 /* Cheddar.entitlements */; };
B28FD2DB15BF742D00365CD6 /* Gotham-Bold.otf in Resources */ = {isa = PBXBuildFile; fileRef = B28FD2D515BF742D00365CD6 /* Gotham-Bold.otf */; };
B28FD2DC15BF742D00365CD6 /* Gotham-BoldItalic.otf in Resources */ = {isa = PBXBuildFile; fileRef = B28FD2D615BF742D00365CD6 /* Gotham-BoldItalic.otf */; };
B28FD2DD15BF742D00365CD6 /* Gotham-Book.otf in Resources */ = {isa = PBXBuildFile; fileRef = B28FD2D715BF742D00365CD6 /* Gotham-Book.otf */; };
B28FD2DE15BF742D00365CD6 /* Gotham-BookItalic.otf in Resources */ = {isa = PBXBuildFile; fileRef = B28FD2D815BF742D00365CD6 /* Gotham-BookItalic.otf */; };
B28FD2E215BF755600365CD6 /* Cheddar.xcdatamodeld in Sources */ = {isa = PBXBuildFile; fileRef = B28FD2E015BF755600365CD6 /* Cheddar.xcdatamodeld */; };
B28FD2E815BF774D00365CD6 /* CDIDefines.m in Sources */ = {isa = PBXBuildFile; fileRef = B28FD2E715BF774D00365CD6 /* CDIDefines.m */; };
B290118A15C49B07008FC626 /* toolbar-background-mini.png in Resources */ = {isa = PBXBuildFile; fileRef = B290118615C49B07008FC626 /* toolbar-background-mini.png */; };
B290118B15C49B07008FC626 /* toolbar-background-mini@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B290118715C49B07008FC626 /* toolbar-background-mini@2x.png */; };
B290118C15C49B07008FC626 /* toolbar-background.png in Resources */ = {isa = PBXBuildFile; fileRef = B290118815C49B07008FC626 /* toolbar-background.png */; };
B290118D15C49B07008FC626 /* toolbar-background@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B290118915C49B07008FC626 /* toolbar-background@2x.png */; };
B290119A15C4A9EC008FC626 /* action-button.png in Resources */ = {isa = PBXBuildFile; fileRef = B290118E15C4A9EC008FC626 /* action-button.png */; };
B290119B15C4A9EC008FC626 /* action-button@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B290118F15C4A9EC008FC626 /* action-button@2x.png */; };
B290119C15C4A9EC008FC626 /* back-button.png in Resources */ = {isa = PBXBuildFile; fileRef = B290119015C4A9EC008FC626 /* back-button.png */; };
B290119D15C4A9EC008FC626 /* back-button@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B290119115C4A9EC008FC626 /* back-button@2x.png */; };
B290119E15C4A9EC008FC626 /* forward-button.png in Resources */ = {isa = PBXBuildFile; fileRef = B290119215C4A9EC008FC626 /* forward-button.png */; };
B290119F15C4A9EC008FC626 /* forward-button@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B290119315C4A9EC008FC626 /* forward-button@2x.png */; };
B29011A015C4A9EC008FC626 /* reload-button.png in Resources */ = {isa = PBXBuildFile; fileRef = B290119415C4A9EC008FC626 /* reload-button.png */; };
B29011A115C4A9EC008FC626 /* reload-button@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B290119515C4A9EC008FC626 /* reload-button@2x.png */; };
B29011A215C4A9EC008FC626 /* safari-button.png in Resources */ = {isa = PBXBuildFile; fileRef = B290119615C4A9EC008FC626 /* safari-button.png */; };
B29011A315C4A9EC008FC626 /* safari-button@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B290119715C4A9EC008FC626 /* safari-button@2x.png */; };
B29011A415C4A9EC008FC626 /* stop-button.png in Resources */ = {isa = PBXBuildFile; fileRef = B290119815C4A9EC008FC626 /* stop-button.png */; };
B29011A515C4A9EC008FC626 /* stop-button@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B290119915C4A9EC008FC626 /* stop-button@2x.png */; };
B29011B515C4D247008FC626 /* action-button-mini.png in Resources */ = {isa = PBXBuildFile; fileRef = B29011A915C4D247008FC626 /* action-button-mini.png */; };
B29011B615C4D247008FC626 /* action-button-mini@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B29011AA15C4D247008FC626 /* action-button-mini@2x.png */; };
B29011B715C4D247008FC626 /* back-button-mini.png in Resources */ = {isa = PBXBuildFile; fileRef = B29011AB15C4D247008FC626 /* back-button-mini.png */; };
B29011B815C4D247008FC626 /* back-button-mini@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B29011AC15C4D247008FC626 /* back-button-mini@2x.png */; };
B29011B915C4D247008FC626 /* forward-button-mini.png in Resources */ = {isa = PBXBuildFile; fileRef = B29011AD15C4D247008FC626 /* forward-button-mini.png */; };
B29011BA15C4D247008FC626 /* forward-button-mini@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B29011AE15C4D247008FC626 /* forward-button-mini@2x.png */; };
B29011BB15C4D247008FC626 /* reload-button-mini.png in Resources */ = {isa = PBXBuildFile; fileRef = B29011AF15C4D247008FC626 /* reload-button-mini.png */; };
B29011BC15C4D247008FC626 /* reload-button-mini@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B29011B015C4D247008FC626 /* reload-button-mini@2x.png */; };
B29011BD15C4D247008FC626 /* safari-button-mini.png in Resources */ = {isa = PBXBuildFile; fileRef = B29011B115C4D247008FC626 /* safari-button-mini.png */; };
B29011BE15C4D247008FC626 /* safari-button-mini@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B29011B215C4D247008FC626 /* safari-button-mini@2x.png */; };
B29011BF15C4D247008FC626 /* stop-button-mini.png in Resources */ = {isa = PBXBuildFile; fileRef = B29011B315C4D247008FC626 /* stop-button-mini.png */; };
B29011C015C4D247008FC626 /* stop-button-mini@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B29011B415C4D247008FC626 /* stop-button-mini@2x.png */; };
B29011CE15C505DA008FC626 /* CDISettingsTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = B29011CD15C505DA008FC626 /* CDISettingsTableViewCell.m */; };
B296A76A15C7B610006137C7 /* cell-checkmark@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B296A76615C7B610006137C7 /* cell-checkmark@2x.png */; };
B296A76D15C7B6BB006137C7 /* cell-checkmark-highlighted.png in Resources */ = {isa = PBXBuildFile; fileRef = B296A76B15C7B6BB006137C7 /* cell-checkmark-highlighted.png */; };
B296A76E15C7B6BB006137C7 /* cell-checkmark-highlighted@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B296A76C15C7B6BB006137C7 /* cell-checkmark-highlighted@2x.png */; };
B296A77015C7B7CF006137C7 /* cell-checkmark.png in Resources */ = {isa = PBXBuildFile; fileRef = B296A76F15C7B7CF006137C7 /* cell-checkmark.png */; };
B2A2B07B15C0BE7300772CF6 /* CDKTask+CheddariOSAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = B2A2B07A15C0BE7300772CF6 /* CDKTask+CheddariOSAdditions.m */; };
B2AD02E315C46F7300D9B909 /* nav-back-mini-highlighted.png in Resources */ = {isa = PBXBuildFile; fileRef = B2AD02DF15C46F7300D9B909 /* nav-back-mini-highlighted.png */; };
B2AD02E415C46F7300D9B909 /* nav-back-mini.png in Resources */ = {isa = PBXBuildFile; fileRef = B2AD02E015C46F7300D9B909 /* nav-back-mini.png */; };
B2AD02E515C46F7300D9B909 /* nav-button-mini-highlighted.png in Resources */ = {isa = PBXBuildFile; fileRef = B2AD02E115C46F7300D9B909 /* nav-button-mini-highlighted.png */; };
B2AD02E615C46F7300D9B909 /* nav-button-mini.png in Resources */ = {isa = PBXBuildFile; fileRef = B2AD02E215C46F7300D9B909 /* nav-button-mini.png */; };
B2AD02EB15C475B100D9B909 /* nav-back-mini-highlighted@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B2AD02E715C475B100D9B909 /* nav-back-mini-highlighted@2x.png */; };
B2AD02EC15C475B100D9B909 /* nav-back-mini@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B2AD02E815C475B100D9B909 /* nav-back-mini@2x.png */; };
B2AD02ED15C475B100D9B909 /* nav-button-mini-highlighted@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B2AD02E915C475B100D9B909 /* nav-button-mini-highlighted@2x.png */; };
B2AD02EE15C475B100D9B909 /* nav-button-mini@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B2AD02EA15C475B100D9B909 /* nav-button-mini@2x.png */; };
B2AD02F015C47BF000D9B909 /* nav-background-mini.png in Resources */ = {isa = PBXBuildFile; fileRef = B2AD02EF15C47BF000D9B909 /* nav-background-mini.png */; };
B2AD02F215C47E4300D9B909 /* nav-background-mini@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B2AD02F115C47E4300D9B909 /* nav-background-mini@2x.png */; };
B2AD02F415C482B200D9B909 /* TextExpander.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B2AD02F315C482B200D9B909 /* TextExpander.framework */; };
B2AD031915C4896E00D9B909 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B2AD031815C4896E00D9B909 /* AudioToolbox.framework */; };
B2AD032115C493C200D9B909 /* CDIWebViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B2AD032015C493C100D9B909 /* CDIWebViewController.m */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
B208C1DE15BF63E30080705D /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = B208BF6715BF63E00080705D /* SSToolkit.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = D2AAC07E0554694100DB518D;
remoteInfo = SSToolkit;
};
B208C1E015BF63E30080705D /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = B208BF6715BF63E00080705D /* SSToolkit.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = B239101D1357DC3E00ADE21B;
remoteInfo = SSToolkitTests;
};
B208C1E215BF63E30080705D /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = B208BF6715BF63E00080705D /* SSToolkit.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = B2C507EA151BA64400E94614;
remoteInfo = SSToolkitResources;
};
B208C1E715BF64240080705D /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = B208BF6715BF63E00080705D /* SSToolkit.xcodeproj */;
proxyType = 1;
remoteGlobalIDString = D2AAC07D0554694100DB518D;
remoteInfo = SSToolkit;
};
B208C1E915BF64240080705D /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = B208BF6715BF63E00080705D /* SSToolkit.xcodeproj */;
proxyType = 1;
remoteGlobalIDString = B2C507E9151BA64400E94614;
remoteInfo = SSToolkitResources;
};
B208C5BE15BF654B0080705D /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = B208C21215BF65490080705D /* CheddarKit.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = B244408515BE53DC00D4D4CA;
remoteInfo = CheddarKit;
};
B208C5FA15BF656C0080705D /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = B208C21215BF65490080705D /* CheddarKit.xcodeproj */;
proxyType = 1;
remoteGlobalIDString = B244408415BE53DC00D4D4CA;
remoteInfo = CheddarKit;
};
B2A2B05C15C0B64700772CF6 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = B208C21215BF65490080705D /* CheddarKit.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = B2D8D59015BF7EE600A61836;
remoteInfo = CheddarKitMac;
};
/* End PBXContainerItemProxy section */
/* Begin PBXFileReference section */
B208BB9215BF63A80080705D /* CDIAddListTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CDIAddListTableViewCell.h; sourceTree = "<group>"; };
B208BB9315BF63A80080705D /* CDIAddListTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CDIAddListTableViewCell.m; sourceTree = "<group>"; };
B208BB9415BF63A80080705D /* CDIAddTaskAnimationView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CDIAddTaskAnimationView.h; sourceTree = "<group>"; };
B208BB9515BF63A80080705D /* CDIAddTaskAnimationView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CDIAddTaskAnimationView.m; sourceTree = "<group>"; };
B208BB9615BF63A80080705D /* CDIAddTaskView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CDIAddTaskView.h; sourceTree = "<group>"; };
B208BB9715BF63A80080705D /* CDIAddTaskView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CDIAddTaskView.m; sourceTree = "<group>"; };
B208BB9815BF63A80080705D /* CDIAppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CDIAppDelegate.h; sourceTree = "<group>"; };
B208BB9915BF63A80080705D /* CDIAppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CDIAppDelegate.m; sourceTree = "<group>"; };
B208BB9A15BF63A80080705D /* CDIAttributedLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CDIAttributedLabel.h; sourceTree = "<group>"; };
B208BB9B15BF63A80080705D /* CDIAttributedLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CDIAttributedLabel.m; sourceTree = "<group>"; };
B208BB9C15BF63A80080705D /* CDICreateListViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CDICreateListViewController.h; sourceTree = "<group>"; };
B208BB9D15BF63A80080705D /* CDICreateListViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CDICreateListViewController.m; sourceTree = "<group>"; };
B208BB9E15BF63A80080705D /* CDIListsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CDIListsViewController.h; sourceTree = "<group>"; };
B208BB9F15BF63A80080705D /* CDIListsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CDIListsViewController.m; sourceTree = "<group>"; };
B208BBA015BF63A80080705D /* CDIListTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CDIListTableViewCell.h; sourceTree = "<group>"; };
B208BBA115BF63A80080705D /* CDIListTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CDIListTableViewCell.m; sourceTree = "<group>"; };
B208BBA215BF63A80080705D /* CDIListViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CDIListViewController.h; sourceTree = "<group>"; };
B208BBA315BF63A80080705D /* CDIListViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CDIListViewController.m; sourceTree = "<group>"; };
B208BBA415BF63A80080705D /* CDILoadingView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CDILoadingView.h; sourceTree = "<group>"; };
B208BBA515BF63A80080705D /* CDILoadingView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CDILoadingView.m; sourceTree = "<group>"; };
B208BBA615BF63A80080705D /* CDIManagedTableViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CDIManagedTableViewController.h; sourceTree = "<group>"; };
B208BBA715BF63A80080705D /* CDIManagedTableViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CDIManagedTableViewController.m; sourceTree = "<group>"; };
B208BBA815BF63A80080705D /* CDINoListsView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CDINoListsView.h; sourceTree = "<group>"; };
B208BBA915BF63A80080705D /* CDINoListsView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CDINoListsView.m; sourceTree = "<group>"; };
B208BBAA15BF63A80080705D /* CDINoTasksView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CDINoTasksView.h; sourceTree = "<group>"; };
B208BBAB15BF63A80080705D /* CDINoTasksView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CDINoTasksView.m; sourceTree = "<group>"; };
B208BBAC15BF63A80080705D /* CDIPullToRefreshContentView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CDIPullToRefreshContentView.h; sourceTree = "<group>"; };
B208BBAD15BF63A80080705D /* CDIPullToRefreshContentView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CDIPullToRefreshContentView.m; sourceTree = "<group>"; };
B208BBAE15BF63A80080705D /* CDIPullToRefreshView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CDIPullToRefreshView.h; sourceTree = "<group>"; };
B208BBAF15BF63A80080705D /* CDIPullToRefreshView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CDIPullToRefreshView.m; sourceTree = "<group>"; };
B208BBB015BF63A80080705D /* CDIRenameTaskViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CDIRenameTaskViewController.h; sourceTree = "<group>"; };
B208BBB115BF63A80080705D /* CDIRenameTaskViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CDIRenameTaskViewController.m; sourceTree = "<group>"; };
B208BBB215BF63A80080705D /* CDISessionsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CDISessionsViewController.h; sourceTree = "<group>"; };
B208BBB315BF63A80080705D /* CDISessionsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CDISessionsViewController.m; sourceTree = "<group>"; };
B208BBB415BF63A80080705D /* CDISettingsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CDISettingsViewController.h; sourceTree = "<group>"; };
B208BBB515BF63A80080705D /* CDISettingsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CDISettingsViewController.m; sourceTree = "<group>"; };
B208BBB615BF63A80080705D /* CDISignInViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CDISignInViewController.h; sourceTree = "<group>"; };
B208BBB715BF63A80080705D /* CDISignInViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CDISignInViewController.m; sourceTree = "<group>"; };
B208BBB815BF63A80080705D /* CDISignUpViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CDISignUpViewController.h; sourceTree = "<group>"; };
B208BBB915BF63A80080705D /* CDISignUpViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CDISignUpViewController.m; sourceTree = "<group>"; };
B208BBBA15BF63A80080705D /* CDISplitViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CDISplitViewController.h; sourceTree = "<group>"; };
B208BBBB15BF63A80080705D /* CDISplitViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CDISplitViewController.m; sourceTree = "<group>"; };
B208BBBC15BF63A80080705D /* CDITableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CDITableViewCell.h; sourceTree = "<group>"; };
B208BBBD15BF63A80080705D /* CDITableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CDITableViewCell.m; sourceTree = "<group>"; };
B208BBBE15BF63A80080705D /* CDITableViewCellDeleteConfirmationControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CDITableViewCellDeleteConfirmationControl.h; sourceTree = "<group>"; };
B208BBBF15BF63A80080705D /* CDITableViewCellDeleteConfirmationControl.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CDITableViewCellDeleteConfirmationControl.m; sourceTree = "<group>"; };
B208BBC015BF63A80080705D /* CDITagView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CDITagView.h; sourceTree = "<group>"; };
B208BBC115BF63A80080705D /* CDITagView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CDITagView.m; sourceTree = "<group>"; };
B208BBC215BF63A80080705D /* CDITaskTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CDITaskTableViewCell.h; sourceTree = "<group>"; };
B208BBC315BF63A80080705D /* CDITaskTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CDITaskTableViewCell.m; sourceTree = "<group>"; };
B208BBC415BF63A80080705D /* CDITransactionObserver.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CDITransactionObserver.h; sourceTree = "<group>"; };
B208BBC515BF63A80080705D /* CDITransactionObserver.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CDITransactionObserver.m; sourceTree = "<group>"; };
B208BBC615BF63A80080705D /* CDIUpgradeViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CDIUpgradeViewController.h; sourceTree = "<group>"; };
B208BBC715BF63A80080705D /* CDIUpgradeViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CDIUpgradeViewController.m; sourceTree = "<group>"; };
B208BBC815BF63A80080705D /* SKPaymentTransaction+CheddariOSAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "SKPaymentTransaction+CheddariOSAdditions.h"; sourceTree = "<group>"; };
B208BBC915BF63A80080705D /* SKPaymentTransaction+CheddariOSAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "SKPaymentTransaction+CheddariOSAdditions.m"; sourceTree = "<group>"; };
B208BBCA15BF63A80080705D /* UIButton+CheddariOSAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIButton+CheddariOSAdditions.h"; sourceTree = "<group>"; };
B208BBCB15BF63A80080705D /* UIButton+CheddariOSAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIButton+CheddariOSAdditions.m"; sourceTree = "<group>"; };
B208BBCC15BF63A80080705D /* UIColor+CheddariOSAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIColor+CheddariOSAdditions.h"; sourceTree = "<group>"; };
B208BBCD15BF63A80080705D /* UIColor+CheddariOSAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIColor+CheddariOSAdditions.m"; sourceTree = "<group>"; };
B208BBCE15BF63A80080705D /* UIFont+CheddariOSAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIFont+CheddariOSAdditions.h"; sourceTree = "<group>"; };
B208BBCF15BF63A80080705D /* UIFont+CheddariOSAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIFont+CheddariOSAdditions.m"; sourceTree = "<group>"; };
B208BBD115BF63A80080705D /* Cheddar-Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "Cheddar-Prefix.pch"; sourceTree = "<group>"; };
B208BBD215BF63A80080705D /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
B208BBD415BF63A80080705D /* Cheddar-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "Cheddar-Info.plist"; sourceTree = "<group>"; };
B208BBD715BF63A80080705D /* add-list-arrow.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "add-list-arrow.png"; sourceTree = "<group>"; };
B208BBD815BF63A80080705D /* add-list-arrow@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "add-list-arrow@2x.png"; sourceTree = "<group>"; };
B208BBD915BF63A80080705D /* add-task-arrow.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "add-task-arrow.png"; sourceTree = "<group>"; };
B208BBDA15BF63A80080705D /* add-task-arrow@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "add-task-arrow@2x.png"; sourceTree = "<group>"; };
B208BBDB15BF63A80080705D /* arches.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = arches.png; sourceTree = "<group>"; };
B208BBDC15BF63A80080705D /* arches@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "arches@2x.png"; sourceTree = "<group>"; };
B208BBDD15BF63A80080705D /* archive-button-highlighted.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "archive-button-highlighted.png"; sourceTree = "<group>"; };
B208BBDE15BF63A80080705D /* archive-button-highlighted@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "archive-button-highlighted@2x.png"; sourceTree = "<group>"; };
B208BBDF15BF63A80080705D /* archive-button.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "archive-button.png"; sourceTree = "<group>"; };
B208BBE015BF63A80080705D /* archive-button@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "archive-button@2x.png"; sourceTree = "<group>"; };
B208BBE115BF63A80080705D /* big-button-highlighted.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "big-button-highlighted.png"; sourceTree = "<group>"; };
B208BBE215BF63A80080705D /* big-button-highlighted@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "big-button-highlighted@2x.png"; sourceTree = "<group>"; };
B208BBE315BF63A80080705D /* big-button.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "big-button.png"; sourceTree = "<group>"; };
B208BBE415BF63A80080705D /* big-button@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "big-button@2x.png"; sourceTree = "<group>"; };
B208BBE515BF63A80080705D /* big-gray-button-highlighted.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "big-gray-button-highlighted.png"; sourceTree = "<group>"; };
B208BBE615BF63A80080705D /* big-gray-button-highlighted@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "big-gray-button-highlighted@2x.png"; sourceTree = "<group>"; };
B208BBE715BF63A80080705D /* big-gray-button.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "big-gray-button.png"; sourceTree = "<group>"; };
B208BBE815BF63A80080705D /* big-gray-button@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "big-gray-button@2x.png"; sourceTree = "<group>"; };
B208BBE915BF63A80080705D /* big-orange-button-highlighted.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "big-orange-button-highlighted.png"; sourceTree = "<group>"; };
B208BBEA15BF63A80080705D /* big-orange-button-highlighted@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "big-orange-button-highlighted@2x.png"; sourceTree = "<group>"; };
B208BBEB15BF63A80080705D /* big-orange-button.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "big-orange-button.png"; sourceTree = "<group>"; };
B208BBEC15BF63A80080705D /* big-orange-button@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "big-orange-button@2x.png"; sourceTree = "<group>"; };
B208BBED15BF63A80080705D /* checkbox.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = checkbox.png; sourceTree = "<group>"; };
B208BBEE15BF63A80080705D /* checkbox@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "checkbox@2x.png"; sourceTree = "<group>"; };
B208BBF715BF63A80080705D /* Default-Landscape.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default-Landscape.png"; sourceTree = "<group>"; };
B208BBF815BF63A80080705D /* Default-Landscape@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default-Landscape@2x.png"; sourceTree = "<group>"; };
B208BBF915BF63A80080705D /* Default-Portrait.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default-Portrait.png"; sourceTree = "<group>"; };
B208BBFA15BF63A80080705D /* Default-Portrait@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default-Portrait@2x.png"; sourceTree = "<group>"; };
B208BBFB15BF63A80080705D /* Default.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Default.png; sourceTree = "<group>"; };
B208BBFC15BF63A80080705D /* Default@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default@2x.png"; sourceTree = "<group>"; };
B208BBFD15BF63A80080705D /* disclosure-highlighted.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "disclosure-highlighted.png"; sourceTree = "<group>"; };
B208BBFE15BF63A80080705D /* disclosure-highlighted@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "disclosure-highlighted@2x.png"; sourceTree = "<group>"; };
B208BBFF15BF63A80080705D /* disclosure.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = disclosure.png; sourceTree = "<group>"; };
B208BC0015BF63A80080705D /* disclosure@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "disclosure@2x.png"; sourceTree = "<group>"; };
B208BC0115BF63A80080705D /* Icon-100.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Icon-100.png"; sourceTree = "<group>"; };
B208BC0215BF63A80080705D /* Icon-114.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Icon-114.png"; sourceTree = "<group>"; };
B208BC0315BF63A80080705D /* Icon-144.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Icon-144.png"; sourceTree = "<group>"; };
B208BC0415BF63A80080705D /* Icon-29.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Icon-29.png"; sourceTree = "<group>"; };
B208BC0515BF63A80080705D /* Icon-50.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Icon-50.png"; sourceTree = "<group>"; };
B208BC0615BF63A80080705D /* Icon-57.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Icon-57.png"; sourceTree = "<group>"; };
B208BC0715BF63A80080705D /* Icon-58.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Icon-58.png"; sourceTree = "<group>"; };
B208BC0815BF63A80080705D /* Icon-72.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Icon-72.png"; sourceTree = "<group>"; };
B208BC0915BF63A80080705D /* list-icon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "list-icon.png"; sourceTree = "<group>"; };
B208BC0A15BF63A80080705D /* list-icon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "list-icon@2x.png"; sourceTree = "<group>"; };
B208BC0B15BF63A80080705D /* nav-back-highlighted.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "nav-back-highlighted.png"; sourceTree = "<group>"; };
B208BC0C15BF63A80080705D /* nav-back-highlighted@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "nav-back-highlighted@2x.png"; sourceTree = "<group>"; };
B208BC0D15BF63A80080705D /* nav-back.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "nav-back.png"; sourceTree = "<group>"; };
B208BC0E15BF63A80080705D /* nav-back@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "nav-back@2x.png"; sourceTree = "<group>"; };
B208BC0F15BF63A80080705D /* nav-background.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "nav-background.png"; sourceTree = "<group>"; };
B208BC1015BF63A80080705D /* nav-background@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "nav-background@2x.png"; sourceTree = "<group>"; };
B208BC1115BF63A80080705D /* nav-button-highlighted.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "nav-button-highlighted.png"; sourceTree = "<group>"; };
B208BC1215BF63A80080705D /* nav-button-highlighted@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "nav-button-highlighted@2x.png"; sourceTree = "<group>"; };
B208BC1315BF63A80080705D /* nav-button.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "nav-button.png"; sourceTree = "<group>"; };
B208BC1415BF63A80080705D /* nav-button@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "nav-button@2x.png"; sourceTree = "<group>"; };
B208BC1515BF63A80080705D /* nav-title.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "nav-title.png"; sourceTree = "<group>"; };
B208BC1615BF63A80080705D /* nav-title@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "nav-title@2x.png"; sourceTree = "<group>"; };
B208BC1715BF63A80080705D /* plus.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = plus.png; sourceTree = "<group>"; };
B208BC1815BF63A80080705D /* plus@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "plus@2x.png"; sourceTree = "<group>"; };
B208BC1915BF63A80080705D /* settings.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = settings.png; sourceTree = "<group>"; };
B208BC1A15BF63A80080705D /* settings@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "settings@2x.png"; sourceTree = "<group>"; };
B208BC1B15BF63A80080705D /* small-check.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "small-check.png"; sourceTree = "<group>"; };
B208BC1C15BF63A80080705D /* small-check@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "small-check@2x.png"; sourceTree = "<group>"; };
B208BC1D15BF63A80080705D /* tag-x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "tag-x.png"; sourceTree = "<group>"; };
B208BC1E15BF63A80080705D /* tag-x@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "tag-x@2x.png"; sourceTree = "<group>"; };
B208BC1F15BF63A80080705D /* tag.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = tag.png; sourceTree = "<group>"; };
B208BC2015BF63A80080705D /* tag@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "tag@2x.png"; sourceTree = "<group>"; };
B208BC2115BF63A80080705D /* task-icon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "task-icon.png"; sourceTree = "<group>"; };
B208BC2215BF63A80080705D /* task-icon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "task-icon@2x.png"; sourceTree = "<group>"; };
B208BC2315BF63A80080705D /* textfield-focused.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "textfield-focused.png"; sourceTree = "<group>"; };
B208BC2415BF63A80080705D /* textfield-focused@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "textfield-focused@2x.png"; sourceTree = "<group>"; };
B208BC2515BF63A80080705D /* textfield.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = textfield.png; sourceTree = "<group>"; };
B208BC2615BF63A80080705D /* textfield@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "textfield@2x.png"; sourceTree = "<group>"; };
B208BC2715BF63A80080705D /* x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = x.png; sourceTree = "<group>"; };
B208BC2815BF63A80080705D /* x@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "x@2x.png"; sourceTree = "<group>"; };
B208BE4315BF63E00080705D /* Crashlytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = Crashlytics.framework; sourceTree = "<group>"; };
B208BE5F15BF63E00080705D /* LocalyticsDatabase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LocalyticsDatabase.h; sourceTree = "<group>"; };
B208BE6015BF63E00080705D /* LocalyticsDatabase.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LocalyticsDatabase.m; sourceTree = "<group>"; };
B208BE6115BF63E00080705D /* LocalyticsSession.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LocalyticsSession.h; sourceTree = "<group>"; };
B208BE6215BF63E00080705D /* LocalyticsSession.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LocalyticsSession.m; sourceTree = "<group>"; };
B208BE6315BF63E00080705D /* LocalyticsUploader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LocalyticsUploader.h; sourceTree = "<group>"; };
B208BE6415BF63E00080705D /* LocalyticsUploader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LocalyticsUploader.m; sourceTree = "<group>"; };
B208BE6515BF63E00080705D /* LocalyticsUtilities.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LocalyticsUtilities.h; sourceTree = "<group>"; };
B208BE6615BF63E00080705D /* LocalyticsUtilities.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LocalyticsUtilities.m; sourceTree = "<group>"; };
B208BE6815BF63E00080705D /* WebserviceConstants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WebserviceConstants.h; sourceTree = "<group>"; };
B208BEC215BF63E00080705D /* SSPullToRefresh.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SSPullToRefresh.h; sourceTree = "<group>"; };
B208BEC415BF63E00080705D /* SSPullToRefreshDefaultContentView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SSPullToRefreshDefaultContentView.h; sourceTree = "<group>"; };
B208BEC515BF63E00080705D /* SSPullToRefreshDefaultContentView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SSPullToRefreshDefaultContentView.m; sourceTree = "<group>"; };
B208BEC615BF63E00080705D /* SSPullToRefreshSimpleContentView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SSPullToRefreshSimpleContentView.h; sourceTree = "<group>"; };
B208BEC715BF63E00080705D /* SSPullToRefreshSimpleContentView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SSPullToRefreshSimpleContentView.m; sourceTree = "<group>"; };
B208BEC815BF63E00080705D /* SSPullToRefreshView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SSPullToRefreshView.h; sourceTree = "<group>"; };
B208BEC915BF63E00080705D /* SSPullToRefreshView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SSPullToRefreshView.m; sourceTree = "<group>"; };
B208BF6715BF63E00080705D /* SSToolkit.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; path = SSToolkit.xcodeproj; sourceTree = "<group>"; };
B208BF7D15BF63E00080705D /* TTTAttributedLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TTTAttributedLabel.h; sourceTree = "<group>"; };
B208BF7E15BF63E00080705D /* TTTAttributedLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TTTAttributedLabel.m; sourceTree = "<group>"; };
B208C1EC15BF64630080705D /* CoreData.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreData.framework; path = System/Library/Frameworks/CoreData.framework; sourceTree = SDKROOT; };
B208C1ED15BF64630080705D /* CoreText.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreText.framework; path = System/Library/Frameworks/CoreText.framework; sourceTree = SDKROOT; };
B208C1EE15BF64630080705D /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
B208C1EF15BF64630080705D /* MobileCoreServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MobileCoreServices.framework; path = System/Library/Frameworks/MobileCoreServices.framework; sourceTree = SDKROOT; };
B208C1F015BF64630080705D /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
B208C1F115BF64630080705D /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = System/Library/Frameworks/Security.framework; sourceTree = SDKROOT; };
B208C1F215BF64630080705D /* SystemConfiguration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = System/Library/Frameworks/SystemConfiguration.framework; sourceTree = SDKROOT; };
B208C1F315BF64630080705D /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
B208C21215BF65490080705D /* CheddarKit.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; path = CheddarKit.xcodeproj; sourceTree = "<group>"; };
B23261A815C207FF00D455EF /* CDIWebSignInViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CDIWebSignInViewController.h; sourceTree = "<group>"; };
B23261A915C207FF00D455EF /* CDIWebSignInViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CDIWebSignInViewController.m; sourceTree = "<group>"; };
B23FA755151FE0710069A0D1 /* Cheddar.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Cheddar.app; sourceTree = BUILT_PRODUCTS_DIR; };
B26AE9B215C5CF2B0008AB1F /* CDISettingsTapPickerViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CDISettingsTapPickerViewController.h; sourceTree = "<group>"; };
B26AE9B315C5CF2B0008AB1F /* CDISettingsTapPickerViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CDISettingsTapPickerViewController.m; sourceTree = "<group>"; };
B26AE9B515C5D0040008AB1F /* CDISettingsTextSizePickerViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CDISettingsTextSizePickerViewController.h; sourceTree = "<group>"; };
B26AE9B615C5D0040008AB1F /* CDISettingsTextSizePickerViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CDISettingsTextSizePickerViewController.m; sourceTree = "<group>"; };
B26AE9B815C5D0100008AB1F /* CDISettingsFontPickerViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CDISettingsFontPickerViewController.h; sourceTree = "<group>"; };
B26AE9B915C5D0100008AB1F /* CDISettingsFontPickerViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CDISettingsFontPickerViewController.m; sourceTree = "<group>"; };
B26AE9BB15C5D25E0008AB1F /* CDIGroupedTableViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CDIGroupedTableViewController.h; sourceTree = "<group>"; };
B26AE9BC15C5D25E0008AB1F /* CDIGroupedTableViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CDIGroupedTableViewController.m; sourceTree = "<group>"; };
B26AE9BE15C5D52D0008AB1F /* CDIPickerViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CDIPickerViewController.h; sourceTree = "<group>"; };
B26AE9BF15C5D52D0008AB1F /* CDIPickerViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CDIPickerViewController.m; sourceTree = "<group>"; };
B28FD2BD15BF730100365CD6 /* CFNetwork.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CFNetwork.framework; path = System/Library/Frameworks/CFNetwork.framework; sourceTree = SDKROOT; };
B28FD2BF15BF731000365CD6 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
B28FD2C115BF731B00365CD6 /* MessageUI.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MessageUI.framework; path = System/Library/Frameworks/MessageUI.framework; sourceTree = SDKROOT; };
B28FD2C315BF732100365CD6 /* libz.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libz.dylib; path = usr/lib/libz.dylib; sourceTree = SDKROOT; };
B28FD2C515BF732800365CD6 /* StoreKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = StoreKit.framework; path = System/Library/Frameworks/StoreKit.framework; sourceTree = SDKROOT; };
B28FD2C715BF732F00365CD6 /* libsqlite3.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libsqlite3.dylib; path = usr/lib/libsqlite3.dylib; sourceTree = SDKROOT; };
B28FD2D015BF739300365CD6 /* libicucore.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libicucore.dylib; path = usr/lib/libicucore.dylib; sourceTree = SDKROOT; };
B28FD2D215BF742D00365CD6 /* Cheddar.entitlements */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = Cheddar.entitlements; sourceTree = "<group>"; };
B28FD2D515BF742D00365CD6 /* Gotham-Bold.otf */ = {isa = PBXFileReference; lastKnownFileType = text; path = "Gotham-Bold.otf"; sourceTree = "<group>"; };
B28FD2D615BF742D00365CD6 /* Gotham-BoldItalic.otf */ = {isa = PBXFileReference; lastKnownFileType = text; path = "Gotham-BoldItalic.otf"; sourceTree = "<group>"; };
B28FD2D715BF742D00365CD6 /* Gotham-Book.otf */ = {isa = PBXFileReference; lastKnownFileType = text; path = "Gotham-Book.otf"; sourceTree = "<group>"; };
B28FD2D815BF742D00365CD6 /* Gotham-BookItalic.otf */ = {isa = PBXFileReference; lastKnownFileType = text; path = "Gotham-BookItalic.otf"; sourceTree = "<group>"; };
B28FD2E115BF755600365CD6 /* Cheddar.xcdatamodel */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcdatamodel; path = Cheddar.xcdatamodel; sourceTree = "<group>"; };
B28FD2E315BF756800365CD6 /* Cheddar 2.xcdatamodel */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcdatamodel; path = "Cheddar 2.xcdatamodel"; sourceTree = "<group>"; };
B28FD2E415BF761C00365CD6 /* CDIDefines.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CDIDefines.h; sourceTree = "<group>"; };
B28FD2E715BF774D00365CD6 /* CDIDefines.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CDIDefines.m; sourceTree = "<group>"; };
B290118615C49B07008FC626 /* toolbar-background-mini.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "toolbar-background-mini.png"; sourceTree = "<group>"; };
B290118715C49B07008FC626 /* toolbar-background-mini@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "toolbar-background-mini@2x.png"; sourceTree = "<group>"; };
B290118815C49B07008FC626 /* toolbar-background.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "toolbar-background.png"; sourceTree = "<group>"; };
B290118915C49B07008FC626 /* toolbar-background@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "toolbar-background@2x.png"; sourceTree = "<group>"; };
B290118E15C4A9EC008FC626 /* action-button.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "action-button.png"; sourceTree = "<group>"; };
B290118F15C4A9EC008FC626 /* action-button@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "action-button@2x.png"; sourceTree = "<group>"; };
B290119015C4A9EC008FC626 /* back-button.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "back-button.png"; sourceTree = "<group>"; };
B290119115C4A9EC008FC626 /* back-button@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "back-button@2x.png"; sourceTree = "<group>"; };
B290119215C4A9EC008FC626 /* forward-button.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "forward-button.png"; sourceTree = "<group>"; };
B290119315C4A9EC008FC626 /* forward-button@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "forward-button@2x.png"; sourceTree = "<group>"; };
B290119415C4A9EC008FC626 /* reload-button.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "reload-button.png"; sourceTree = "<group>"; };
B290119515C4A9EC008FC626 /* reload-button@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "reload-button@2x.png"; sourceTree = "<group>"; };
B290119615C4A9EC008FC626 /* safari-button.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "safari-button.png"; sourceTree = "<group>"; };
B290119715C4A9EC008FC626 /* safari-button@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "safari-button@2x.png"; sourceTree = "<group>"; };
B290119815C4A9EC008FC626 /* stop-button.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "stop-button.png"; sourceTree = "<group>"; };
B290119915C4A9EC008FC626 /* stop-button@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "stop-button@2x.png"; sourceTree = "<group>"; };
B29011A915C4D247008FC626 /* action-button-mini.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "action-button-mini.png"; sourceTree = "<group>"; };
B29011AA15C4D247008FC626 /* action-button-mini@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "action-button-mini@2x.png"; sourceTree = "<group>"; };
B29011AB15C4D247008FC626 /* back-button-mini.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "back-button-mini.png"; sourceTree = "<group>"; };
B29011AC15C4D247008FC626 /* back-button-mini@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "back-button-mini@2x.png"; sourceTree = "<group>"; };
B29011AD15C4D247008FC626 /* forward-button-mini.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "forward-button-mini.png"; sourceTree = "<group>"; };
B29011AE15C4D247008FC626 /* forward-button-mini@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "forward-button-mini@2x.png"; sourceTree = "<group>"; };
B29011AF15C4D247008FC626 /* reload-button-mini.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "reload-button-mini.png"; sourceTree = "<group>"; };
B29011B015C4D247008FC626 /* reload-button-mini@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "reload-button-mini@2x.png"; sourceTree = "<group>"; };
B29011B115C4D247008FC626 /* safari-button-mini.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "safari-button-mini.png"; sourceTree = "<group>"; };
B29011B215C4D247008FC626 /* safari-button-mini@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "safari-button-mini@2x.png"; sourceTree = "<group>"; };
B29011B315C4D247008FC626 /* stop-button-mini.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "stop-button-mini.png"; sourceTree = "<group>"; };
B29011B415C4D247008FC626 /* stop-button-mini@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "stop-button-mini@2x.png"; sourceTree = "<group>"; };
B29011CC15C505DA008FC626 /* CDISettingsTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CDISettingsTableViewCell.h; sourceTree = "<group>"; };
B29011CD15C505DA008FC626 /* CDISettingsTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CDISettingsTableViewCell.m; sourceTree = "<group>"; };
B296A76615C7B610006137C7 /* cell-checkmark@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "cell-checkmark@2x.png"; sourceTree = "<group>"; };
B296A76B15C7B6BB006137C7 /* cell-checkmark-highlighted.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "cell-checkmark-highlighted.png"; sourceTree = "<group>"; };
B296A76C15C7B6BB006137C7 /* cell-checkmark-highlighted@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "cell-checkmark-highlighted@2x.png"; sourceTree = "<group>"; };
B296A76F15C7B7CF006137C7 /* cell-checkmark.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "cell-checkmark.png"; sourceTree = "<group>"; };
B2A2B07915C0BE7300772CF6 /* CDKTask+CheddariOSAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "CDKTask+CheddariOSAdditions.h"; sourceTree = "<group>"; };
B2A2B07A15C0BE7300772CF6 /* CDKTask+CheddariOSAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "CDKTask+CheddariOSAdditions.m"; sourceTree = "<group>"; };
B2AD02DF15C46F7300D9B909 /* nav-back-mini-highlighted.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "nav-back-mini-highlighted.png"; sourceTree = "<group>"; };
B2AD02E015C46F7300D9B909 /* nav-back-mini.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "nav-back-mini.png"; sourceTree = "<group>"; };
B2AD02E115C46F7300D9B909 /* nav-button-mini-highlighted.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "nav-button-mini-highlighted.png"; sourceTree = "<group>"; };
B2AD02E215C46F7300D9B909 /* nav-button-mini.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "nav-button-mini.png"; sourceTree = "<group>"; };
B2AD02E715C475B100D9B909 /* nav-back-mini-highlighted@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "nav-back-mini-highlighted@2x.png"; sourceTree = "<group>"; };
B2AD02E815C475B100D9B909 /* nav-back-mini@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "nav-back-mini@2x.png"; sourceTree = "<group>"; };
B2AD02E915C475B100D9B909 /* nav-button-mini-highlighted@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "nav-button-mini-highlighted@2x.png"; sourceTree = "<group>"; };
B2AD02EA15C475B100D9B909 /* nav-button-mini@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "nav-button-mini@2x.png"; sourceTree = "<group>"; };
B2AD02EF15C47BF000D9B909 /* nav-background-mini.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "nav-background-mini.png"; sourceTree = "<group>"; };
B2AD02F115C47E4300D9B909 /* nav-background-mini@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "nav-background-mini@2x.png"; sourceTree = "<group>"; };
B2AD02F315C482B200D9B909 /* TextExpander.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = TextExpander.framework; sourceTree = "<group>"; };
B2AD031815C4896E00D9B909 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = System/Library/Frameworks/AudioToolbox.framework; sourceTree = SDKROOT; };
B2AD031F15C493C100D9B909 /* CDIWebViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CDIWebViewController.h; sourceTree = "<group>"; };
B2AD032015C493C100D9B909 /* CDIWebViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CDIWebViewController.m; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
B23FA752151FE0710069A0D1 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
B2AD031915C4896E00D9B909 /* AudioToolbox.framework in Frameworks */,
B28FD2D115BF739300365CD6 /* libicucore.dylib in Frameworks */,
B208C1F715BF64630080705D /* MobileCoreServices.framework in Frameworks */,
B28FD2C815BF732F00365CD6 /* libsqlite3.dylib in Frameworks */,
B28FD2C615BF732800365CD6 /* StoreKit.framework in Frameworks */,
B28FD2C415BF732100365CD6 /* libz.dylib in Frameworks */,
B28FD2C215BF731B00365CD6 /* MessageUI.framework in Frameworks */,
B28FD2C015BF731100365CD6 /* CoreGraphics.framework in Frameworks */,
B28FD2BE15BF730100365CD6 /* CFNetwork.framework in Frameworks */,
B208C5FC15BF658D0080705D /* libCheddarKit.a in Frameworks */,
B208C1F415BF64630080705D /* CoreData.framework in Frameworks */,
B208C1F515BF64630080705D /* CoreText.framework in Frameworks */,
B208C1F615BF64630080705D /* Foundation.framework in Frameworks */,
B208C1F815BF64630080705D /* QuartzCore.framework in Frameworks */,
B208C1F915BF64630080705D /* Security.framework in Frameworks */,
B208C1FA15BF64630080705D /* SystemConfiguration.framework in Frameworks */,
B208C1FB15BF64630080705D /* UIKit.framework in Frameworks */,
B208C1EB15BF64630080705D /* libSSToolkit.a in Frameworks */,
B208C10115BF63E20080705D /* Crashlytics.framework in Frameworks */,
B2AD02F415C482B200D9B909 /* TextExpander.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
B208BB9115BF63A80080705D /* Classes */ = {
isa = PBXGroup;
children = (
B2D1241F15C1FC3C00ED1218 /* Application */,
B2D1242115C1FC7000ED1218 /* View Controllers */,
B2D1242015C1FC5D00ED1218 /* Views */,
B2D1242215C1FC8B00ED1218 /* Categories */,
B232619F15C206B700D455EF /* Misc */,
);
path = Classes;
sourceTree = "<group>";
};
B208BBD015BF63A80080705D /* Other Sources */ = {
isa = PBXGroup;
children = (
B208BBD115BF63A80080705D /* Cheddar-Prefix.pch */,
B208BBD215BF63A80080705D /* main.m */,
B28FD2E415BF761C00365CD6 /* CDIDefines.h */,
B28FD2E715BF774D00365CD6 /* CDIDefines.m */,
);
path = "Other Sources";
sourceTree = "<group>";
};
B208BBD315BF63A80080705D /* Resources */ = {
isa = PBXGroup;
children = (
B28FD2D215BF742D00365CD6 /* Cheddar.entitlements */,
B28FD2D315BF742D00365CD6 /* Fonts */,
B208BBD415BF63A80080705D /* Cheddar-Info.plist */,
B208BBD615BF63A80080705D /* Images */,
);
path = Resources;
sourceTree = "<group>";
};
B208BBD615BF63A80080705D /* Images */ = {
isa = PBXGroup;
children = (
B296A76B15C7B6BB006137C7 /* cell-checkmark-highlighted.png */,
B296A76C15C7B6BB006137C7 /* cell-checkmark-highlighted@2x.png */,
B296A76615C7B610006137C7 /* cell-checkmark@2x.png */,
B296A76F15C7B7CF006137C7 /* cell-checkmark.png */,
B29011A915C4D247008FC626 /* action-button-mini.png */,
B29011AA15C4D247008FC626 /* action-button-mini@2x.png */,
B29011AB15C4D247008FC626 /* back-button-mini.png */,
B29011AC15C4D247008FC626 /* back-button-mini@2x.png */,
B29011AD15C4D247008FC626 /* forward-button-mini.png */,
B29011AE15C4D247008FC626 /* forward-button-mini@2x.png */,
B29011AF15C4D247008FC626 /* reload-button-mini.png */,
B29011B015C4D247008FC626 /* reload-button-mini@2x.png */,
B29011B115C4D247008FC626 /* safari-button-mini.png */,
B29011B215C4D247008FC626 /* safari-button-mini@2x.png */,
B29011B315C4D247008FC626 /* stop-button-mini.png */,
B29011B415C4D247008FC626 /* stop-button-mini@2x.png */,
B290118E15C4A9EC008FC626 /* action-button.png */,
B290118F15C4A9EC008FC626 /* action-button@2x.png */,
B290119015C4A9EC008FC626 /* back-button.png */,
B290119115C4A9EC008FC626 /* back-button@2x.png */,
B290119215C4A9EC008FC626 /* forward-button.png */,
B290119315C4A9EC008FC626 /* forward-button@2x.png */,
B290119415C4A9EC008FC626 /* reload-button.png */,
B290119515C4A9EC008FC626 /* reload-button@2x.png */,
B290119615C4A9EC008FC626 /* safari-button.png */,
B290119715C4A9EC008FC626 /* safari-button@2x.png */,
B290119815C4A9EC008FC626 /* stop-button.png */,
B290119915C4A9EC008FC626 /* stop-button@2x.png */,
B290118615C49B07008FC626 /* toolbar-background-mini.png */,
B290118715C49B07008FC626 /* toolbar-background-mini@2x.png */,
B290118815C49B07008FC626 /* toolbar-background.png */,
B290118915C49B07008FC626 /* toolbar-background@2x.png */,
B2AD02EF15C47BF000D9B909 /* nav-background-mini.png */,
B2AD02F115C47E4300D9B909 /* nav-background-mini@2x.png */,
B2AD02E715C475B100D9B909 /* nav-back-mini-highlighted@2x.png */,
B2AD02E815C475B100D9B909 /* nav-back-mini@2x.png */,
B2AD02E915C475B100D9B909 /* nav-button-mini-highlighted@2x.png */,
B2AD02EA15C475B100D9B909 /* nav-button-mini@2x.png */,
B2AD02DF15C46F7300D9B909 /* nav-back-mini-highlighted.png */,
B2AD02E015C46F7300D9B909 /* nav-back-mini.png */,
B2AD02E115C46F7300D9B909 /* nav-button-mini-highlighted.png */,
B2AD02E215C46F7300D9B909 /* nav-button-mini.png */,
B208BBD715BF63A80080705D /* add-list-arrow.png */,
B208BBD815BF63A80080705D /* add-list-arrow@2x.png */,
B208BBD915BF63A80080705D /* add-task-arrow.png */,
B208BBDA15BF63A80080705D /* add-task-arrow@2x.png */,
B208BBDB15BF63A80080705D /* arches.png */,
B208BBDC15BF63A80080705D /* arches@2x.png */,
B208BBDD15BF63A80080705D /* archive-button-highlighted.png */,
B208BBDE15BF63A80080705D /* archive-button-highlighted@2x.png */,
B208BBDF15BF63A80080705D /* archive-button.png */,
B208BBE015BF63A80080705D /* archive-button@2x.png */,
B208BBE115BF63A80080705D /* big-button-highlighted.png */,
B208BBE215BF63A80080705D /* big-button-highlighted@2x.png */,
B208BBE315BF63A80080705D /* big-button.png */,
B208BBE415BF63A80080705D /* big-button@2x.png */,
B208BBE515BF63A80080705D /* big-gray-button-highlighted.png */,
B208BBE615BF63A80080705D /* big-gray-button-highlighted@2x.png */,
B208BBE715BF63A80080705D /* big-gray-button.png */,
B208BBE815BF63A80080705D /* big-gray-button@2x.png */,
B208BBE915BF63A80080705D /* big-orange-button-highlighted.png */,
B208BBEA15BF63A80080705D /* big-orange-button-highlighted@2x.png */,
B208BBEB15BF63A80080705D /* big-orange-button.png */,
B208BBEC15BF63A80080705D /* big-orange-button@2x.png */,
B208BBED15BF63A80080705D /* checkbox.png */,
B208BBEE15BF63A80080705D /* checkbox@2x.png */,
B208BBF715BF63A80080705D /* Default-Landscape.png */,
B208BBF815BF63A80080705D /* Default-Landscape@2x.png */,
B208BBF915BF63A80080705D /* Default-Portrait.png */,
B208BBFA15BF63A80080705D /* Default-Portrait@2x.png */,
B208BBFB15BF63A80080705D /* Default.png */,
B208BBFC15BF63A80080705D /* Default@2x.png */,
B208BBFD15BF63A80080705D /* disclosure-highlighted.png */,
B208BBFE15BF63A80080705D /* disclosure-highlighted@2x.png */,
B208BBFF15BF63A80080705D /* disclosure.png */,
B208BC0015BF63A80080705D /* disclosure@2x.png */,
B208BC0115BF63A80080705D /* Icon-100.png */,
B208BC0215BF63A80080705D /* Icon-114.png */,
B208BC0315BF63A80080705D /* Icon-144.png */,
B208BC0415BF63A80080705D /* Icon-29.png */,
B208BC0515BF63A80080705D /* Icon-50.png */,
B208BC0615BF63A80080705D /* Icon-57.png */,
B208BC0715BF63A80080705D /* Icon-58.png */,
B208BC0815BF63A80080705D /* Icon-72.png */,
B208BC0915BF63A80080705D /* list-icon.png */,
B208BC0A15BF63A80080705D /* list-icon@2x.png */,
B208BC0B15BF63A80080705D /* nav-back-highlighted.png */,
B208BC0C15BF63A80080705D /* nav-back-highlighted@2x.png */,
B208BC0D15BF63A80080705D /* nav-back.png */,
B208BC0E15BF63A80080705D /* nav-back@2x.png */,
B208BC0F15BF63A80080705D /* nav-background.png */,
B208BC1015BF63A80080705D /* nav-background@2x.png */,
B208BC1115BF63A80080705D /* nav-button-highlighted.png */,
B208BC1215BF63A80080705D /* nav-button-highlighted@2x.png */,
B208BC1315BF63A80080705D /* nav-button.png */,
B208BC1415BF63A80080705D /* nav-button@2x.png */,
B208BC1515BF63A80080705D /* nav-title.png */,
B208BC1615BF63A80080705D /* nav-title@2x.png */,
B208BC1715BF63A80080705D /* plus.png */,
B208BC1815BF63A80080705D /* plus@2x.png */,
B208BC1915BF63A80080705D /* settings.png */,
B208BC1A15BF63A80080705D /* settings@2x.png */,
B208BC1B15BF63A80080705D /* small-check.png */,
B208BC1C15BF63A80080705D /* small-check@2x.png */,
B208BC1D15BF63A80080705D /* tag-x.png */,
B208BC1E15BF63A80080705D /* tag-x@2x.png */,
B208BC1F15BF63A80080705D /* tag.png */,
B208BC2015BF63A80080705D /* tag@2x.png */,
B208BC2115BF63A80080705D /* task-icon.png */,
B208BC2215BF63A80080705D /* task-icon@2x.png */,
B208BC2315BF63A80080705D /* textfield-focused.png */,
B208BC2415BF63A80080705D /* textfield-focused@2x.png */,
B208BC2515BF63A80080705D /* textfield.png */,
B208BC2615BF63A80080705D /* textfield@2x.png */,
B208BC2715BF63A80080705D /* x.png */,
B208BC2815BF63A80080705D /* x@2x.png */,
);
path = Images;
sourceTree = "<group>";
};
B208BC9D15BF63E00080705D /* Vendor */ = {
isa = PBXGroup;
children = (
B208C1FD15BF65490080705D /* CheddarKit */,
B208BE5E15BF63E00080705D /* Localytics */,
B208BEBF15BF63E00080705D /* SSPullToRefresh */,
B208BECA15BF63E00080705D /* SSToolkit */,
B208BF7915BF63E00080705D /* TTTAttributedLabel */,
B208BE4315BF63E00080705D /* Crashlytics.framework */,
B2AD02F315C482B200D9B909 /* TextExpander.framework */,
);
path = Vendor;
sourceTree = "<group>";
};
B208BE5E15BF63E00080705D /* Localytics */ = {
isa = PBXGroup;
children = (
B208BE5F15BF63E00080705D /* LocalyticsDatabase.h */,
B208BE6015BF63E00080705D /* LocalyticsDatabase.m */,
B208BE6115BF63E00080705D /* LocalyticsSession.h */,
B208BE6215BF63E00080705D /* LocalyticsSession.m */,
B208BE6315BF63E00080705D /* LocalyticsUploader.h */,
B208BE6415BF63E00080705D /* LocalyticsUploader.m */,
B208BE6515BF63E00080705D /* LocalyticsUtilities.h */,
B208BE6615BF63E00080705D /* LocalyticsUtilities.m */,
B208BE6815BF63E00080705D /* WebserviceConstants.h */,
);
path = Localytics;
sourceTree = "<group>";
};
B208BEBF15BF63E00080705D /* SSPullToRefresh */ = {
isa = PBXGroup;
children = (
B208BEC215BF63E00080705D /* SSPullToRefresh.h */,
B208BEC415BF63E00080705D /* SSPullToRefreshDefaultContentView.h */,
B208BEC515BF63E00080705D /* SSPullToRefreshDefaultContentView.m */,
B208BEC615BF63E00080705D /* SSPullToRefreshSimpleContentView.h */,
B208BEC715BF63E00080705D /* SSPullToRefreshSimpleContentView.m */,
B208BEC815BF63E00080705D /* SSPullToRefreshView.h */,
B208BEC915BF63E00080705D /* SSPullToRefreshView.m */,
);
path = SSPullToRefresh;
sourceTree = "<group>";
};
B208BECA15BF63E00080705D /* SSToolkit */ = {
isa = PBXGroup;
children = (
B208BF6715BF63E00080705D /* SSToolkit.xcodeproj */,
);
path = SSToolkit;
sourceTree = "<group>";
};
B208BF6815BF63E00080705D /* Products */ = {
isa = PBXGroup;
children = (
B208C1DF15BF63E30080705D /* libSSToolkit.a */,
B208C1E115BF63E30080705D /* SSToolkitTests.app */,
B208C1E315BF63E30080705D /* SSToolkitResources.bundle */,
);
name = Products;
sourceTree = "<group>";
};
B208BF7915BF63E00080705D /* TTTAttributedLabel */ = {
isa = PBXGroup;
children = (
B208BF7D15BF63E00080705D /* TTTAttributedLabel.h */,
B208BF7E15BF63E00080705D /* TTTAttributedLabel.m */,
);
path = TTTAttributedLabel;
sourceTree = "<group>";
};
B208C1FC15BF64690080705D /* Frameworks */ = {
isa = PBXGroup;
children = (
B2AD031815C4896E00D9B909 /* AudioToolbox.framework */,
B28FD2D015BF739300365CD6 /* libicucore.dylib */,
B28FD2C715BF732F00365CD6 /* libsqlite3.dylib */,
B28FD2C515BF732800365CD6 /* StoreKit.framework */,
B28FD2C315BF732100365CD6 /* libz.dylib */,
B28FD2C115BF731B00365CD6 /* MessageUI.framework */,
B28FD2BF15BF731000365CD6 /* CoreGraphics.framework */,
B28FD2BD15BF730100365CD6 /* CFNetwork.framework */,
B208C1EC15BF64630080705D /* CoreData.framework */,
B208C1ED15BF64630080705D /* CoreText.framework */,
B208C1EE15BF64630080705D /* Foundation.framework */,
B208C1EF15BF64630080705D /* MobileCoreServices.framework */,
B208C1F015BF64630080705D /* QuartzCore.framework */,
B208C1F115BF64630080705D /* Security.framework */,
B208C1F215BF64630080705D /* SystemConfiguration.framework */,
B208C1F315BF64630080705D /* UIKit.framework */,
);
name = Frameworks;
sourceTree = "<group>";
};
B208C1FD15BF65490080705D /* CheddarKit */ = {
isa = PBXGroup;
children = (
B28FD2DF15BF755600365CD6 /* Other Sources */,
B208C21215BF65490080705D /* CheddarKit.xcodeproj */,
);
path = CheddarKit;
sourceTree = "<group>";
};
B208C21315BF65490080705D /* Products */ = {
isa = PBXGroup;
children = (
B208C5BF15BF654B0080705D /* libCheddarKit.a */,
B2A2B05D15C0B64700772CF6 /* CheddarKit.framework */,
);
name = Products;
sourceTree = "<group>";
};
B232619F15C206B700D455EF /* Misc */ = {
isa = PBXGroup;
children = (
B208BBC415BF63A80080705D /* CDITransactionObserver.h */,
B208BBC515BF63A80080705D /* CDITransactionObserver.m */,
);
name = Misc;
sourceTree = "<group>";
};
B23261A015C206C700D455EF /* Cells */ = {
isa = PBXGroup;
children = (
B208BB9215BF63A80080705D /* CDIAddListTableViewCell.h */,
B208BB9315BF63A80080705D /* CDIAddListTableViewCell.m */,
B208BBA015BF63A80080705D /* CDIListTableViewCell.h */,
B208BBA115BF63A80080705D /* CDIListTableViewCell.m */,
B208BBBC15BF63A80080705D /* CDITableViewCell.h */,
B208BBBD15BF63A80080705D /* CDITableViewCell.m */,
B208BBC215BF63A80080705D /* CDITaskTableViewCell.h */,
B208BBC315BF63A80080705D /* CDITaskTableViewCell.m */,
B29011CC15C505DA008FC626 /* CDISettingsTableViewCell.h */,
B29011CD15C505DA008FC626 /* CDISettingsTableViewCell.m */,
);
name = Cells;
sourceTree = "<group>";
};
B23261A115C206D000D455EF /* Animations */ = {
isa = PBXGroup;
children = (
B208BB9415BF63A80080705D /* CDIAddTaskAnimationView.h */,
B208BB9515BF63A80080705D /* CDIAddTaskAnimationView.m */,
);
name = Animations;
sourceTree = "<group>";
};
B23261A215C206EC00D455EF /* Lists */ = {
isa = PBXGroup;
children = (
B208BB9E15BF63A80080705D /* CDIListsViewController.h */,
B208BB9F15BF63A80080705D /* CDIListsViewController.m */,
B208BB9C15BF63A80080705D /* CDICreateListViewController.h */,
B208BB9D15BF63A80080705D /* CDICreateListViewController.m */,
);
name = Lists;
sourceTree = "<group>";
};
B23261A315C206F200D455EF /* List */ = {
isa = PBXGroup;
children = (
B208BBA215BF63A80080705D /* CDIListViewController.h */,
B208BBA315BF63A80080705D /* CDIListViewController.m */,
B208BBB015BF63A80080705D /* CDIRenameTaskViewController.h */,
B208BBB115BF63A80080705D /* CDIRenameTaskViewController.m */,
B2AD031F15C493C100D9B909 /* CDIWebViewController.h */,
B2AD032015C493C100D9B909 /* CDIWebViewController.m */,
);
name = List;
sourceTree = "<group>";
};
B23261A415C206FF00D455EF /* Settings */ = {
isa = PBXGroup;
children = (
B208BBB415BF63A80080705D /* CDISettingsViewController.h */,
B208BBB515BF63A80080705D /* CDISettingsViewController.m */,
B208BBC615BF63A80080705D /* CDIUpgradeViewController.h */,
B208BBC715BF63A80080705D /* CDIUpgradeViewController.m */,
B26AE9B215C5CF2B0008AB1F /* CDISettingsTapPickerViewController.h */,
B26AE9B315C5CF2B0008AB1F /* CDISettingsTapPickerViewController.m */,
B26AE9B515C5D0040008AB1F /* CDISettingsTextSizePickerViewController.h */,
B26AE9B615C5D0040008AB1F /* CDISettingsTextSizePickerViewController.m */,
B26AE9B815C5D0100008AB1F /* CDISettingsFontPickerViewController.h */,
B26AE9B915C5D0100008AB1F /* CDISettingsFontPickerViewController.m */,
);
name = Settings;
sourceTree = "<group>";
};
B23261A515C2070600D455EF /* Sessions */ = {
isa = PBXGroup;
children = (
B208BBB215BF63A80080705D /* CDISessionsViewController.h */,
B208BBB315BF63A80080705D /* CDISessionsViewController.m */,
B208BBB615BF63A80080705D /* CDISignInViewController.h */,
B208BBB715BF63A80080705D /* CDISignInViewController.m */,
B208BBB815BF63A80080705D /* CDISignUpViewController.h */,
B208BBB915BF63A80080705D /* CDISignUpViewController.m */,
B23261A815C207FF00D455EF /* CDIWebSignInViewController.h */,
B23261A915C207FF00D455EF /* CDIWebSignInViewController.m */,
);
name = Sessions;
sourceTree = "<group>";
};
B23261A615C2070D00D455EF /* Abstract */ = {
isa = PBXGroup;
children = (
B208BBA615BF63A80080705D /* CDIManagedTableViewController.h */,
B208BBA715BF63A80080705D /* CDIManagedTableViewController.m */,
B26AE9BB15C5D25E0008AB1F /* CDIGroupedTableViewController.h */,
B26AE9BC15C5D25E0008AB1F /* CDIGroupedTableViewController.m */,
B26AE9BE15C5D52D0008AB1F /* CDIPickerViewController.h */,
B26AE9BF15C5D52D0008AB1F /* CDIPickerViewController.m */,
);
name = Abstract;
sourceTree = "<group>";
};
B23261A715C2071300D455EF /* iPad */ = {
isa = PBXGroup;
children = (
B208BBBA15BF63A80080705D /* CDISplitViewController.h */,
B208BBBB15BF63A80080705D /* CDISplitViewController.m */,
);
name = iPad;
sourceTree = "<group>";
};
B23FA74A151FE0710069A0D1 = {
isa = PBXGroup;
children = (
B208BB9115BF63A80080705D /* Classes */,
B208BBD015BF63A80080705D /* Other Sources */,
B208BBD315BF63A80080705D /* Resources */,
B208BC9D15BF63E00080705D /* Vendor */,
B208C1FC15BF64690080705D /* Frameworks */,
B23FA756151FE0710069A0D1 /* Products */,
);
sourceTree = "<group>";
};
B23FA756151FE0710069A0D1 /* Products */ = {
isa = PBXGroup;
children = (
B23FA755151FE0710069A0D1 /* Cheddar.app */,
);
name = Products;
sourceTree = "<group>";
};
B28FD2D315BF742D00365CD6 /* Fonts */ = {
isa = PBXGroup;
children = (
B28FD2D515BF742D00365CD6 /* Gotham-Bold.otf */,
B28FD2D615BF742D00365CD6 /* Gotham-BoldItalic.otf */,
B28FD2D715BF742D00365CD6 /* Gotham-Book.otf */,
B28FD2D815BF742D00365CD6 /* Gotham-BookItalic.otf */,
);
path = Fonts;
sourceTree = "<group>";
};
B28FD2DF15BF755600365CD6 /* Other Sources */ = {
isa = PBXGroup;
children = (
B28FD2E015BF755600365CD6 /* Cheddar.xcdatamodeld */,
);
path = "Other Sources";
sourceTree = "<group>";
};
B2D1241F15C1FC3C00ED1218 /* Application */ = {
isa = PBXGroup;
children = (
B208BB9815BF63A80080705D /* CDIAppDelegate.h */,
B208BB9915BF63A80080705D /* CDIAppDelegate.m */,
);
name = Application;
sourceTree = "<group>";
};
B2D1242015C1FC5D00ED1218 /* Views */ = {
isa = PBXGroup;
children = (
B23261A015C206C700D455EF /* Cells */,
B23261A115C206D000D455EF /* Animations */,
B208BB9615BF63A80080705D /* CDIAddTaskView.h */,
B208BB9715BF63A80080705D /* CDIAddTaskView.m */,
B208BB9A15BF63A80080705D /* CDIAttributedLabel.h */,
B208BB9B15BF63A80080705D /* CDIAttributedLabel.m */,
B208BBA415BF63A80080705D /* CDILoadingView.h */,
B208BBA515BF63A80080705D /* CDILoadingView.m */,
B208BBA815BF63A80080705D /* CDINoListsView.h */,
B208BBA915BF63A80080705D /* CDINoListsView.m */,
B208BBAA15BF63A80080705D /* CDINoTasksView.h */,
B208BBAB15BF63A80080705D /* CDINoTasksView.m */,
B208BBAC15BF63A80080705D /* CDIPullToRefreshContentView.h */,
B208BBAD15BF63A80080705D /* CDIPullToRefreshContentView.m */,
B208BBAE15BF63A80080705D /* CDIPullToRefreshView.h */,
B208BBAF15BF63A80080705D /* CDIPullToRefreshView.m */,
B208BBBE15BF63A80080705D /* CDITableViewCellDeleteConfirmationControl.h */,
B208BBBF15BF63A80080705D /* CDITableViewCellDeleteConfirmationControl.m */,
B208BBC015BF63A80080705D /* CDITagView.h */,
B208BBC115BF63A80080705D /* CDITagView.m */,
);
name = Views;
sourceTree = "<group>";