summary refs log tree commit diff stats
path: root/Cartographic.xcodeproj/project.pbxproj
blob: cd76e104e20825e8429f28f2b1bc208592a037d4 (plain) (blame)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
// !$*UTF8*$!
{
	archiveVersion = 1;
	classes = {
	};
	objectVersion = 46;
	objects = {

/* Begin PBXAggregateTarget section */
		6C263DDB13F6F4A000116746 /* Versioning */ = {
			isa = PBXAggregateTarget;
			buildConfigurationList = 6C263DDC13F6F4A000116746 /* Build configuration list for PBXAggregateTarget "Versioning" */;
			buildPhases = (
				6C263DDF13F6F4AB00116746 /* ShellScript */,
			);
			dependencies = (
			);
			name = Versioning;
			productName = Versioning;
		};
/* End PBXAggregateTarget section */

/* Begin PBXBuildFile section */
		1D60589B0D05DD56006BFB54 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 29B97316FDCFA39411CA2CEA /* main.m */; };
		3F03221613D78F8C00E6A708 /* HighscoreListController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F03221513D78F8C00E6A708 /* HighscoreListController.m */; };
		3F03221913D7904E00E6A708 /* Highscore.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F03221813D7904E00E6A708 /* Highscore.m */; };
		3F2646B013D4E10800F06CFC /* cart.png in Resources */ = {isa = PBXBuildFile; fileRef = 3F2646AF13D4E10800F06CFC /* cart.png */; };
		3F63FA3B13D4EE48003B3D14 /* bottle.png in Resources */ = {isa = PBXBuildFile; fileRef = 3F63FA3A13D4EE48003B3D14 /* bottle.png */; };
		3F63FA3D13D4EE4D003B3D14 /* cherry.png in Resources */ = {isa = PBXBuildFile; fileRef = 3F63FA3C13D4EE4D003B3D14 /* cherry.png */; };
		3F63FA3F13D4EE53003B3D14 /* oneup.png in Resources */ = {isa = PBXBuildFile; fileRef = 3F63FA3E13D4EE53003B3D14 /* oneup.png */; };
		3F6C7C3413D5DEB100C038FE /* Damage1.wav in Resources */ = {isa = PBXBuildFile; fileRef = 3F6C7C3313D5DEB100C038FE /* Damage1.wav */; };
		3F6C7C4913D5DEDB00C038FE /* Item1.wav in Resources */ = {isa = PBXBuildFile; fileRef = 3F6C7C4813D5DEDB00C038FE /* Item1.wav */; };
		3F6C7C4F13D5E1B600C038FE /* FallingObject.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F6C7C4E13D5E1B600C038FE /* FallingObject.m */; };
		3F6C7C6D13D5E51800C038FE /* Cherry.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F6C7C6C13D5E51800C038FE /* Cherry.m */; };
		3F6C7C7013D5E54E00C038FE /* Bottle.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F6C7C6F13D5E54E00C038FE /* Bottle.m */; };
		3F6C7C7313D5E57100C038FE /* OneUp.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F6C7C7213D5E57100C038FE /* OneUp.m */; };
		3F6C7E9C13D6315D00C038FE /* helvetica.fnt in Resources */ = {isa = PBXBuildFile; fileRef = 3F6C7E9B13D6315D00C038FE /* helvetica.fnt */; };
		3F6C7EAD13D6323600C038FE /* helvetica.png in Resources */ = {isa = PBXBuildFile; fileRef = 3F6C7EAC13D6323600C038FE /* helvetica.png */; };
		3F6C7EC613D6335A00C038FE /* 1up.wav in Resources */ = {isa = PBXBuildFile; fileRef = 3F6C7EC513D6335A00C038FE /* 1up.wav */; };
		3F6C7EE113D636BE00C038FE /* rock.png in Resources */ = {isa = PBXBuildFile; fileRef = 3F6C7EE013D636BE00C038FE /* rock.png */; };
		3F6C7EE413D636CF00C038FE /* Rock.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F6C7EE313D636CF00C038FE /* Rock.m */; };
		3F6C7EE913D6377D00C038FE /* GameOverScene.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F6C7EE813D6377D00C038FE /* GameOverScene.m */; };
		3F6C7F2413D63E6500C038FE /* SeaBeach.png in Resources */ = {isa = PBXBuildFile; fileRef = 3F6C7F2313D63E6500C038FE /* SeaBeach.png */; };
		3F6C7F4B13D647A600C038FE /* GameOver.png in Resources */ = {isa = PBXBuildFile; fileRef = 3F6C7F4A13D647A600C038FE /* GameOver.png */; };
		3F6C7F5B13D648CE00C038FE /* helvetica2.fnt in Resources */ = {isa = PBXBuildFile; fileRef = 3F6C7F5913D648CE00C038FE /* helvetica2.fnt */; };
		3F6C7F5C13D648CE00C038FE /* helvetica2.png in Resources */ = {isa = PBXBuildFile; fileRef = 3F6C7F5A13D648CE00C038FE /* helvetica2.png */; };
		3F7D0EC913D8E6BC00B6CE14 /* back.png in Resources */ = {isa = PBXBuildFile; fileRef = 3F7D0EC813D8E6BC00B6CE14 /* back.png */; };
		3F7D0ECB13D8E6C800B6CE14 /* back2.png in Resources */ = {isa = PBXBuildFile; fileRef = 3F7D0ECA13D8E6C800B6CE14 /* back2.png */; };
		3F7D0F3F13D8F0C800B6CE14 /* getoffthatboatrightnowyounglady.fnt in Resources */ = {isa = PBXBuildFile; fileRef = 3F7D0F3D13D8F0C800B6CE14 /* getoffthatboatrightnowyounglady.fnt */; };
		3F7D0F4013D8F0C800B6CE14 /* getoffthatboatrightnowyounglady.png in Resources */ = {isa = PBXBuildFile; fileRef = 3F7D0F3E13D8F0C800B6CE14 /* getoffthatboatrightnowyounglady.png */; };
		3F7D0F4C13D8F17C00B6CE14 /* highscores.png in Resources */ = {isa = PBXBuildFile; fileRef = 3F7D0F4813D8F17C00B6CE14 /* highscores.png */; };
		3F7D0F4D13D8F17C00B6CE14 /* highscores2.png in Resources */ = {isa = PBXBuildFile; fileRef = 3F7D0F4913D8F17C00B6CE14 /* highscores2.png */; };
		3F7D0F4E13D8F17C00B6CE14 /* newgame.png in Resources */ = {isa = PBXBuildFile; fileRef = 3F7D0F4A13D8F17C00B6CE14 /* newgame.png */; };
		3F7D0F4F13D8F17C00B6CE14 /* newgame2.png in Resources */ = {isa = PBXBuildFile; fileRef = 3F7D0F4B13D8F17C00B6CE14 /* newgame2.png */; };
		3F8394F313D732330059AEE8 /* pause.png in Resources */ = {isa = PBXBuildFile; fileRef = 3F8394F213D732330059AEE8 /* pause.png */; };
		3F8394F513D7328E0059AEE8 /* pause2.png in Resources */ = {isa = PBXBuildFile; fileRef = 3F8394F413D7328E0059AEE8 /* pause2.png */; };
		3F83955313D739B10059AEE8 /* MainMenuLayer.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F83955213D739B10059AEE8 /* MainMenuLayer.m */; };
		3F8395B813D744420059AEE8 /* cartdata.sqlite3 in Resources */ = {isa = PBXBuildFile; fileRef = 3F8395B713D744420059AEE8 /* cartdata.sqlite3 */; };
		3F8395D113D746200059AEE8 /* libsqlite3.0.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 3F8395D013D746200059AEE8 /* libsqlite3.0.dylib */; };
		3FE79CD413D4DE37001A6B93 /* ClassicGameMode.m in Sources */ = {isa = PBXBuildFile; fileRef = 3FE79CD313D4DE37001A6B93 /* ClassicGameMode.m */; };
		504DFC4810AF1557006D82FE /* CLScoreServerPost.h in Headers */ = {isa = PBXBuildFile; fileRef = 504DFC4210AF1557006D82FE /* CLScoreServerPost.h */; };
		504DFC4910AF1557006D82FE /* CLScoreServerPost.m in Sources */ = {isa = PBXBuildFile; fileRef = 504DFC4310AF1557006D82FE /* CLScoreServerPost.m */; };
		504DFC4A10AF1557006D82FE /* CLScoreServerRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 504DFC4410AF1557006D82FE /* CLScoreServerRequest.h */; };
		504DFC4B10AF1557006D82FE /* CLScoreServerRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 504DFC4510AF1557006D82FE /* CLScoreServerRequest.m */; };
		504DFC4C10AF1557006D82FE /* cocoslive.h in Headers */ = {isa = PBXBuildFile; fileRef = 504DFC4610AF1557006D82FE /* cocoslive.h */; };
		504DFC4D10AF1557006D82FE /* cocoslive.m in Sources */ = {isa = PBXBuildFile; fileRef = 504DFC4710AF1557006D82FE /* cocoslive.m */; };
		505574581045D68500A31725 /* AVFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 506EDBA4102F4C9F00A389B3 /* AVFoundation.framework */; };
		505574591045D68500A31725 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DC6640020F83B3EA000B3E49 /* AudioToolbox.framework */; };
		5055745A1045D68500A31725 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DCCBF1B60F6022AE0040855A /* CoreGraphics.framework */; };
		5055745B1045D68500A31725 /* OpenAL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DC6640040F83B3EA000B3E49 /* OpenAL.framework */; };
		5055745C1045D68500A31725 /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DCCBF1BA0F6022AE0040855A /* OpenGLES.framework */; };
		5055745D1045D68500A31725 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DCCBF1BC0F6022AE0040855A /* QuartzCore.framework */; };
		5055745E1045D69D00A31725 /* libz.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 506EDB87102F4C4000A389B3 /* libz.dylib */; };
		50674874107A3B5E0090963A /* ZAttributedString.h in Headers */ = {isa = PBXBuildFile; fileRef = 50674871107A3B5E0090963A /* ZAttributedString.h */; };
		50674875107A3B5E0090963A /* ZAttributedString.m in Sources */ = {isa = PBXBuildFile; fileRef = 50674872107A3B5E0090963A /* ZAttributedString.m */; };
		50674876107A3B5E0090963A /* ZAttributedStringPrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 50674873107A3B5E0090963A /* ZAttributedStringPrivate.h */; };
		506EDB88102F4C4000A389B3 /* libz.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 506EDB87102F4C4000A389B3 /* libz.dylib */; };
		506EDBA5102F4C9F00A389B3 /* AVFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 506EDBA4102F4C9F00A389B3 /* AVFoundation.framework */; };
		506EE1A91030508200A389B3 /* libcocos2d libraries.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 506EE05E10304ED200A389B3 /* libcocos2d libraries.a */; };
		507022A4107672FA00393637 /* Cart_CollectAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 507022A2107672FA00393637 /* Cart_CollectAppDelegate.m */; };
		507ED67E11C63903002ED3FC /* CDAudioManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 507ED67511C63903002ED3FC /* CDAudioManager.h */; };
		507ED67F11C63903002ED3FC /* CDAudioManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 507ED67611C63903002ED3FC /* CDAudioManager.m */; };
		507ED68011C63903002ED3FC /* CDConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 507ED67711C63903002ED3FC /* CDConfig.h */; };
		507ED68111C63903002ED3FC /* CDOpenALSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = 507ED67811C63903002ED3FC /* CDOpenALSupport.h */; };
		507ED68211C63903002ED3FC /* CDOpenALSupport.m in Sources */ = {isa = PBXBuildFile; fileRef = 507ED67911C63903002ED3FC /* CDOpenALSupport.m */; };
		507ED68311C63903002ED3FC /* CocosDenshion.h in Headers */ = {isa = PBXBuildFile; fileRef = 507ED67A11C63903002ED3FC /* CocosDenshion.h */; };
		507ED68411C63903002ED3FC /* CocosDenshion.m in Sources */ = {isa = PBXBuildFile; fileRef = 507ED67B11C63903002ED3FC /* CocosDenshion.m */; };
		507ED68511C63903002ED3FC /* SimpleAudioEngine.h in Headers */ = {isa = PBXBuildFile; fileRef = 507ED67C11C63903002ED3FC /* SimpleAudioEngine.h */; };
		507ED68611C63903002ED3FC /* SimpleAudioEngine.m in Sources */ = {isa = PBXBuildFile; fileRef = 507ED67D11C63903002ED3FC /* SimpleAudioEngine.m */; };
		50F4132A106926B2002A0D5E /* FontLabel.h in Headers */ = {isa = PBXBuildFile; fileRef = 50F41307106926B2002A0D5E /* FontLabel.h */; };
		50F4132B106926B2002A0D5E /* FontLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 50F41308106926B2002A0D5E /* FontLabel.m */; };
		50F4132C106926B2002A0D5E /* FontLabelStringDrawing.h in Headers */ = {isa = PBXBuildFile; fileRef = 50F41309106926B2002A0D5E /* FontLabelStringDrawing.h */; };
		50F4132D106926B2002A0D5E /* FontLabelStringDrawing.m in Sources */ = {isa = PBXBuildFile; fileRef = 50F4130A106926B2002A0D5E /* FontLabelStringDrawing.m */; };
		50F4132E106926B2002A0D5E /* FontManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 50F4130B106926B2002A0D5E /* FontManager.h */; };
		50F4132F106926B2002A0D5E /* FontManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 50F4130C106926B2002A0D5E /* FontManager.m */; };
		50F41332106926B2002A0D5E /* ZFont.h in Headers */ = {isa = PBXBuildFile; fileRef = 50F4130F106926B2002A0D5E /* ZFont.h */; };
		50F41333106926B2002A0D5E /* ZFont.m in Sources */ = {isa = PBXBuildFile; fileRef = 50F41310106926B2002A0D5E /* ZFont.m */; };
		50F4144910692EE7002A0D5E /* Default.png in Resources */ = {isa = PBXBuildFile; fileRef = 50F4144410692EE7002A0D5E /* Default.png */; };
		50F4144A10692EE7002A0D5E /* fps_images.png in Resources */ = {isa = PBXBuildFile; fileRef = 50F4144510692EE7002A0D5E /* fps_images.png */; };
		50F4144B10692EE7002A0D5E /* Icon.png in Resources */ = {isa = PBXBuildFile; fileRef = 50F4144610692EE7002A0D5E /* Icon.png */; };
		6C0C140E13F1C3EC003A31B2 /* ValuableObject.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C0C140D13F1C3EC003A31B2 /* ValuableObject.m */; };
		6C0C141113F2099B003A31B2 /* Cart.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C0C141013F2099B003A31B2 /* Cart.m */; };
		6C0C141413F20E98003A31B2 /* GameMode.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C0C141313F20E98003A31B2 /* GameMode.m */; };
		6C18C3CA1402AD9C0005AA4C /* UIImage+ColorMasking.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C18C3C91402AD9C0005AA4C /* UIImage+ColorMasking.m */; };
		6C18C3D214033DC50005AA4C /* CocosOverlayScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C18C3CD14033DC10005AA4C /* CocosOverlayScrollView.m */; };
		6C18C3D314033DC60005AA4C /* NMPanelMenu.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C18C3CF14033DC30005AA4C /* NMPanelMenu.m */; };
		6C18C3D414033DC60005AA4C /* TouchDelegatingView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C18C3D114033DC40005AA4C /* TouchDelegatingView.m */; };
		6C19F1631401917500F9CCD3 /* feedback.png in Resources */ = {isa = PBXBuildFile; fileRef = 6C19F1621401917500F9CCD3 /* feedback.png */; };
		6C19F1651401917900F9CCD3 /* feedback2.png in Resources */ = {isa = PBXBuildFile; fileRef = 6C19F1641401917900F9CCD3 /* feedback2.png */; };
		6C29041013EAEB590032DA0F /* TutorialBubble.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C29040F13EAEB590032DA0F /* TutorialBubble.m */; };
		6C29041213EAEC8A0032DA0F /* framestuff.png in Resources */ = {isa = PBXBuildFile; fileRef = 6C29041113EAEC8A0032DA0F /* framestuff.png */; };
		6C2A07781436100C007AB76C /* CoreMotion.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C2A07771436100C007AB76C /* CoreMotion.framework */; settings = {ATTRIBUTES = (Weak, ); }; };
		6C39CFE013FC2708002B21AF /* tutorial.png in Resources */ = {isa = PBXBuildFile; fileRef = 6C39CFDF13FC2708002B21AF /* tutorial.png */; };
		6C39CFE213FC2713002B21AF /* tutorial2.png in Resources */ = {isa = PBXBuildFile; fileRef = 6C39CFE113FC2713002B21AF /* tutorial2.png */; };
		6C39CFE513FC4635002B21AF /* JumpGameMode.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C39CFE413FC4635002B21AF /* JumpGameMode.m */; };
		6C39CFE713FC46CD002B21AF /* water.png in Resources */ = {isa = PBXBuildFile; fileRef = 6C39CFE613FC46CD002B21AF /* water.png */; };
		6C39CFE913FC8AC4002B21AF /* jump2.png in Resources */ = {isa = PBXBuildFile; fileRef = 6C39CFE813FC8AC4002B21AF /* jump2.png */; };
		6C39CFEB13FC8ACA002B21AF /* jump.png in Resources */ = {isa = PBXBuildFile; fileRef = 6C39CFEA13FC8ACA002B21AF /* jump.png */; };
		6C39CFF313FD4F8B002B21AF /* GameModeSelection.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C39CFF213FD4F89002B21AF /* GameModeSelection.m */; };
		6C39CFF513FD5526002B21AF /* paintdaubs.png in Resources */ = {isa = PBXBuildFile; fileRef = 6C39CFF413FD5526002B21AF /* paintdaubs.png */; };
		6C39CFF813FD7638002B21AF /* GameModeSelectionLayer.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C39CFF713FD7637002B21AF /* GameModeSelectionLayer.m */; };
		6C39D00813FD9037002B21AF /* florence.png in Resources */ = {isa = PBXBuildFile; fileRef = 6C39D00713FD9037002B21AF /* florence.png */; };
		6C39D01213FD9945002B21AF /* paris.png in Resources */ = {isa = PBXBuildFile; fileRef = 6C39D01113FD9945002B21AF /* paris.png */; };
		6C4400041415080800A9E1D7 /* ZoomFadeTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C4400031415080700A9E1D7 /* ZoomFadeTransition.m */; };
		6C44FFFD1413D03300A9E1D7 /* libTestFlight.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C88B69314119B5A0049E402 /* libTestFlight.a */; };
		6C5179C613DF3839006F1F38 /* Morning1.png in Resources */ = {isa = PBXBuildFile; fileRef = 6C5179C513DF3839006F1F38 /* Morning1.png */; };
		6C85834014055A44009EF100 /* CCNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C85833F14055A44009EF100 /* CCNotifications.m */; };
		6C85834414055B2E009EF100 /* notificationDesign.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C85834314055B2E009EF100 /* notificationDesign.m */; };
		6C85834614056E57009EF100 /* venice.png in Resources */ = {isa = PBXBuildFile; fileRef = 6C85834514056E57009EF100 /* venice.png */; };
		6CC89DD913F2F4E6003704F7 /* Entitlements.plist in Resources */ = {isa = PBXBuildFile; fileRef = 6CC89DD813F2F4E6003704F7 /* Entitlements.plist */; };
		6CC89DDF13F31413003704F7 /* TutorialMode.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CC89DDE13F31413003704F7 /* TutorialMode.m */; };
		6CDBE80C14092DB00072F287 /* ledge.png in Resources */ = {isa = PBXBuildFile; fileRef = 6CDBE80B14092DB00072F287 /* ledge.png */; };
		6CF64C09141B9FA300F3B702 /* PointMultiplier.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CF64C08141B9FA300F3B702 /* PointMultiplier.m */; };
		6CF64C0B141BA37000F3B702 /* multiplier.png in Resources */ = {isa = PBXBuildFile; fileRef = 6CF64C0A141BA37000F3B702 /* multiplier.png */; };
		6CF64C11141BA84200F3B702 /* Absorption2.wav in Resources */ = {isa = PBXBuildFile; fileRef = 6CF64C10141BA84200F3B702 /* Absorption2.wav */; };
		DC6640030F83B3EA000B3E49 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DC6640020F83B3EA000B3E49 /* AudioToolbox.framework */; };
		DC6640050F83B3EA000B3E49 /* OpenAL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DC6640040F83B3EA000B3E49 /* OpenAL.framework */; };
		DCCBF1B70F6022AE0040855A /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DCCBF1B60F6022AE0040855A /* CoreGraphics.framework */; };
		DCCBF1B90F6022AE0040855A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DCCBF1B80F6022AE0040855A /* Foundation.framework */; };
		DCCBF1BB0F6022AE0040855A /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DCCBF1BA0F6022AE0040855A /* OpenGLES.framework */; };
		DCCBF1BD0F6022AE0040855A /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DCCBF1BC0F6022AE0040855A /* QuartzCore.framework */; };
		DCCBF1BF0F6022AE0040855A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DCCBF1BE0F6022AE0040855A /* UIKit.framework */; };
		E02BB521126CA588006E46A2 /* Icon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = E02BB51B126CA588006E46A2 /* Icon@2x.png */; };
		E02BB525126CA588006E46A2 /* Icon-72.png in Resources */ = {isa = PBXBuildFile; fileRef = E02BB51F126CA588006E46A2 /* Icon-72.png */; };
		E02BBA20126CC2CC006E46A2 /* iTunesArtwork in Resources */ = {isa = PBXBuildFile; fileRef = E02BBA1F126CC2CC006E46A2 /* iTunesArtwork */; };
		E02BBBC4126CC2F6006E46A2 /* CCAction.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBB1A126CC2F5006E46A2 /* CCAction.h */; };
		E02BBBC5126CC2F6006E46A2 /* CCAction.m in Sources */ = {isa = PBXBuildFile; fileRef = E02BBB1B126CC2F5006E46A2 /* CCAction.m */; };
		E02BBBC6126CC2F6006E46A2 /* CCActionCamera.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBB1C126CC2F5006E46A2 /* CCActionCamera.h */; };
		E02BBBC7126CC2F6006E46A2 /* CCActionCamera.m in Sources */ = {isa = PBXBuildFile; fileRef = E02BBB1D126CC2F5006E46A2 /* CCActionCamera.m */; };
		E02BBBC8126CC2F6006E46A2 /* CCActionEase.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBB1E126CC2F5006E46A2 /* CCActionEase.h */; };
		E02BBBC9126CC2F6006E46A2 /* CCActionEase.m in Sources */ = {isa = PBXBuildFile; fileRef = E02BBB1F126CC2F5006E46A2 /* CCActionEase.m */; };
		E02BBBCA126CC2F6006E46A2 /* CCActionGrid.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBB20126CC2F5006E46A2 /* CCActionGrid.h */; };
		E02BBBCB126CC2F6006E46A2 /* CCActionGrid.m in Sources */ = {isa = PBXBuildFile; fileRef = E02BBB21126CC2F5006E46A2 /* CCActionGrid.m */; };
		E02BBBCC126CC2F6006E46A2 /* CCActionGrid3D.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBB22126CC2F5006E46A2 /* CCActionGrid3D.h */; };
		E02BBBCD126CC2F6006E46A2 /* CCActionGrid3D.m in Sources */ = {isa = PBXBuildFile; fileRef = E02BBB23126CC2F5006E46A2 /* CCActionGrid3D.m */; };
		E02BBBCE126CC2F6006E46A2 /* CCActionInstant.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBB24126CC2F5006E46A2 /* CCActionInstant.h */; };
		E02BBBCF126CC2F6006E46A2 /* CCActionInstant.m in Sources */ = {isa = PBXBuildFile; fileRef = E02BBB25126CC2F5006E46A2 /* CCActionInstant.m */; };
		E02BBBD0126CC2F6006E46A2 /* CCActionInterval.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBB26126CC2F5006E46A2 /* CCActionInterval.h */; };
		E02BBBD1126CC2F6006E46A2 /* CCActionInterval.m in Sources */ = {isa = PBXBuildFile; fileRef = E02BBB27126CC2F5006E46A2 /* CCActionInterval.m */; };
		E02BBBD2126CC2F6006E46A2 /* CCActionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBB28126CC2F5006E46A2 /* CCActionManager.h */; };
		E02BBBD3126CC2F6006E46A2 /* CCActionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E02BBB29126CC2F5006E46A2 /* CCActionManager.m */; };
		E02BBBD4126CC2F6006E46A2 /* CCActionPageTurn3D.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBB2A126CC2F5006E46A2 /* CCActionPageTurn3D.h */; };
		E02BBBD5126CC2F6006E46A2 /* CCActionPageTurn3D.m in Sources */ = {isa = PBXBuildFile; fileRef = E02BBB2B126CC2F5006E46A2 /* CCActionPageTurn3D.m */; };
		E02BBBD6126CC2F6006E46A2 /* CCActionProgressTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBB2C126CC2F5006E46A2 /* CCActionProgressTimer.h */; };
		E02BBBD7126CC2F6006E46A2 /* CCActionProgressTimer.m in Sources */ = {isa = PBXBuildFile; fileRef = E02BBB2D126CC2F5006E46A2 /* CCActionProgressTimer.m */; };
		E02BBBD8126CC2F6006E46A2 /* CCActionTiledGrid.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBB2E126CC2F5006E46A2 /* CCActionTiledGrid.h */; };
		E02BBBD9126CC2F6006E46A2 /* CCActionTiledGrid.m in Sources */ = {isa = PBXBuildFile; fileRef = E02BBB2F126CC2F5006E46A2 /* CCActionTiledGrid.m */; };
		E02BBBDA126CC2F6006E46A2 /* CCActionTween.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBB30126CC2F5006E46A2 /* CCActionTween.h */; };
		E02BBBDB126CC2F6006E46A2 /* CCActionTween.m in Sources */ = {isa = PBXBuildFile; fileRef = E02BBB31126CC2F5006E46A2 /* CCActionTween.m */; };
		E02BBBDC126CC2F6006E46A2 /* CCAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBB32126CC2F5006E46A2 /* CCAnimation.h */; };
		E02BBBDD126CC2F6006E46A2 /* CCAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = E02BBB33126CC2F5006E46A2 /* CCAnimation.m */; };
		E02BBBDE126CC2F6006E46A2 /* CCAnimationCache.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBB34126CC2F5006E46A2 /* CCAnimationCache.h */; };
		E02BBBDF126CC2F6006E46A2 /* CCAnimationCache.m in Sources */ = {isa = PBXBuildFile; fileRef = E02BBB35126CC2F5006E46A2 /* CCAnimationCache.m */; };
		E02BBBE0126CC2F6006E46A2 /* CCAtlasNode.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBB36126CC2F5006E46A2 /* CCAtlasNode.h */; };
		E02BBBE1126CC2F6006E46A2 /* CCAtlasNode.m in Sources */ = {isa = PBXBuildFile; fileRef = E02BBB37126CC2F5006E46A2 /* CCAtlasNode.m */; };
		E02BBBE2126CC2F6006E46A2 /* CCBlockSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBB38126CC2F5006E46A2 /* CCBlockSupport.h */; };
		E02BBBE3126CC2F6006E46A2 /* CCBlockSupport.m in Sources */ = {isa = PBXBuildFile; fileRef = E02BBB39126CC2F5006E46A2 /* CCBlockSupport.m */; };
		E02BBBE4126CC2F6006E46A2 /* CCCamera.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBB3A126CC2F5006E46A2 /* CCCamera.h */; };
		E02BBBE5126CC2F6006E46A2 /* CCCamera.m in Sources */ = {isa = PBXBuildFile; fileRef = E02BBB3B126CC2F5006E46A2 /* CCCamera.m */; };
		E02BBBE8126CC2F6006E46A2 /* ccConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBB3E126CC2F5006E46A2 /* ccConfig.h */; };
		E02BBBE9126CC2F6006E46A2 /* CCConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBB3F126CC2F5006E46A2 /* CCConfiguration.h */; };
		E02BBBEA126CC2F6006E46A2 /* CCConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = E02BBB40126CC2F5006E46A2 /* CCConfiguration.m */; };
		E02BBBEB126CC2F6006E46A2 /* CCDirector.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBB41126CC2F5006E46A2 /* CCDirector.h */; };
		E02BBBEC126CC2F6006E46A2 /* CCDirector.m in Sources */ = {isa = PBXBuildFile; fileRef = E02BBB42126CC2F5006E46A2 /* CCDirector.m */; };
		E02BBBED126CC2F6006E46A2 /* CCDrawingPrimitives.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBB43126CC2F5006E46A2 /* CCDrawingPrimitives.h */; };
		E02BBBEE126CC2F6006E46A2 /* CCDrawingPrimitives.m in Sources */ = {isa = PBXBuildFile; fileRef = E02BBB44126CC2F5006E46A2 /* CCDrawingPrimitives.m */; };
		E02BBBEF126CC2F6006E46A2 /* CCGrabber.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBB45126CC2F5006E46A2 /* CCGrabber.h */; };
		E02BBBF0126CC2F6006E46A2 /* CCGrabber.m in Sources */ = {isa = PBXBuildFile; fileRef = E02BBB46126CC2F5006E46A2 /* CCGrabber.m */; };
		E02BBBF1126CC2F6006E46A2 /* CCGrid.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBB47126CC2F5006E46A2 /* CCGrid.h */; };
		E02BBBF2126CC2F6006E46A2 /* CCGrid.m in Sources */ = {isa = PBXBuildFile; fileRef = E02BBB48126CC2F5006E46A2 /* CCGrid.m */; };
		E02BBBF3126CC2F6006E46A2 /* CCLabelAtlas.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBB49126CC2F5006E46A2 /* CCLabelAtlas.h */; };
		E02BBBF4126CC2F6006E46A2 /* CCLabelAtlas.m in Sources */ = {isa = PBXBuildFile; fileRef = E02BBB4A126CC2F5006E46A2 /* CCLabelAtlas.m */; };
		E02BBBF5126CC2F6006E46A2 /* CCLabelBMFont.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBB4B126CC2F5006E46A2 /* CCLabelBMFont.h */; };
		E02BBBF6126CC2F6006E46A2 /* CCLabelBMFont.m in Sources */ = {isa = PBXBuildFile; fileRef = E02BBB4C126CC2F5006E46A2 /* CCLabelBMFont.m */; };
		E02BBBF7126CC2F6006E46A2 /* CCLabelTTF.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBB4D126CC2F6006E46A2 /* CCLabelTTF.h */; };
		E02BBBF8126CC2F6006E46A2 /* CCLabelTTF.m in Sources */ = {isa = PBXBuildFile; fileRef = E02BBB4E126CC2F6006E46A2 /* CCLabelTTF.m */; };
		E02BBBF9126CC2F6006E46A2 /* CCLayer.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBB4F126CC2F6006E46A2 /* CCLayer.h */; };
		E02BBBFA126CC2F6006E46A2 /* CCLayer.m in Sources */ = {isa = PBXBuildFile; fileRef = E02BBB50126CC2F6006E46A2 /* CCLayer.m */; };
		E02BBBFB126CC2F6006E46A2 /* ccMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBB51126CC2F6006E46A2 /* ccMacros.h */; };
		E02BBBFC126CC2F6006E46A2 /* CCMenu.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBB52126CC2F6006E46A2 /* CCMenu.h */; };
		E02BBBFD126CC2F6006E46A2 /* CCMenu.m in Sources */ = {isa = PBXBuildFile; fileRef = E02BBB53126CC2F6006E46A2 /* CCMenu.m */; };
		E02BBBFE126CC2F6006E46A2 /* CCMenuItem.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBB54126CC2F6006E46A2 /* CCMenuItem.h */; };
		E02BBBFF126CC2F6006E46A2 /* CCMenuItem.m in Sources */ = {isa = PBXBuildFile; fileRef = E02BBB55126CC2F6006E46A2 /* CCMenuItem.m */; };
		E02BBC00126CC2F6006E46A2 /* CCMotionStreak.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBB56126CC2F6006E46A2 /* CCMotionStreak.h */; };
		E02BBC01126CC2F6006E46A2 /* CCMotionStreak.m in Sources */ = {isa = PBXBuildFile; fileRef = E02BBB57126CC2F6006E46A2 /* CCMotionStreak.m */; };
		E02BBC02126CC2F6006E46A2 /* CCNode.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBB58126CC2F6006E46A2 /* CCNode.h */; };
		E02BBC03126CC2F6006E46A2 /* CCNode.m in Sources */ = {isa = PBXBuildFile; fileRef = E02BBB59126CC2F6006E46A2 /* CCNode.m */; };
		E02BBC04126CC2F6006E46A2 /* CCParallaxNode.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBB5A126CC2F6006E46A2 /* CCParallaxNode.h */; };
		E02BBC05126CC2F6006E46A2 /* CCParallaxNode.m in Sources */ = {isa = PBXBuildFile; fileRef = E02BBB5B126CC2F6006E46A2 /* CCParallaxNode.m */; };
		E02BBC06126CC2F6006E46A2 /* CCParticleExamples.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBB5C126CC2F6006E46A2 /* CCParticleExamples.h */; };
		E02BBC07126CC2F6006E46A2 /* CCParticleExamples.m in Sources */ = {isa = PBXBuildFile; fileRef = E02BBB5D126CC2F6006E46A2 /* CCParticleExamples.m */; };
		E02BBC08126CC2F6006E46A2 /* CCParticleSystem.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBB5E126CC2F6006E46A2 /* CCParticleSystem.h */; };
		E02BBC09126CC2F6006E46A2 /* CCParticleSystem.m in Sources */ = {isa = PBXBuildFile; fileRef = E02BBB5F126CC2F6006E46A2 /* CCParticleSystem.m */; };
		E02BBC0A126CC2F6006E46A2 /* CCParticleSystemPoint.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBB60126CC2F6006E46A2 /* CCParticleSystemPoint.h */; };
		E02BBC0B126CC2F6006E46A2 /* CCParticleSystemPoint.m in Sources */ = {isa = PBXBuildFile; fileRef = E02BBB61126CC2F6006E46A2 /* CCParticleSystemPoint.m */; };
		E02BBC0C126CC2F6006E46A2 /* CCParticleSystemQuad.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBB62126CC2F6006E46A2 /* CCParticleSystemQuad.h */; };
		E02BBC0D126CC2F6006E46A2 /* CCParticleSystemQuad.m in Sources */ = {isa = PBXBuildFile; fileRef = E02BBB63126CC2F6006E46A2 /* CCParticleSystemQuad.m */; };
		E02BBC0E126CC2F6006E46A2 /* CCProgressTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBB64126CC2F6006E46A2 /* CCProgressTimer.h */; };
		E02BBC0F126CC2F6006E46A2 /* CCProgressTimer.m in Sources */ = {isa = PBXBuildFile; fileRef = E02BBB65126CC2F6006E46A2 /* CCProgressTimer.m */; };
		E02BBC10126CC2F6006E46A2 /* CCProtocols.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBB66126CC2F6006E46A2 /* CCProtocols.h */; };
		E02BBC11126CC2F6006E46A2 /* CCRenderTexture.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBB67126CC2F6006E46A2 /* CCRenderTexture.h */; };
		E02BBC12126CC2F6006E46A2 /* CCRenderTexture.m in Sources */ = {isa = PBXBuildFile; fileRef = E02BBB68126CC2F6006E46A2 /* CCRenderTexture.m */; };
		E02BBC13126CC2F6006E46A2 /* CCRibbon.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBB69126CC2F6006E46A2 /* CCRibbon.h */; };
		E02BBC14126CC2F6006E46A2 /* CCRibbon.m in Sources */ = {isa = PBXBuildFile; fileRef = E02BBB6A126CC2F6006E46A2 /* CCRibbon.m */; };
		E02BBC15126CC2F6006E46A2 /* CCScene.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBB6B126CC2F6006E46A2 /* CCScene.h */; };
		E02BBC16126CC2F6006E46A2 /* CCScene.m in Sources */ = {isa = PBXBuildFile; fileRef = E02BBB6C126CC2F6006E46A2 /* CCScene.m */; };
		E02BBC17126CC2F6006E46A2 /* CCScheduler.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBB6D126CC2F6006E46A2 /* CCScheduler.h */; };
		E02BBC18126CC2F6006E46A2 /* CCScheduler.m in Sources */ = {isa = PBXBuildFile; fileRef = E02BBB6E126CC2F6006E46A2 /* CCScheduler.m */; };
		E02BBC19126CC2F6006E46A2 /* CCSprite.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBB6F126CC2F6006E46A2 /* CCSprite.h */; };
		E02BBC1A126CC2F6006E46A2 /* CCSprite.m in Sources */ = {isa = PBXBuildFile; fileRef = E02BBB70126CC2F6006E46A2 /* CCSprite.m */; };
		E02BBC1B126CC2F6006E46A2 /* CCSpriteBatchNode.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBB71126CC2F6006E46A2 /* CCSpriteBatchNode.h */; };
		E02BBC1C126CC2F6006E46A2 /* CCSpriteBatchNode.m in Sources */ = {isa = PBXBuildFile; fileRef = E02BBB72126CC2F6006E46A2 /* CCSpriteBatchNode.m */; };
		E02BBC1D126CC2F6006E46A2 /* CCSpriteFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBB73126CC2F6006E46A2 /* CCSpriteFrame.h */; };
		E02BBC1E126CC2F6006E46A2 /* CCSpriteFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = E02BBB74126CC2F6006E46A2 /* CCSpriteFrame.m */; };
		E02BBC1F126CC2F6006E46A2 /* CCSpriteFrameCache.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBB75126CC2F6006E46A2 /* CCSpriteFrameCache.h */; };
		E02BBC20126CC2F6006E46A2 /* CCSpriteFrameCache.m in Sources */ = {isa = PBXBuildFile; fileRef = E02BBB76126CC2F6006E46A2 /* CCSpriteFrameCache.m */; };
		E02BBC23126CC2F6006E46A2 /* CCTexture2D.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBB79126CC2F6006E46A2 /* CCTexture2D.h */; };
		E02BBC24126CC2F6006E46A2 /* CCTexture2D.m in Sources */ = {isa = PBXBuildFile; fileRef = E02BBB7A126CC2F6006E46A2 /* CCTexture2D.m */; };
		E02BBC25126CC2F6006E46A2 /* CCTextureAtlas.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBB7B126CC2F6006E46A2 /* CCTextureAtlas.h */; };
		E02BBC26126CC2F6006E46A2 /* CCTextureAtlas.m in Sources */ = {isa = PBXBuildFile; fileRef = E02BBB7C126CC2F6006E46A2 /* CCTextureAtlas.m */; };
		E02BBC27126CC2F6006E46A2 /* CCTextureCache.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBB7D126CC2F6006E46A2 /* CCTextureCache.h */; };
		E02BBC28126CC2F6006E46A2 /* CCTextureCache.m in Sources */ = {isa = PBXBuildFile; fileRef = E02BBB7E126CC2F6006E46A2 /* CCTextureCache.m */; };
		E02BBC29126CC2F6006E46A2 /* CCTexturePVR.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBB7F126CC2F6006E46A2 /* CCTexturePVR.h */; };
		E02BBC2A126CC2F6006E46A2 /* CCTexturePVR.m in Sources */ = {isa = PBXBuildFile; fileRef = E02BBB80126CC2F6006E46A2 /* CCTexturePVR.m */; };
		E02BBC2B126CC2F6006E46A2 /* CCTileMapAtlas.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBB81126CC2F6006E46A2 /* CCTileMapAtlas.h */; };
		E02BBC2C126CC2F6006E46A2 /* CCTileMapAtlas.m in Sources */ = {isa = PBXBuildFile; fileRef = E02BBB82126CC2F6006E46A2 /* CCTileMapAtlas.m */; };
		E02BBC2D126CC2F6006E46A2 /* CCTMXLayer.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBB83126CC2F6006E46A2 /* CCTMXLayer.h */; };
		E02BBC2E126CC2F6006E46A2 /* CCTMXLayer.m in Sources */ = {isa = PBXBuildFile; fileRef = E02BBB84126CC2F6006E46A2 /* CCTMXLayer.m */; };
		E02BBC2F126CC2F6006E46A2 /* CCTMXObjectGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBB85126CC2F6006E46A2 /* CCTMXObjectGroup.h */; };
		E02BBC30126CC2F6006E46A2 /* CCTMXObjectGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = E02BBB86126CC2F6006E46A2 /* CCTMXObjectGroup.m */; };
		E02BBC31126CC2F6006E46A2 /* CCTMXTiledMap.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBB87126CC2F6006E46A2 /* CCTMXTiledMap.h */; };
		E02BBC32126CC2F6006E46A2 /* CCTMXTiledMap.m in Sources */ = {isa = PBXBuildFile; fileRef = E02BBB88126CC2F6006E46A2 /* CCTMXTiledMap.m */; };
		E02BBC33126CC2F6006E46A2 /* CCTMXXMLParser.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBB89126CC2F6006E46A2 /* CCTMXXMLParser.h */; };
		E02BBC34126CC2F6006E46A2 /* CCTMXXMLParser.m in Sources */ = {isa = PBXBuildFile; fileRef = E02BBB8A126CC2F6006E46A2 /* CCTMXXMLParser.m */; };
		E02BBC35126CC2F6006E46A2 /* CCTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBB8B126CC2F6006E46A2 /* CCTransition.h */; };
		E02BBC36126CC2F6006E46A2 /* CCTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = E02BBB8C126CC2F6006E46A2 /* CCTransition.m */; };
		E02BBC37126CC2F6006E46A2 /* CCTransitionPageTurn.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBB8D126CC2F6006E46A2 /* CCTransitionPageTurn.h */; };
		E02BBC38126CC2F6006E46A2 /* CCTransitionPageTurn.m in Sources */ = {isa = PBXBuildFile; fileRef = E02BBB8E126CC2F6006E46A2 /* CCTransitionPageTurn.m */; };
		E02BBC39126CC2F6006E46A2 /* CCTransitionRadial.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBB8F126CC2F6006E46A2 /* CCTransitionRadial.h */; };
		E02BBC3A126CC2F6006E46A2 /* CCTransitionRadial.m in Sources */ = {isa = PBXBuildFile; fileRef = E02BBB90126CC2F6006E46A2 /* CCTransitionRadial.m */; };
		E02BBC3B126CC2F6006E46A2 /* ccTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBB91126CC2F6006E46A2 /* ccTypes.h */; };
		E02BBC3C126CC2F6006E46A2 /* cocos2d.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBB92126CC2F6006E46A2 /* cocos2d.h */; };
		E02BBC3D126CC2F6006E46A2 /* cocos2d.m in Sources */ = {isa = PBXBuildFile; fileRef = E02BBB93126CC2F6006E46A2 /* cocos2d.m */; };
		E02BBC3E126CC2F6006E46A2 /* CCGL.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBB95126CC2F6006E46A2 /* CCGL.h */; };
		E02BBC3F126CC2F6006E46A2 /* CCNS.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBB96126CC2F6006E46A2 /* CCNS.h */; };
		E02BBC40126CC2F6006E46A2 /* CCDirectorIOS.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBB98126CC2F6006E46A2 /* CCDirectorIOS.h */; };
		E02BBC41126CC2F6006E46A2 /* CCDirectorIOS.m in Sources */ = {isa = PBXBuildFile; fileRef = E02BBB99126CC2F6006E46A2 /* CCDirectorIOS.m */; };
		E02BBC42126CC2F6006E46A2 /* CCTouchDelegateProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBB9A126CC2F6006E46A2 /* CCTouchDelegateProtocol.h */; };
		E02BBC43126CC2F6006E46A2 /* CCTouchDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBB9B126CC2F6006E46A2 /* CCTouchDispatcher.h */; };
		E02BBC44126CC2F6006E46A2 /* CCTouchDispatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = E02BBB9C126CC2F6006E46A2 /* CCTouchDispatcher.m */; };
		E02BBC45126CC2F6006E46A2 /* CCTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBB9D126CC2F6006E46A2 /* CCTouchHandler.h */; };
		E02BBC46126CC2F6006E46A2 /* CCTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = E02BBB9E126CC2F6006E46A2 /* CCTouchHandler.m */; };
		E02BBC47126CC2F6006E46A2 /* EAGLView.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBB9F126CC2F6006E46A2 /* EAGLView.h */; };
		E02BBC48126CC2F6006E46A2 /* EAGLView.m in Sources */ = {isa = PBXBuildFile; fileRef = E02BBBA0126CC2F6006E46A2 /* EAGLView.m */; };
		E02BBC49126CC2F6006E46A2 /* ES1Renderer.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBBA1126CC2F6006E46A2 /* ES1Renderer.h */; };
		E02BBC4A126CC2F6006E46A2 /* ES1Renderer.m in Sources */ = {isa = PBXBuildFile; fileRef = E02BBBA2126CC2F6006E46A2 /* ES1Renderer.m */; };
		E02BBC4B126CC2F6006E46A2 /* ESRenderer.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBBA3126CC2F6006E46A2 /* ESRenderer.h */; };
		E02BBC4C126CC2F6006E46A2 /* glu.c in Sources */ = {isa = PBXBuildFile; fileRef = E02BBBA4126CC2F6006E46A2 /* glu.c */; };
		E02BBC4D126CC2F6006E46A2 /* glu.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBBA5126CC2F6006E46A2 /* glu.h */; };
		E02BBC4E126CC2F6006E46A2 /* CCDirectorMac.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBBA7126CC2F6006E46A2 /* CCDirectorMac.h */; };
		E02BBC4F126CC2F6006E46A2 /* CCDirectorMac.m in Sources */ = {isa = PBXBuildFile; fileRef = E02BBBA8126CC2F6006E46A2 /* CCDirectorMac.m */; };
		E02BBC50126CC2F6006E46A2 /* CCEventDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBBA9126CC2F6006E46A2 /* CCEventDispatcher.h */; };
		E02BBC51126CC2F6006E46A2 /* CCEventDispatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = E02BBBAA126CC2F6006E46A2 /* CCEventDispatcher.m */; };
		E02BBC52126CC2F6006E46A2 /* MacGLView.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBBAB126CC2F6006E46A2 /* MacGLView.h */; };
		E02BBC53126CC2F6006E46A2 /* MacGLView.m in Sources */ = {isa = PBXBuildFile; fileRef = E02BBBAC126CC2F6006E46A2 /* MacGLView.m */; };
		E02BBC54126CC2F6006E46A2 /* base64.c in Sources */ = {isa = PBXBuildFile; fileRef = E02BBBAE126CC2F6006E46A2 /* base64.c */; };
		E02BBC55126CC2F6006E46A2 /* base64.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBBAF126CC2F6006E46A2 /* base64.h */; };
		E02BBC56126CC2F6006E46A2 /* CCArray.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBBB0126CC2F6006E46A2 /* CCArray.h */; };
		E02BBC57126CC2F6006E46A2 /* CCArray.m in Sources */ = {isa = PBXBuildFile; fileRef = E02BBBB1126CC2F6006E46A2 /* CCArray.m */; };
		E02BBC58126CC2F6006E46A2 /* ccCArray.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBBB2126CC2F6006E46A2 /* ccCArray.h */; };
		E02BBC59126CC2F6006E46A2 /* CCFileUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBBB3126CC2F6006E46A2 /* CCFileUtils.h */; };
		E02BBC5A126CC2F6006E46A2 /* CCFileUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = E02BBBB4126CC2F6006E46A2 /* CCFileUtils.m */; };
		E02BBC5B126CC2F6006E46A2 /* CCProfiling.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBBB5126CC2F6006E46A2 /* CCProfiling.h */; };
		E02BBC5C126CC2F6006E46A2 /* CCProfiling.m in Sources */ = {isa = PBXBuildFile; fileRef = E02BBBB6126CC2F6006E46A2 /* CCProfiling.m */; };
		E02BBC5D126CC2F6006E46A2 /* ccUtils.c in Sources */ = {isa = PBXBuildFile; fileRef = E02BBBB7126CC2F6006E46A2 /* ccUtils.c */; };
		E02BBC5E126CC2F6006E46A2 /* ccUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBBB8126CC2F6006E46A2 /* ccUtils.h */; };
		E02BBC5F126CC2F6006E46A2 /* CGPointExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBBB9126CC2F6006E46A2 /* CGPointExtension.h */; };
		E02BBC60126CC2F6006E46A2 /* CGPointExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = E02BBBBA126CC2F6006E46A2 /* CGPointExtension.m */; };
		E02BBC61126CC2F6006E46A2 /* OpenGL_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBBBB126CC2F6006E46A2 /* OpenGL_Internal.h */; };
		E02BBC62126CC2F6006E46A2 /* TGAlib.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBBBC126CC2F6006E46A2 /* TGAlib.h */; };
		E02BBC63126CC2F6006E46A2 /* TGAlib.m in Sources */ = {isa = PBXBuildFile; fileRef = E02BBBBD126CC2F6006E46A2 /* TGAlib.m */; };
		E02BBC64126CC2F6006E46A2 /* TransformUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBBBE126CC2F6006E46A2 /* TransformUtils.h */; };
		E02BBC65126CC2F6006E46A2 /* TransformUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = E02BBBBF126CC2F6006E46A2 /* TransformUtils.m */; };
		E02BBC66126CC2F6006E46A2 /* uthash.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBBC0126CC2F6006E46A2 /* uthash.h */; };
		E02BBC67126CC2F6006E46A2 /* utlist.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBBC1126CC2F6006E46A2 /* utlist.h */; };
		E02BBC68126CC2F6006E46A2 /* ZipUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = E02BBBC2126CC2F6006E46A2 /* ZipUtils.h */; };
		E02BBC69126CC2F6006E46A2 /* ZipUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = E02BBBC3126CC2F6006E46A2 /* ZipUtils.m */; };
		E0ECA42F134E5F2B00E7A048 /* CDataScanner.h in Headers */ = {isa = PBXBuildFile; fileRef = E0ECA420134E5F2B00E7A048 /* CDataScanner.h */; };
		E0ECA430134E5F2B00E7A048 /* CDataScanner.m in Sources */ = {isa = PBXBuildFile; fileRef = E0ECA421134E5F2B00E7A048 /* CDataScanner.m */; };
		E0ECA431134E5F2B00E7A048 /* CDataScanner_Extensions.h in Headers */ = {isa = PBXBuildFile; fileRef = E0ECA423134E5F2B00E7A048 /* CDataScanner_Extensions.h */; };
		E0ECA432134E5F2B00E7A048 /* CDataScanner_Extensions.m in Sources */ = {isa = PBXBuildFile; fileRef = E0ECA424134E5F2B00E7A048 /* CDataScanner_Extensions.m */; };
		E0ECA433134E5F2B00E7A048 /* NSDictionary_JSONExtensions.h in Headers */ = {isa = PBXBuildFile; fileRef = E0ECA425134E5F2B00E7A048 /* NSDictionary_JSONExtensions.h */; };
		E0ECA434134E5F2B00E7A048 /* NSDictionary_JSONExtensions.m in Sources */ = {isa = PBXBuildFile; fileRef = E0ECA426134E5F2B00E7A048 /* NSDictionary_JSONExtensions.m */; };
		E0ECA435134E5F2B00E7A048 /* CJSONDeserializer.h in Headers */ = {isa = PBXBuildFile; fileRef = E0ECA428134E5F2B00E7A048 /* CJSONDeserializer.h */; };
		E0ECA436134E5F2B00E7A048 /* CJSONDeserializer.m in Sources */ = {isa = PBXBuildFile; fileRef = E0ECA429134E5F2B00E7A048 /* CJSONDeserializer.m */; };
		E0ECA437134E5F2B00E7A048 /* CJSONScanner.h in Headers */ = {isa = PBXBuildFile; fileRef = E0ECA42A134E5F2B00E7A048 /* CJSONScanner.h */; };
		E0ECA438134E5F2B00E7A048 /* CJSONScanner.m in Sources */ = {isa = PBXBuildFile; fileRef = E0ECA42B134E5F2B00E7A048 /* CJSONScanner.m */; };
		E0ECA439134E5F2B00E7A048 /* CJSONSerializer.h in Headers */ = {isa = PBXBuildFile; fileRef = E0ECA42C134E5F2B00E7A048 /* CJSONSerializer.h */; };
		E0ECA43A134E5F2B00E7A048 /* CJSONSerializer.m in Sources */ = {isa = PBXBuildFile; fileRef = E0ECA42D134E5F2B00E7A048 /* CJSONSerializer.m */; };
		E0ECA43B134E5F2B00E7A048 /* JSONRepresentation.h in Headers */ = {isa = PBXBuildFile; fileRef = E0ECA42E134E5F2B00E7A048 /* JSONRepresentation.h */; };
		E0F81038120A173C005866B8 /* RootViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = E0F81037120A173C005866B8 /* RootViewController.m */; };
/* End PBXBuildFile section */

/* Begin PBXContainerItemProxy section */
		506EE1A71030507B00A389B3 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 29B97313FDCFA39411CA2CEA /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = 506EE05D10304ED200A389B3;
			remoteInfo = "cocos2d libraries";
		};
		6C263DE013F6F6E800116746 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 29B97313FDCFA39411CA2CEA /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = 6C263DDB13F6F4A000116746;
			remoteInfo = Versioning;
		};
/* End PBXContainerItemProxy section */

/* Begin PBXFileReference section */
		1D6058910D05DD3D006BFB54 /* Cartographic.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Cartographic.app; sourceTree = BUILT_PRODUCTS_DIR; };
		1F3B9A2C0EF2145700286867 /* Cart_CollectAppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Cart_CollectAppDelegate.h; path = Classes/Cart_CollectAppDelegate.h; sourceTree = SOURCE_ROOT; };
		1F3B9A820EF2151B00286867 /* Cart_Collect_Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Cart_Collect_Prefix.pch; sourceTree = SOURCE_ROOT; };
		29B97316FDCFA39411CA2CEA /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
		3F03221413D78F8C00E6A708 /* HighscoreListController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HighscoreListController.h; sourceTree = "<group>"; };
		3F03221513D78F8C00E6A708 /* HighscoreListController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HighscoreListController.m; sourceTree = "<group>"; };
		3F03221713D7904E00E6A708 /* Highscore.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Highscore.h; sourceTree = "<group>"; };
		3F03221813D7904E00E6A708 /* Highscore.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Highscore.m; sourceTree = "<group>"; };
		3F2646AF13D4E10800F06CFC /* cart.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = cart.png; sourceTree = "<group>"; };
		3F63FA3A13D4EE48003B3D14 /* bottle.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = bottle.png; sourceTree = "<group>"; };
		3F63FA3C13D4EE4D003B3D14 /* cherry.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = cherry.png; sourceTree = "<group>"; };
		3F63FA3E13D4EE53003B3D14 /* oneup.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = oneup.png; sourceTree = "<group>"; };
		3F6C7C3313D5DEB100C038FE /* Damage1.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = Damage1.wav; sourceTree = "<group>"; };
		3F6C7C4813D5DEDB00C038FE /* Item1.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = Item1.wav; sourceTree = "<group>"; };
		3F6C7C4D13D5E1B600C038FE /* FallingObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FallingObject.h; sourceTree = "<group>"; };
		3F6C7C4E13D5E1B600C038FE /* FallingObject.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FallingObject.m; sourceTree = "<group>"; };
		3F6C7C6B13D5E51800C038FE /* Cherry.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Cherry.h; sourceTree = "<group>"; };
		3F6C7C6C13D5E51800C038FE /* Cherry.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Cherry.m; sourceTree = "<group>"; };
		3F6C7C6E13D5E54E00C038FE /* Bottle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Bottle.h; sourceTree = "<group>"; };
		3F6C7C6F13D5E54E00C038FE /* Bottle.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Bottle.m; sourceTree = "<group>"; };
		3F6C7C7113D5E57100C038FE /* OneUp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OneUp.h; sourceTree = "<group>"; };
		3F6C7C7213D5E57100C038FE /* OneUp.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OneUp.m; sourceTree = "<group>"; };
		3F6C7E9B13D6315D00C038FE /* helvetica.fnt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = helvetica.fnt; sourceTree = "<group>"; };
		3F6C7EAC13D6323600C038FE /* helvetica.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = helvetica.png; sourceTree = "<group>"; };
		3F6C7EC513D6335A00C038FE /* 1up.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = 1up.wav; sourceTree = "<group>"; };
		3F6C7EE013D636BE00C038FE /* rock.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = rock.png; sourceTree = "<group>"; };
		3F6C7EE213D636CF00C038FE /* Rock.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Rock.h; sourceTree = "<group>"; };
		3F6C7EE313D636CF00C038FE /* Rock.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Rock.m; sourceTree = "<group>"; };
		3F6C7EE713D6377D00C038FE /* GameOverScene.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GameOverScene.h; sourceTree = "<group>"; };
		3F6C7EE813D6377D00C038FE /* GameOverScene.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GameOverScene.m; sourceTree = "<group>"; };
		3F6C7F2313D63E6500C038FE /* SeaBeach.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = SeaBeach.png; sourceTree = "<group>"; };
		3F6C7F4A13D647A600C038FE /* GameOver.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = GameOver.png; sourceTree = "<group>"; };
		3F6C7F5913D648CE00C038FE /* helvetica2.fnt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = helvetica2.fnt; sourceTree = "<group>"; };
		3F6C7F5A13D648CE00C038FE /* helvetica2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = helvetica2.png; sourceTree = "<group>"; };
		3F7D0EC813D8E6BC00B6CE14 /* back.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = back.png; sourceTree = "<group>"; };
		3F7D0ECA13D8E6C800B6CE14 /* back2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = back2.png; sourceTree = "<group>"; };
		3F7D0F3D13D8F0C800B6CE14 /* getoffthatboatrightnowyounglady.fnt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = getoffthatboatrightnowyounglady.fnt; sourceTree = "<group>"; };
		3F7D0F3E13D8F0C800B6CE14 /* getoffthatboatrightnowyounglady.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = getoffthatboatrightnowyounglady.png; sourceTree = "<group>"; };
		3F7D0F4813D8F17C00B6CE14 /* highscores.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = highscores.png; sourceTree = "<group>"; };
		3F7D0F4913D8F17C00B6CE14 /* highscores2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = highscores2.png; sourceTree = "<group>"; };
		3F7D0F4A13D8F17C00B6CE14 /* newgame.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = newgame.png; sourceTree = "<group>"; };
		3F7D0F4B13D8F17C00B6CE14 /* newgame2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = newgame2.png; sourceTree = "<group>"; };
		3F8394F213D732330059AEE8 /* pause.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = pause.png; sourceTree = "<group>"; };
		3F8394F413D7328E0059AEE8 /* pause2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = pause2.png; sourceTree = "<group>"; };
		3F83955113D739B10059AEE8 /* MainMenuLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MainMenuLayer.h; sourceTree = "<group>"; };
		3F83955213D739B10059AEE8 /* MainMenuLayer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MainMenuLayer.m; sourceTree = "<group>"; };
		3F8395B713D744420059AEE8 /* cartdata.sqlite3 */ = {isa = PBXFileReference; lastKnownFileType = file; path = cartdata.sqlite3; sourceTree = "<group>"; };
		3F8395D013D746200059AEE8 /* libsqlite3.0.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libsqlite3.0.dylib; path = usr/lib/libsqlite3.0.dylib; sourceTree = SDKROOT; };
		3FE79CD213D4DE37001A6B93 /* ClassicGameMode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ClassicGameMode.h; sourceTree = "<group>"; };
		3FE79CD313D4DE37001A6B93 /* ClassicGameMode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ClassicGameMode.m; sourceTree = "<group>"; };
		504DFC4210AF1557006D82FE /* CLScoreServerPost.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CLScoreServerPost.h; sourceTree = "<group>"; };
		504DFC4310AF1557006D82FE /* CLScoreServerPost.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CLScoreServerPost.m; sourceTree = "<group>"; };
		504DFC4410AF1557006D82FE /* CLScoreServerRequest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CLScoreServerRequest.h; sourceTree = "<group>"; };
		504DFC4510AF1557006D82FE /* CLScoreServerRequest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CLScoreServerRequest.m; sourceTree = "<group>"; };
		504DFC4610AF1557006D82FE /* cocoslive.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cocoslive.h; sourceTree = "<group>"; };
		504DFC4710AF1557006D82FE /* cocoslive.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = cocoslive.m; sourceTree = "<group>"; };
		504DFC8A10AF177C006D82FE /* LICENSE.cocos2d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = LICENSE.cocos2d; sourceTree = "<group>"; };
		504DFC8B10AF177C006D82FE /* LICENSE.cocosdenshion */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = LICENSE.cocosdenshion; sourceTree = "<group>"; };
		50674871107A3B5E0090963A /* ZAttributedString.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZAttributedString.h; sourceTree = "<group>"; };
		50674872107A3B5E0090963A /* ZAttributedString.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZAttributedString.m; sourceTree = "<group>"; };
		50674873107A3B5E0090963A /* ZAttributedStringPrivate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZAttributedStringPrivate.h; sourceTree = "<group>"; };
		506EDB87102F4C4000A389B3 /* libz.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libz.dylib; path = usr/lib/libz.dylib; sourceTree = SDKROOT; };
		506EDBA4102F4C9F00A389B3 /* AVFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AVFoundation.framework; path = System/Library/Frameworks/AVFoundation.framework; sourceTree = SDKROOT; };
		506EE05E10304ED200A389B3 /* libcocos2d libraries.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libcocos2d libraries.a"; sourceTree = BUILT_PRODUCTS_DIR; };
		507022A2107672FA00393637 /* Cart_CollectAppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Cart_CollectAppDelegate.m; sourceTree = "<group>"; };
		507ED67511C63903002ED3FC /* CDAudioManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CDAudioManager.h; sourceTree = "<group>"; };
		507ED67611C63903002ED3FC /* CDAudioManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CDAudioManager.m; sourceTree = "<group>"; };
		507ED67711C63903002ED3FC /* CDConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CDConfig.h; sourceTree = "<group>"; };
		507ED67811C63903002ED3FC /* CDOpenALSupport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CDOpenALSupport.h; sourceTree = "<group>"; };
		507ED67911C63903002ED3FC /* CDOpenALSupport.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CDOpenALSupport.m; sourceTree = "<group>"; };
		507ED67A11C63903002ED3FC /* CocosDenshion.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CocosDenshion.h; sourceTree = "<group>"; };
		507ED67B11C63903002ED3FC /* CocosDenshion.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CocosDenshion.m; sourceTree = "<group>"; };
		507ED67C11C63903002ED3FC /* SimpleAudioEngine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SimpleAudioEngine.h; sourceTree = "<group>"; };
		507ED67D11C63903002ED3FC /* SimpleAudioEngine.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SimpleAudioEngine.m; sourceTree = "<group>"; };
		50F41307106926B2002A0D5E /* FontLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FontLabel.h; sourceTree = "<group>"; };
		50F41308106926B2002A0D5E /* FontLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FontLabel.m; sourceTree = "<group>"; };
		50F41309106926B2002A0D5E /* FontLabelStringDrawing.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FontLabelStringDrawing.h; sourceTree = "<group>"; };
		50F4130A106926B2002A0D5E /* FontLabelStringDrawing.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FontLabelStringDrawing.m; sourceTree = "<group>"; };
		50F4130B106926B2002A0D5E /* FontManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FontManager.h; sourceTree = "<group>"; };
		50F4130C106926B2002A0D5E /* FontManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FontManager.m; sourceTree = "<group>"; };
		50F4130F106926B2002A0D5E /* ZFont.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZFont.h; sourceTree = "<group>"; };
		50F41310106926B2002A0D5E /* ZFont.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZFont.m; sourceTree = "<group>"; };
		50F4144410692EE7002A0D5E /* Default.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Default.png; sourceTree = "<group>"; };
		50F4144510692EE7002A0D5E /* fps_images.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = fps_images.png; sourceTree = "<group>"; };
		50F4144610692EE7002A0D5E /* Icon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Icon.png; sourceTree = "<group>"; };
		50F4144710692EE7002A0D5E /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
		6C0C140C13F1C3EC003A31B2 /* ValuableObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ValuableObject.h; sourceTree = "<group>"; };
		6C0C140D13F1C3EC003A31B2 /* ValuableObject.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ValuableObject.m; sourceTree = "<group>"; };
		6C0C140F13F2099B003A31B2 /* Cart.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Cart.h; sourceTree = "<group>"; };
		6C0C141013F2099B003A31B2 /* Cart.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Cart.m; sourceTree = "<group>"; };
		6C0C141213F20E98003A31B2 /* GameMode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GameMode.h; sourceTree = "<group>"; };
		6C0C141313F20E98003A31B2 /* GameMode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GameMode.m; sourceTree = "<group>"; };
		6C18C3C81402AD9C0005AA4C /* UIImage+ColorMasking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+ColorMasking.h"; sourceTree = "<group>"; };
		6C18C3C91402AD9C0005AA4C /* UIImage+ColorMasking.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+ColorMasking.m"; sourceTree = "<group>"; };
		6C18C3CC14033DBF0005AA4C /* CocosOverlayScrollView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CocosOverlayScrollView.h; sourceTree = "<group>"; };
		6C18C3CD14033DC10005AA4C /* CocosOverlayScrollView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CocosOverlayScrollView.m; sourceTree = "<group>"; };
		6C18C3CE14033DC20005AA4C /* NMPanelMenu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NMPanelMenu.h; sourceTree = "<group>"; };
		6C18C3CF14033DC30005AA4C /* NMPanelMenu.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NMPanelMenu.m; sourceTree = "<group>"; };
		6C18C3D014033DC40005AA4C /* TouchDelegatingView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TouchDelegatingView.h; sourceTree = "<group>"; };
		6C18C3D114033DC40005AA4C /* TouchDelegatingView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TouchDelegatingView.m; sourceTree = "<group>"; };
		6C19F15D14018FDF00F9CCD3 /* TestFlight.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TestFlight.h; sourceTree = "<group>"; };
		6C19F1621401917500F9CCD3 /* feedback.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = feedback.png; sourceTree = "<group>"; };
		6C19F1641401917900F9CCD3 /* feedback2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = feedback2.png; sourceTree = "<group>"; };
		6C29040E13EAEB590032DA0F /* TutorialBubble.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TutorialBubble.h; sourceTree = "<group>"; };
		6C29040F13EAEB590032DA0F /* TutorialBubble.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TutorialBubble.m; sourceTree = "<group>"; };
		6C29041113EAEC8A0032DA0F /* framestuff.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = framestuff.png; sourceTree = "<group>"; };
		6C2A07771436100C007AB76C /* CoreMotion.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreMotion.framework; path = System/Library/Frameworks/CoreMotion.framework; sourceTree = SDKROOT; };
		6C39CFDF13FC2708002B21AF /* tutorial.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = tutorial.png; sourceTree = "<group>"; };
		6C39CFE113FC2713002B21AF /* tutorial2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = tutorial2.png; sourceTree = "<group>"; };
		6C39CFE313FC4635002B21AF /* JumpGameMode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JumpGameMode.h; sourceTree = "<group>"; };
		6C39CFE413FC4635002B21AF /* JumpGameMode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JumpGameMode.m; sourceTree = "<group>"; };
		6C39CFE613FC46CD002B21AF /* water.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = water.png; sourceTree = "<group>"; };
		6C39CFE813FC8AC4002B21AF /* jump2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = jump2.png; sourceTree = "<group>"; };
		6C39CFEA13FC8ACA002B21AF /* jump.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = jump.png; sourceTree = "<group>"; };
		6C39CFF113FD4F87002B21AF /* GameModeSelection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GameModeSelection.h; sourceTree = "<group>"; };
		6C39CFF213FD4F89002B21AF /* GameModeSelection.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GameModeSelection.m; sourceTree = "<group>"; };
		6C39CFF413FD5526002B21AF /* paintdaubs.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = paintdaubs.png; sourceTree = "<group>"; };
		6C39CFF613FD7636002B21AF /* GameModeSelectionLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GameModeSelectionLayer.h; sourceTree = "<group>"; };
		6C39CFF713FD7637002B21AF /* GameModeSelectionLayer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GameModeSelectionLayer.m; sourceTree = "<group>"; };
		6C39D00713FD9037002B21AF /* florence.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = florence.png; sourceTree = "<group>"; };
		6C39D01113FD9945002B21AF /* paris.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = paris.png; sourceTree = "<group>"; };
		6C4400021415080700A9E1D7 /* ZoomFadeTransition.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZoomFadeTransition.h; sourceTree = "<group>"; };
		6C4400031415080700A9E1D7 /* ZoomFadeTransition.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZoomFadeTransition.m; sourceTree = "<group>"; };
		6C5179C513DF3839006F1F38 /* Morning1.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Morning1.png; sourceTree = "<group>"; };
		6C85833E14055A44009EF100 /* CCNotifications.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCNotifications.h; sourceTree = "<group>"; };
		6C85833F14055A44009EF100 /* CCNotifications.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCNotifications.m; sourceTree = "<group>"; };
		6C85834214055B2D009EF100 /* notificationDesign.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = notificationDesign.h; sourceTree = "<group>"; };
		6C85834314055B2E009EF100 /* notificationDesign.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = notificationDesign.m; sourceTree = "<group>"; };
		6C85834514056E57009EF100 /* venice.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = venice.png; sourceTree = "<group>"; };
		6C88B69314119B5A0049E402 /* libTestFlight.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libTestFlight.a; sourceTree = "<group>"; };
		6CB532581403BA4F00780A5E /* GameModeSelectionDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GameModeSelectionDelegate.h; sourceTree = "<group>"; };
		6CC89DD813F2F4E6003704F7 /* Entitlements.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Entitlements.plist; sourceTree = "<group>"; };
		6CC89DDD13F31413003704F7 /* TutorialMode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TutorialMode.h; sourceTree = "<group>"; };
		6CC89DDE13F31413003704F7 /* TutorialMode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TutorialMode.m; sourceTree = "<group>"; };
		6CC89DE013F3197F003704F7 /* FallingObjectDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FallingObjectDelegate.h; sourceTree = "<group>"; };
		6CDBE80B14092DB00072F287 /* ledge.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ledge.png; sourceTree = "<group>"; };
		6CDBE80E140936CF0072F287 /* CartDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CartDelegate.h; sourceTree = "<group>"; };
		6CF64C07141B9FA300F3B702 /* PointMultiplier.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PointMultiplier.h; sourceTree = "<group>"; };
		6CF64C08141B9FA300F3B702 /* PointMultiplier.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PointMultiplier.m; sourceTree = "<group>"; };
		6CF64C0A141BA37000F3B702 /* multiplier.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = multiplier.png; sourceTree = "<group>"; };
		6CF64C10141BA84200F3B702 /* Absorption2.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = Absorption2.wav; sourceTree = "<group>"; };
		DC6640020F83B3EA000B3E49 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = System/Library/Frameworks/AudioToolbox.framework; sourceTree = SDKROOT; };
		DC6640040F83B3EA000B3E49 /* OpenAL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenAL.framework; path = System/Library/Frameworks/OpenAL.framework; sourceTree = SDKROOT; };
		DCCBF1B60F6022AE0040855A /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
		DCCBF1B80F6022AE0040855A /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
		DCCBF1BA0F6022AE0040855A /* OpenGLES.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGLES.framework; path = System/Library/Frameworks/OpenGLES.framework; sourceTree = SDKROOT; };
		DCCBF1BC0F6022AE0040855A /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
		DCCBF1BE0F6022AE0040855A /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
		E02BB51B126CA588006E46A2 /* Icon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Icon@2x.png"; sourceTree = "<group>"; };
		E02BB51F126CA588006E46A2 /* Icon-72.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Icon-72.png"; sourceTree = "<group>"; };
		E02BBA1F126CC2CC006E46A2 /* iTunesArtwork */ = {isa = PBXFileReference; lastKnownFileType = file; path = iTunesArtwork; sourceTree = "<group>"; };
		E02BBB1A126CC2F5006E46A2 /* CCAction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCAction.h; sourceTree = "<group>"; };
		E02BBB1B126CC2F5006E46A2 /* CCAction.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCAction.m; sourceTree = "<group>"; };
		E02BBB1C126CC2F5006E46A2 /* CCActionCamera.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCActionCamera.h; sourceTree = "<group>"; };
		E02BBB1D126CC2F5006E46A2 /* CCActionCamera.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCActionCamera.m; sourceTree = "<group>"; };
		E02BBB1E126CC2F5006E46A2 /* CCActionEase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCActionEase.h; sourceTree = "<group>"; };
		E02BBB1F126CC2F5006E46A2 /* CCActionEase.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCActionEase.m; sourceTree = "<group>"; };
		E02BBB20126CC2F5006E46A2 /* CCActionGrid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCActionGrid.h; sourceTree = "<group>"; };
		E02BBB21126CC2F5006E46A2 /* CCActionGrid.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCActionGrid.m; sourceTree = "<group>"; };
		E02BBB22126CC2F5006E46A2 /* CCActionGrid3D.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCActionGrid3D.h; sourceTree = "<group>"; };
		E02BBB23126CC2F5006E46A2 /* CCActionGrid3D.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCActionGrid3D.m; sourceTree = "<group>"; };
		E02BBB24126CC2F5006E46A2 /* CCActionInstant.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCActionInstant.h; sourceTree = "<group>"; };
		E02BBB25126CC2F5006E46A2 /* CCActionInstant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCActionInstant.m; sourceTree = "<group>"; };
		E02BBB26126CC2F5006E46A2 /* CCActionInterval.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCActionInterval.h; sourceTree = "<group>"; };
		E02BBB27126CC2F5006E46A2 /* CCActionInterval.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCActionInterval.m; sourceTree = "<group>"; };
		E02BBB28126CC2F5006E46A2 /* CCActionManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCActionManager.h; sourceTree = "<group>"; };
		E02BBB29126CC2F5006E46A2 /* CCActionManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCActionManager.m; sourceTree = "<group>"; };
		E02BBB2A126CC2F5006E46A2 /* CCActionPageTurn3D.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCActionPageTurn3D.h; sourceTree = "<group>"; };
		E02BBB2B126CC2F5006E46A2 /* CCActionPageTurn3D.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCActionPageTurn3D.m; sourceTree = "<group>"; };
		E02BBB2C126CC2F5006E46A2 /* CCActionProgressTimer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCActionProgressTimer.h; sourceTree = "<group>"; };
		E02BBB2D126CC2F5006E46A2 /* CCActionProgressTimer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCActionProgressTimer.m; sourceTree = "<group>"; };
		E02BBB2E126CC2F5006E46A2 /* CCActionTiledGrid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCActionTiledGrid.h; sourceTree = "<group>"; };
		E02BBB2F126CC2F5006E46A2 /* CCActionTiledGrid.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCActionTiledGrid.m; sourceTree = "<group>"; };
		E02BBB30126CC2F5006E46A2 /* CCActionTween.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCActionTween.h; sourceTree = "<group>"; };
		E02BBB31126CC2F5006E46A2 /* CCActionTween.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCActionTween.m; sourceTree = "<group>"; };
		E02BBB32126CC2F5006E46A2 /* CCAnimation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCAnimation.h; sourceTree = "<group>"; };
		E02BBB33126CC2F5006E46A2 /* CCAnimation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCAnimation.m; sourceTree = "<group>"; };
		E02BBB34126CC2F5006E46A2 /* CCAnimationCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCAnimationCache.h; sourceTree = "<group>"; };
		E02BBB35126CC2F5006E46A2 /* CCAnimationCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCAnimationCache.m; sourceTree = "<group>"; };
		E02BBB36126CC2F5006E46A2 /* CCAtlasNode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCAtlasNode.h; sourceTree = "<group>"; };
		E02BBB37126CC2F5006E46A2 /* CCAtlasNode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCAtlasNode.m; sourceTree = "<group>"; };
		E02BBB38126CC2F5006E46A2 /* CCBlockSupport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCBlockSupport.h; sourceTree = "<group>"; };
		E02BBB39126CC2F5006E46A2 /* CCBlockSupport.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCBlockSupport.m; sourceTree = "<group>"; };
		E02BBB3A126CC2F5006E46A2 /* CCCamera.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCCamera.h; sourceTree = "<group>"; };
		E02BBB3B126CC2F5006E46A2 /* CCCamera.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCCamera.m; sourceTree = "<group>"; };
		E02BBB3E126CC2F5006E46A2 /* ccConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ccConfig.h; sourceTree = "<group>"; };
		E02BBB3F126CC2F5006E46A2 /* CCConfiguration.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCConfiguration.h; sourceTree = "<group>"; };
		E02BBB40126CC2F5006E46A2 /* CCConfiguration.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCConfiguration.m; sourceTree = "<group>"; };
		E02BBB41126CC2F5006E46A2 /* CCDirector.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCDirector.h; sourceTree = "<group>"; };
		E02BBB42126CC2F5006E46A2 /* CCDirector.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCDirector.m; sourceTree = "<group>"; };
		E02BBB43126CC2F5006E46A2 /* CCDrawingPrimitives.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCDrawingPrimitives.h; sourceTree = "<group>"; };
		E02BBB44126CC2F5006E46A2 /* CCDrawingPrimitives.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCDrawingPrimitives.m; sourceTree = "<group>"; };
		E02BBB45126CC2F5006E46A2 /* CCGrabber.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCGrabber.h; sourceTree = "<group>"; };
		E02BBB46126CC2F5006E46A2 /* CCGrabber.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCGrabber.m; sourceTree = "<group>"; };
		E02BBB47126CC2F5006E46A2 /* CCGrid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCGrid.h; sourceTree = "<group>"; };
		E02BBB48126CC2F5006E46A2 /* CCGrid.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCGrid.m; sourceTree = "<group>"; };
		E02BBB49126CC2F5006E46A2 /* CCLabelAtlas.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCLabelAtlas.h; sourceTree = "<group>"; };
		E02BBB4A126CC2F5006E46A2 /* CCLabelAtlas.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCLabelAtlas.m; sourceTree = "<group>"; };
		E02BBB4B126CC2F5006E46A2 /* CCLabelBMFont.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCLabelBMFont.h; sourceTree = "<group>"; };
		E02BBB4C126CC2F5006E46A2 /* CCLabelBMFont.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCLabelBMFont.m; sourceTree = "<group>"; };
		E02BBB4D126CC2F6006E46A2 /* CCLabelTTF.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCLabelTTF.h; sourceTree = "<group>"; };
		E02BBB4E126CC2F6006E46A2 /* CCLabelTTF.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCLabelTTF.m; sourceTree = "<group>"; };
		E02BBB4F126CC2F6006E46A2 /* CCLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCLayer.h; sourceTree = "<group>"; };
		E02BBB50126CC2F6006E46A2 /* CCLayer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCLayer.m; sourceTree = "<group>"; };
		E02BBB51126CC2F6006E46A2 /* ccMacros.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ccMacros.h; sourceTree = "<group>"; };
		E02BBB52126CC2F6006E46A2 /* CCMenu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCMenu.h; sourceTree = "<group>"; };
		E02BBB53126CC2F6006E46A2 /* CCMenu.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCMenu.m; sourceTree = "<group>"; };
		E02BBB54126CC2F6006E46A2 /* CCMenuItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCMenuItem.h; sourceTree = "<group>"; };
		E02BBB55126CC2F6006E46A2 /* CCMenuItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCMenuItem.m; sourceTree = "<group>"; };
		E02BBB56126CC2F6006E46A2 /* CCMotionStreak.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCMotionStreak.h; sourceTree = "<group>"; };
		E02BBB57126CC2F6006E46A2 /* CCMotionStreak.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCMotionStreak.m; sourceTree = "<group>"; };
		E02BBB58126CC2F6006E46A2 /* CCNode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCNode.h; sourceTree = "<group>"; };
		E02BBB59126CC2F6006E46A2 /* CCNode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCNode.m; sourceTree = "<group>"; };
		E02BBB5A126CC2F6006E46A2 /* CCParallaxNode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCParallaxNode.h; sourceTree = "<group>"; };
		E02BBB5B126CC2F6006E46A2 /* CCParallaxNode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCParallaxNode.m; sourceTree = "<group>"; };
		E02BBB5C126CC2F6006E46A2 /* CCParticleExamples.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCParticleExamples.h; sourceTree = "<group>"; };
		E02BBB5D126CC2F6006E46A2 /* CCParticleExamples.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCParticleExamples.m; sourceTree = "<group>"; };
		E02BBB5E126CC2F6006E46A2 /* CCParticleSystem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCParticleSystem.h; sourceTree = "<group>"; };
		E02BBB5F126CC2F6006E46A2 /* CCParticleSystem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCParticleSystem.m; sourceTree = "<group>"; };
		E02BBB60126CC2F6006E46A2 /* CCParticleSystemPoint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCParticleSystemPoint.h; sourceTree = "<group>"; };
		E02BBB61126CC2F6006E46A2 /* CCParticleSystemPoint.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCParticleSystemPoint.m; sourceTree = "<group>"; };
		E02BBB62126CC2F6006E46A2 /* CCParticleSystemQuad.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCParticleSystemQuad.h; sourceTree = "<group>"; };
		E02BBB63126CC2F6006E46A2 /* CCParticleSystemQuad.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCParticleSystemQuad.m; sourceTree = "<group>"; };
		E02BBB64126CC2F6006E46A2 /* CCProgressTimer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCProgressTimer.h; sourceTree = "<group>"; };
		E02BBB65126CC2F6006E46A2 /* CCProgressTimer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCProgressTimer.m; sourceTree = "<group>"; };
		E02BBB66126CC2F6006E46A2 /* CCProtocols.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCProtocols.h; sourceTree = "<group>"; };
		E02BBB67126CC2F6006E46A2 /* CCRenderTexture.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCRenderTexture.h; sourceTree = "<group>"; };
		E02BBB68126CC2F6006E46A2 /* CCRenderTexture.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCRenderTexture.m; sourceTree = "<group>"; };
		E02BBB69126CC2F6006E46A2 /* CCRibbon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCRibbon.h; sourceTree = "<group>"; };
		E02BBB6A126CC2F6006E46A2 /* CCRibbon.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCRibbon.m; sourceTree = "<group>"; };
		E02BBB6B126CC2F6006E46A2 /* CCScene.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCScene.h; sourceTree = "<group>"; };
		E02BBB6C126CC2F6006E46A2 /* CCScene.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCScene.m; sourceTree = "<group>"; };
		E02BBB6D126CC2F6006E46A2 /* CCScheduler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCScheduler.h; sourceTree = "<group>"; };
		E02BBB6E126CC2F6006E46A2 /* CCScheduler.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCScheduler.m; sourceTree = "<group>"; };
		E02BBB6F126CC2F6006E46A2 /* CCSprite.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCSprite.h; sourceTree = "<group>"; };
		E02BBB70126CC2F6006E46A2 /* CCSprite.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCSprite.m; sourceTree = "<group>"; };
		E02BBB71126CC2F6006E46A2 /* CCSpriteBatchNode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCSpriteBatchNode.h; sourceTree = "<group>"; };
		E02BBB72126CC2F6006E46A2 /* CCSpriteBatchNode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCSpriteBatchNode.m; sourceTree = "<group>"; };
		E02BBB73126CC2F6006E46A2 /* CCSpriteFrame.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCSpriteFrame.h; sourceTree = "<group>"; };
		E02BBB74126CC2F6006E46A2 /* CCSpriteFrame.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCSpriteFrame.m; sourceTree = "<group>"; };
		E02BBB75126CC2F6006E46A2 /* CCSpriteFrameCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCSpriteFrameCache.h; sourceTree = "<group>"; };
		E02BBB76126CC2F6006E46A2 /* CCSpriteFrameCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCSpriteFrameCache.m; sourceTree = "<group>"; };
		E02BBB79126CC2F6006E46A2 /* CCTexture2D.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCTexture2D.h; sourceTree = "<group>"; };
		E02BBB7A126CC2F6006E46A2 /* CCTexture2D.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCTexture2D.m; sourceTree = "<group>"; };
		E02BBB7B126CC2F6006E46A2 /* CCTextureAtlas.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCTextureAtlas.h; sourceTree = "<group>"; };
		E02BBB7C126CC2F6006E46A2 /* CCTextureAtlas.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCTextureAtlas.m; sourceTree = "<group>"; };
		E02BBB7D126CC2F6006E46A2 /* CCTextureCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCTextureCache.h; sourceTree = "<group>"; };
		E02BBB7E126CC2F6006E46A2 /* CCTextureCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCTextureCache.m; sourceTree = "<group>"; };
		E02BBB7F126CC2F6006E46A2 /* CCTexturePVR.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCTexturePVR.h; sourceTree = "<group>"; };
		E02BBB80126CC2F6006E46A2 /* CCTexturePVR.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCTexturePVR.m; sourceTree = "<group>"; };
		E02BBB81126CC2F6006E46A2 /* CCTileMapAtlas.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCTileMapAtlas.h; sourceTree = "<group>"; };
		E02BBB82126CC2F6006E46A2 /* CCTileMapAtlas.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCTileMapAtlas.m; sourceTree = "<group>"; };
		E02BBB83126CC2F6006E46A2 /* CCTMXLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCTMXLayer.h; sourceTree = "<group>"; };
		E02BBB84126CC2F6006E46A2 /* CCTMXLayer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCTMXLayer.m; sourceTree = "<group>"; };
		E02BBB85126CC2F6006E46A2 /* CCTMXObjectGroup.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCTMXObjectGroup.h; sourceTree = "<group>"; };
		E02BBB86126CC2F6006E46A2 /* CCTMXObjectGroup.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCTMXObjectGroup.m; sourceTree = "<group>"; };
		E02BBB87126CC2F6006E46A2 /* CCTMXTiledMap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCTMXTiledMap.h; sourceTree = "<group>"; };
		E02BBB88126CC2F6006E46A2 /* CCTMXTiledMap.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCTMXTiledMap.m; sourceTree = "<group>"; };
		E02BBB89126CC2F6006E46A2 /* CCTMXXMLParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCTMXXMLParser.h; sourceTree = "<group>"; };
		E02BBB8A126CC2F6006E46A2 /* CCTMXXMLParser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCTMXXMLParser.m; sourceTree = "<group>"; };
		E02BBB8B126CC2F6006E46A2 /* CCTransition.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCTransition.h; sourceTree = "<group>"; };
		E02BBB8C126CC2F6006E46A2 /* CCTransition.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCTransition.m; sourceTree = "<group>"; };
		E02BBB8D126CC2F6006E46A2 /* CCTransitionPageTurn.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCTransitionPageTurn.h; sourceTree = "<group>"; };
		E02BBB8E126CC2F6006E46A2 /* CCTransitionPageTurn.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCTransitionPageTurn.m; sourceTree = "<group>"; };
		E02BBB8F126CC2F6006E46A2 /* CCTransitionRadial.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCTransitionRadial.h; sourceTree = "<group>"; };
		E02BBB90126CC2F6006E46A2 /* CCTransitionRadial.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCTransitionRadial.m; sourceTree = "<group>"; };
		E02BBB91126CC2F6006E46A2 /* ccTypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ccTypes.h; sourceTree = "<group>"; };
		E02BBB92126CC2F6006E46A2 /* cocos2d.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cocos2d.h; sourceTree = "<group>"; };
		E02BBB93126CC2F6006E46A2 /* cocos2d.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = cocos2d.m; sourceTree = "<group>"; };
		E02BBB95126CC2F6006E46A2 /* CCGL.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCGL.h; sourceTree = "<group>"; };
		E02BBB96126CC2F6006E46A2 /* CCNS.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCNS.h; sourceTree = "<group>"; };
		E02BBB98126CC2F6006E46A2 /* CCDirectorIOS.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCDirectorIOS.h; sourceTree = "<group>"; };
		E02BBB99126CC2F6006E46A2 /* CCDirectorIOS.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCDirectorIOS.m; sourceTree = "<group>"; };
		E02BBB9A126CC2F6006E46A2 /* CCTouchDelegateProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCTouchDelegateProtocol.h; sourceTree = "<group>"; };
		E02BBB9B126CC2F6006E46A2 /* CCTouchDispatcher.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCTouchDispatcher.h; sourceTree = "<group>"; };
		E02BBB9C126CC2F6006E46A2 /* CCTouchDispatcher.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCTouchDispatcher.m; sourceTree = "<group>"; };
		E02BBB9D126CC2F6006E46A2 /* CCTouchHandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCTouchHandler.h; sourceTree = "<group>"; };
		E02BBB9E126CC2F6006E46A2 /* CCTouchHandler.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCTouchHandler.m; sourceTree = "<group>"; };
		E02BBB9F126CC2F6006E46A2 /* EAGLView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EAGLView.h; sourceTree = "<group>"; };
		E02BBBA0126CC2F6006E46A2 /* EAGLView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EAGLView.m; sourceTree = "<group>"; };
		E02BBBA1126CC2F6006E46A2 /* ES1Renderer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ES1Renderer.h; sourceTree = "<group>"; };
		E02BBBA2126CC2F6006E46A2 /* ES1Renderer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ES1Renderer.m; sourceTree = "<group>"; };
		E02BBBA3126CC2F6006E46A2 /* ESRenderer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ESRenderer.h; sourceTree = "<group>"; };
		E02BBBA4126CC2F6006E46A2 /* glu.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = glu.c; sourceTree = "<group>"; };
		E02BBBA5126CC2F6006E46A2 /* glu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glu.h; sourceTree = "<group>"; };
		E02BBBA7126CC2F6006E46A2 /* CCDirectorMac.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCDirectorMac.h; sourceTree = "<group>"; };
		E02BBBA8126CC2F6006E46A2 /* CCDirectorMac.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCDirectorMac.m; sourceTree = "<group>"; };
		E02BBBA9126CC2F6006E46A2 /* CCEventDispatcher.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCEventDispatcher.h; sourceTree = "<group>"; };
		E02BBBAA126CC2F6006E46A2 /* CCEventDispatcher.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCEventDispatcher.m; sourceTree = "<group>"; };
		E02BBBAB126CC2F6006E46A2 /* MacGLView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MacGLView.h; sourceTree = "<group>"; };
		E02BBBAC126CC2F6006E46A2 /* MacGLView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MacGLView.m; sourceTree = "<group>"; };
		E02BBBAE126CC2F6006E46A2 /* base64.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = base64.c; sourceTree = "<group>"; };
		E02BBBAF126CC2F6006E46A2 /* base64.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = base64.h; sourceTree = "<group>"; };
		E02BBBB0126CC2F6006E46A2 /* CCArray.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCArray.h; sourceTree = "<group>"; };
		E02BBBB1126CC2F6006E46A2 /* CCArray.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCArray.m; sourceTree = "<group>"; };
		E02BBBB2126CC2F6006E46A2 /* ccCArray.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ccCArray.h; sourceTree = "<group>"; };
		E02BBBB3126CC2F6006E46A2 /* CCFileUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCFileUtils.h; sourceTree = "<group>"; };
		E02BBBB4126CC2F6006E46A2 /* CCFileUtils.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCFileUtils.m; sourceTree = "<group>"; };
		E02BBBB5126CC2F6006E46A2 /* CCProfiling.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCProfiling.h; sourceTree = "<group>"; };
		E02BBBB6126CC2F6006E46A2 /* CCProfiling.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCProfiling.m; sourceTree = "<group>"; };
		E02BBBB7126CC2F6006E46A2 /* ccUtils.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ccUtils.c; sourceTree = "<group>"; };
		E02BBBB8126CC2F6006E46A2 /* ccUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ccUtils.h; sourceTree = "<group>"; };
		E02BBBB9126CC2F6006E46A2 /* CGPointExtension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CGPointExtension.h; sourceTree = "<group>"; };
		E02BBBBA126CC2F6006E46A2 /* CGPointExtension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CGPointExtension.m; sourceTree = "<group>"; };
		E02BBBBB126CC2F6006E46A2 /* OpenGL_Internal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OpenGL_Internal.h; sourceTree = "<group>"; };
		E02BBBBC126CC2F6006E46A2 /* TGAlib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TGAlib.h; sourceTree = "<group>"; };
		E02BBBBD126CC2F6006E46A2 /* TGAlib.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TGAlib.m; sourceTree = "<group>"; };
		E02BBBBE126CC2F6006E46A2 /* TransformUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TransformUtils.h; sourceTree = "<group>"; };
		E02BBBBF126CC2F6006E46A2 /* TransformUtils.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TransformUtils.m; sourceTree = "<group>"; };
		E02BBBC0126CC2F6006E46A2 /* uthash.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uthash.h; sourceTree = "<group>"; };
		E02BBBC1126CC2F6006E46A2 /* utlist.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = utlist.h; sourceTree = "<group>"; };
		E02BBBC2126CC2F6006E46A2 /* ZipUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZipUtils.h; sourceTree = "<group>"; };
		E02BBBC3126CC2F6006E46A2 /* ZipUtils.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZipUtils.m; sourceTree = "<group>"; };
		E0ECA420134E5F2B00E7A048 /* CDataScanner.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CDataScanner.h; sourceTree = "<group>"; };
		E0ECA421134E5F2B00E7A048 /* CDataScanner.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CDataScanner.m; sourceTree = "<group>"; };
		E0ECA423134E5F2B00E7A048 /* CDataScanner_Extensions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CDataScanner_Extensions.h; sourceTree = "<group>"; };
		E0ECA424134E5F2B00E7A048 /* CDataScanner_Extensions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CDataScanner_Extensions.m; sourceTree = "<group>"; };
		E0ECA425134E5F2B00E7A048 /* NSDictionary_JSONExtensions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NSDictionary_JSONExtensions.h; sourceTree = "<group>"; };
		E0ECA426134E5F2B00E7A048 /* NSDictionary_JSONExtensions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NSDictionary_JSONExtensions.m; sourceTree = "<group>"; };
		E0ECA428134E5F2B00E7A048 /* CJSONDeserializer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CJSONDeserializer.h; sourceTree = "<group>"; };
		E0ECA429134E5F2B00E7A048 /* CJSONDeserializer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CJSONDeserializer.m; sourceTree = "<group>"; };
		E0ECA42A134E5F2B00E7A048 /* CJSONScanner.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CJSONScanner.h; sourceTree = "<group>"; };
		E0ECA42B134E5F2B00E7A048 /* CJSONScanner.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CJSONScanner.m; sourceTree = "<group>"; };
		E0ECA42C134E5F2B00E7A048 /* CJSONSerializer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CJSONSerializer.h; sourceTree = "<group>"; };
		E0ECA42D134E5F2B00E7A048 /* CJSONSerializer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CJSONSerializer.m; sourceTree = "<group>"; };
		E0ECA42E134E5F2B00E7A048 /* JSONRepresentation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JSONRepresentation.h; sourceTree = "<group>"; };
		E0F81035120A173C005866B8 /* GameConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GameConfig.h; sourceTree = "<group>"; };
		E0F81036120A173C005866B8 /* RootViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RootViewController.h; sourceTree = "<group>"; };
		E0F81037120A173C005866B8 /* RootViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RootViewController.m; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
		1D60588F0D05DD3D006BFB54 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				6C2A07781436100C007AB76C /* CoreMotion.framework in Frameworks */,
				DCCBF1B70F6022AE0040855A /* CoreGraphics.framework in Frameworks */,
				DCCBF1B90F6022AE0040855A /* Foundation.framework in Frameworks */,
				DCCBF1BB0F6022AE0040855A /* OpenGLES.framework in Frameworks */,
				DCCBF1BD0F6022AE0040855A /* QuartzCore.framework in Frameworks */,
				DCCBF1BF0F6022AE0040855A /* UIKit.framework in Frameworks */,
				DC6640030F83B3EA000B3E49 /* AudioToolbox.framework in Frameworks */,
				DC6640050F83B3EA000B3E49 /* OpenAL.framework in Frameworks */,
				506EDB88102F4C4000A389B3 /* libz.dylib in Frameworks */,
				506EDBA5102F4C9F00A389B3 /* AVFoundation.framework in Frameworks */,
				506EE1A91030508200A389B3 /* libcocos2d libraries.a in Frameworks */,
				3F8395D113D746200059AEE8 /* libsqlite3.0.dylib in Frameworks */,
				6C44FFFD1413D03300A9E1D7 /* libTestFlight.a in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		506EE05C10304ED200A389B3 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				505574581045D68500A31725 /* AVFoundation.framework in Frameworks */,
				505574591045D68500A31725 /* AudioToolbox.framework in Frameworks */,
				5055745A1045D68500A31725 /* CoreGraphics.framework in Frameworks */,
				5055745B1045D68500A31725 /* OpenAL.framework in Frameworks */,
				5055745C1045D68500A31725 /* OpenGLES.framework in Frameworks */,
				5055745D1045D68500A31725 /* QuartzCore.framework in Frameworks */,
				5055745E1045D69D00A31725 /* libz.dylib in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXFrameworksBuildPhase section */

/* Begin PBXGroup section */
		19C28FACFE9D520D11CA2CBB /* Products */ = {
			isa = PBXGroup;
			children = (
				1D6058910D05DD3D006BFB54 /* Cartographic.app */,
				506EE05E10304ED200A389B3 /* libcocos2d libraries.a */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		29B97314FDCFA39411CA2CEA /* CustomTemplate */ = {
			isa = PBXGroup;
			children = (
				504DFC8A10AF177C006D82FE /* LICENSE.cocos2d */,
				504DFC8B10AF177C006D82FE /* LICENSE.cocosdenshion */,
				506EDAA3102F461B00A389B3 /* Libraries */,
				2D500B1D0D5A766B00DBA0E3 /* Classes */,
				29B97315FDCFA39411CA2CEA /* Other Sources */,
				50F4144210692EE7002A0D5E /* Resources */,
				29B97323FDCFA39411CA2CEA /* Frameworks */,
				19C28FACFE9D520D11CA2CBB /* Products */,
			);
			name = CustomTemplate;
			sourceTree = "<group>";
		};
		29B97315FDCFA39411CA2CEA /* Other Sources */ = {
			isa = PBXGroup;
			children = (
				1F3B9A820EF2151B00286867 /* Cart_Collect_Prefix.pch */,
				29B97316FDCFA39411CA2CEA /* main.m */,
			);
			name = "Other Sources";
			sourceTree = "<group>";
		};
		29B97323FDCFA39411CA2CEA /* Frameworks */ = {
			isa = PBXGroup;
			children = (
				6C88B69314119B5A0049E402 /* libTestFlight.a */,
				3F8395D013D746200059AEE8 /* libsqlite3.0.dylib */,
				6C2A07771436100C007AB76C /* CoreMotion.framework */,
				DCCBF1B60F6022AE0040855A /* CoreGraphics.framework */,
				DCCBF1B80F6022AE0040855A /* Foundation.framework */,
				DCCBF1BA0F6022AE0040855A /* OpenGLES.framework */,
				DCCBF1BC0F6022AE0040855A /* QuartzCore.framework */,
				DCCBF1BE0F6022AE0040855A /* UIKit.framework */,
				DC6640040F83B3EA000B3E49 /* OpenAL.framework */,
				DC6640020F83B3EA000B3E49 /* AudioToolbox.framework */,
				506EDB87102F4C4000A389B3 /* libz.dylib */,
				506EDBA4102F4C9F00A389B3 /* AVFoundation.framework */,
			);
			name = Frameworks;
			sourceTree = "<group>";
		};
		2D500B1D0D5A766B00DBA0E3 /* Classes */ = {
			isa = PBXGroup;
			children = (
				6CB532561403492E00780A5E /* Selection Screen */,
				6C0C141513F211C7003A31B2 /* Game Modes */,
				6C5887E313EE3ED900B5A80A /* Items */,
				E0F81035120A173C005866B8 /* GameConfig.h */,
				E0F81036120A173C005866B8 /* RootViewController.h */,
				E0F81037120A173C005866B8 /* RootViewController.m */,
				1F3B9A2C0EF2145700286867 /* Cart_CollectAppDelegate.h */,
				507022A2107672FA00393637 /* Cart_CollectAppDelegate.m */,
				3F6C7EE713D6377D00C038FE /* GameOverScene.h */,
				3F6C7EE813D6377D00C038FE /* GameOverScene.m */,
				3F83955213D739B10059AEE8 /* MainMenuLayer.m */,
				3F83955113D739B10059AEE8 /* MainMenuLayer.h */,
				3F03221413D78F8C00E6A708 /* HighscoreListController.h */,
				3F03221513D78F8C00E6A708 /* HighscoreListController.m */,
				3F03221713D7904E00E6A708 /* Highscore.h */,
				3F03221813D7904E00E6A708 /* Highscore.m */,
				6C29040E13EAEB590032DA0F /* TutorialBubble.h */,
				6C29040F13EAEB590032DA0F /* TutorialBubble.m */,
			);
			path = Classes;
			sourceTree = "<group>";
		};
		3F6C7F4C13D647AF00C038FE /* Backgrounds */ = {
			isa = PBXGroup;
			children = (
				6C39CFF413FD5526002B21AF /* paintdaubs.png */,
				6C5179C513DF3839006F1F38 /* Morning1.png */,
				3F6C7F4A13D647A600C038FE /* GameOver.png */,
				3F6C7F2313D63E6500C038FE /* SeaBeach.png */,
			);
			name = Backgrounds;
			sourceTree = "<group>";
		};
		3F6C7F4D13D647B600C038FE /* Sprites */ = {
			isa = PBXGroup;
			children = (
				6CF64C0A141BA37000F3B702 /* multiplier.png */,
				6CDBE80B14092DB00072F287 /* ledge.png */,
				6C39CFE613FC46CD002B21AF /* water.png */,
				6C29041113EAEC8A0032DA0F /* framestuff.png */,
				3F6C7EE013D636BE00C038FE /* rock.png */,
				3F63FA3E13D4EE53003B3D14 /* oneup.png */,
				3F63FA3C13D4EE4D003B3D14 /* cherry.png */,
				3F63FA3A13D4EE48003B3D14 /* bottle.png */,
				3F2646AF13D4E10800F06CFC /* cart.png */,
			);
			name = Sprites;
			sourceTree = "<group>";
		};
		3F6C7F4E13D647C500C038FE /* Sounds */ = {
			isa = PBXGroup;
			children = (
				6CF64C10141BA84200F3B702 /* Absorption2.wav */,
				3F6C7EC513D6335A00C038FE /* 1up.wav */,
				3F6C7C4813D5DEDB00C038FE /* Item1.wav */,
				3F6C7C3313D5DEB100C038FE /* Damage1.wav */,
			);
			name = Sounds;
			sourceTree = "<group>";
		};
		3F6C7F5D13D648D300C038FE /* Fonts */ = {
			isa = PBXGroup;
			children = (
				3F7D0F3D13D8F0C800B6CE14 /* getoffthatboatrightnowyounglady.fnt */,
				3F7D0F3E13D8F0C800B6CE14 /* getoffthatboatrightnowyounglady.png */,
				3F6C7F5913D648CE00C038FE /* helvetica2.fnt */,
				3F6C7F5A13D648CE00C038FE /* helvetica2.png */,
				3F6C7EAC13D6323600C038FE /* helvetica.png */,
				3F6C7E9B13D6315D00C038FE /* helvetica.fnt */,
			);
			name = Fonts;
			sourceTree = "<group>";
		};
		3F7D0EC713D8E6B000B6CE14 /* Buttons */ = {
			isa = PBXGroup;
			children = (
				6C19F1641401917900F9CCD3 /* feedback2.png */,
				6C19F1621401917500F9CCD3 /* feedback.png */,
				6C39CFEA13FC8ACA002B21AF /* jump.png */,
				6C39CFE813FC8AC4002B21AF /* jump2.png */,
				6C39CFE113FC2713002B21AF /* tutorial2.png */,
				6C39CFDF13FC2708002B21AF /* tutorial.png */,
				3F7D0F4813D8F17C00B6CE14 /* highscores.png */,
				3F7D0F4913D8F17C00B6CE14 /* highscores2.png */,
				3F7D0F4A13D8F17C00B6CE14 /* newgame.png */,
				3F7D0F4B13D8F17C00B6CE14 /* newgame2.png */,
				3F7D0ECA13D8E6C800B6CE14 /* back2.png */,
				3F7D0EC813D8E6BC00B6CE14 /* back.png */,
				3F8394F413D7328E0059AEE8 /* pause2.png */,
				3F8394F213D732330059AEE8 /* pause.png */,
			);
			name = Buttons;
			sourceTree = "<group>";
		};
		504DFC4110AF1557006D82FE /* cocoslive */ = {
			isa = PBXGroup;
			children = (
				504DFC4210AF1557006D82FE /* CLScoreServerPost.h */,
				504DFC4310AF1557006D82FE /* CLScoreServerPost.m */,
				504DFC4410AF1557006D82FE /* CLScoreServerRequest.h */,
				504DFC4510AF1557006D82FE /* CLScoreServerRequest.m */,
				504DFC4610AF1557006D82FE /* cocoslive.h */,
				504DFC4710AF1557006D82FE /* cocoslive.m */,
			);
			name = cocoslive;
			path = libs/cocoslive;
			sourceTree = "<group>";
		};
		506EDAA3102F461B00A389B3 /* Libraries */ = {
			isa = PBXGroup;
			children = (
				6C19F15D14018FDF00F9CCD3 /* TestFlight.h */,
				E02BBB19126CC2F5006E46A2 /* cocos2d */,
				507ED67411C63903002ED3FC /* CocosDenshion */,
				504DFC4110AF1557006D82FE /* cocoslive */,
				50F41306106926B2002A0D5E /* FontLabel */,
				E0ECA41F134E5F2B00E7A048 /* TouchJSON */,
			);
			name = Libraries;
			sourceTree = "<group>";
		};
		507ED67411C63903002ED3FC /* CocosDenshion */ = {
			isa = PBXGroup;
			children = (
				507ED67511C63903002ED3FC /* CDAudioManager.h */,
				507ED67611C63903002ED3FC /* CDAudioManager.m */,
				507ED67711C63903002ED3FC /* CDConfig.h */,
				507ED67811C63903002ED3FC /* CDOpenALSupport.h */,
				507ED67911C63903002ED3FC /* CDOpenALSupport.m */,
				507ED67A11C63903002ED3FC /* CocosDenshion.h */,
				507ED67B11C63903002ED3FC /* CocosDenshion.m */,
				507ED67C11C63903002ED3FC /* SimpleAudioEngine.h */,
				507ED67D11C63903002ED3FC /* SimpleAudioEngine.m */,
			);
			name = CocosDenshion;
			path = libs/CocosDenshion;
			sourceTree = "<group>";
		};
		50F41306106926B2002A0D5E /* FontLabel */ = {
			isa = PBXGroup;
			children = (
				50674871107A3B5E0090963A /* ZAttributedString.h */,
				50674872107A3B5E0090963A /* ZAttributedString.m */,
				50674873107A3B5E0090963A /* ZAttributedStringPrivate.h */,
				50F41307106926B2002A0D5E /* FontLabel.h */,
				50F41308106926B2002A0D5E /* FontLabel.m */,
				50F41309106926B2002A0D5E /* FontLabelStringDrawing.h */,
				50F4130A106926B2002A0D5E /* FontLabelStringDrawing.m */,
				50F4130B106926B2002A0D5E /* FontManager.h */,
				50F4130C106926B2002A0D5E /* FontManager.m */,
				50F4130F106926B2002A0D5E /* ZFont.h */,
				50F41310106926B2002A0D5E /* ZFont.m */,
			);
			name = FontLabel;
			path = libs/FontLabel;
			sourceTree = "<group>";
		};
		50F4144210692EE7002A0D5E /* Resources */ = {
			isa = PBXGroup;
			children = (
				6C39D00513FD901A002B21AF /* Icons */,
				3F7D0EC713D8E6B000B6CE14 /* Buttons */,
				3F8395B713D744420059AEE8 /* cartdata.sqlite3 */,
				3F6C7F5D13D648D300C038FE /* Fonts */,
				3F6C7F4E13D647C500C038FE /* Sounds */,
				3F6C7F4D13D647B600C038FE /* Sprites */,
				3F6C7F4C13D647AF00C038FE /* Backgrounds */,
				E02BBA1F126CC2CC006E46A2 /* iTunesArtwork */,
				E02BB51B126CA588006E46A2 /* Icon@2x.png */,
				E02BB51F126CA588006E46A2 /* Icon-72.png */,
				50F4144410692EE7002A0D5E /* Default.png */,
				50F4144510692EE7002A0D5E /* fps_images.png */,
				50F4144610692EE7002A0D5E /* Icon.png */,
				50F4144710692EE7002A0D5E /* Info.plist */,
				6CC89DD813F2F4E6003704F7 /* Entitlements.plist */,
			);
			path = Resources;
			sourceTree = "<group>";
		};
		6C0C141513F211C7003A31B2 /* Game Modes */ = {
			isa = PBXGroup;
			children = (
				6C0C141213F20E98003A31B2 /* GameMode.h */,
				6C0C141313F20E98003A31B2 /* GameMode.m */,
				3FE79CD213D4DE37001A6B93 /* ClassicGameMode.h */,
				3FE79CD313D4DE37001A6B93 /* ClassicGameMode.m */,
				6CC89DDD13F31413003704F7 /* TutorialMode.h */,
				6CC89DDE13F31413003704F7 /* TutorialMode.m */,
				6C39CFE313FC4635002B21AF /* JumpGameMode.h */,
				6C39CFE413FC4635002B21AF /* JumpGameMode.m */,
			);
			name = "Game Modes";
			sourceTree = "<group>";
		};
		6C39D00513FD901A002B21AF /* Icons */ = {
			isa = PBXGroup;
			children = (
				6C85834514056E57009EF100 /* venice.png */,
				6C39D01113FD9945002B21AF /* paris.png */,
				6C39D00713FD9037002B21AF /* florence.png */,
			);
			name = Icons;
			sourceTree = "<group>";
		};
		6C5887E313EE3ED900B5A80A /* Items */ = {
			isa = PBXGroup;
			children = (
				3F6C7C4D13D5E1B600C038FE /* FallingObject.h */,
				3F6C7C4E13D5E1B600C038FE /* FallingObject.m */,
				3F6C7C6B13D5E51800C038FE /* Cherry.h */,
				3F6C7C6C13D5E51800C038FE /* Cherry.m */,
				3F6C7C6E13D5E54E00C038FE /* Bottle.h */,
				3F6C7C6F13D5E54E00C038FE /* Bottle.m */,
				3F6C7C7113D5E57100C038FE /* OneUp.h */,
				3F6C7C7213D5E57100C038FE /* OneUp.m */,
				3F6C7EE213D636CF00C038FE /* Rock.h */,
				3F6C7EE313D636CF00C038FE /* Rock.m */,
				6C0C140C13F1C3EC003A31B2 /* ValuableObject.h */,
				6C0C140D13F1C3EC003A31B2 /* ValuableObject.m */,
				6C0C140F13F2099B003A31B2 /* Cart.h */,
				6C0C141013F2099B003A31B2 /* Cart.m */,
				6CC89DE013F3197F003704F7 /* FallingObjectDelegate.h */,
				6CDBE80E140936CF0072F287 /* CartDelegate.h */,
				6CF64C07141B9FA300F3B702 /* PointMultiplier.h */,
				6CF64C08141B9FA300F3B702 /* PointMultiplier.m */,
			);
			name = Items;
			sourceTree = "<group>";
		};
		6CB532561403492E00780A5E /* Selection Screen */ = {
			isa = PBXGroup;
			children = (
				6C39CFF113FD4F87002B21AF /* GameModeSelection.h */,
				6C39CFF213FD4F89002B21AF /* GameModeSelection.m */,
				6C39CFF613FD7636002B21AF /* GameModeSelectionLayer.h */,
				6C39CFF713FD7637002B21AF /* GameModeSelectionLayer.m */,
				6C18C3C81402AD9C0005AA4C /* UIImage+ColorMasking.h */,
				6C18C3C91402AD9C0005AA4C /* UIImage+ColorMasking.m */,
				6C18C3CC14033DBF0005AA4C /* CocosOverlayScrollView.h */,
				6C18C3CD14033DC10005AA4C /* CocosOverlayScrollView.m */,
				6C18C3CE14033DC20005AA4C /* NMPanelMenu.h */,
				6C18C3CF14033DC30005AA4C /* NMPanelMenu.m */,
				6C18C3D014033DC40005AA4C /* TouchDelegatingView.h */,
				6C18C3D114033DC40005AA4C /* TouchDelegatingView.m */,
				6CB532581403BA4F00780A5E /* GameModeSelectionDelegate.h */,
				6C4400021415080700A9E1D7 /* ZoomFadeTransition.h */,
				6C4400031415080700A9E1D7 /* ZoomFadeTransition.m */,
			);
			name = "Selection Screen";
			sourceTree = "<group>";
		};
		E02BBB19126CC2F5006E46A2 /* cocos2d */ = {
			isa = PBXGroup;
			children = (
				6C85833E14055A44009EF100 /* CCNotifications.h */,
				6C85833F14055A44009EF100 /* CCNotifications.m */,
				E02BBB1A126CC2F5006E46A2 /* CCAction.h */,
				E02BBB1B126CC2F5006E46A2 /* CCAction.m */,
				E02BBB1C126CC2F5006E46A2 /* CCActionCamera.h */,
				E02BBB1D126CC2F5006E46A2 /* CCActionCamera.m */,
				E02BBB1E126CC2F5006E46A2 /* CCActionEase.h */,
				E02BBB1F126CC2F5006E46A2 /* CCActionEase.m */,
				E02BBB20126CC2F5006E46A2 /* CCActionGrid.h */,
				E02BBB21126CC2F5006E46A2 /* CCActionGrid.m */,
				E02BBB22126CC2F5006E46A2 /* CCActionGrid3D.h */,
				E02BBB23126CC2F5006E46A2 /* CCActionGrid3D.m */,
				E02BBB24126CC2F5006E46A2 /* CCActionInstant.h */,
				E02BBB25126CC2F5006E46A2 /* CCActionInstant.m */,
				E02BBB26126CC2F5006E46A2 /* CCActionInterval.h */,
				E02BBB27126CC2F5006E46A2 /* CCActionInterval.m */,
				E02BBB28126CC2F5006E46A2 /* CCActionManager.h */,
				E02BBB29126CC2F5006E46A2 /* CCActionManager.m */,
				E02BBB2A126CC2F5006E46A2 /* CCActionPageTurn3D.h */,
				E02BBB2B126CC2F5006E46A2 /* CCActionPageTurn3D.m */,
				E02BBB2C126CC2F5006E46A2 /* CCActionProgressTimer.h */,
				E02BBB2D126CC2F5006E46A2 /* CCActionProgressTimer.m */,
				E02BBB2E126CC2F5006E46A2 /* CCActionTiledGrid.h */,
				E02BBB2F126CC2F5006E46A2 /* CCActionTiledGrid.m */,
				E02BBB30126CC2F5006E46A2 /* CCActionTween.h */,
				E02BBB31126CC2F5006E46A2 /* CCActionTween.m */,
				E02BBB32126CC2F5006E46A2 /* CCAnimation.h */,
				E02BBB33126CC2F5006E46A2 /* CCAnimation.m */,
				E02BBB34126CC2F5006E46A2 /* CCAnimationCache.h */,
				E02BBB35126CC2F5006E46A2 /* CCAnimationCache.m */,
				E02BBB36126CC2F5006E46A2 /* CCAtlasNode.h */,
				E02BBB37126CC2F5006E46A2 /* CCAtlasNode.m */,
				E02BBB38126CC2F5006E46A2 /* CCBlockSupport.h */,
				E02BBB39126CC2F5006E46A2 /* CCBlockSupport.m */,
				E02BBB3A126CC2F5006E46A2 /* CCCamera.h */,
				E02BBB3B126CC2F5006E46A2 /* CCCamera.m */,
				E02BBB3E126CC2F5006E46A2 /* ccConfig.h */,
				E02BBB3F126CC2F5006E46A2 /* CCConfiguration.h */,
				E02BBB40126CC2F5006E46A2 /* CCConfiguration.m */,
				E02BBB41126CC2F5006E46A2 /* CCDirector.h */,
				E02BBB42126CC2F5006E46A2 /* CCDirector.m */,
				E02BBB43126CC2F5006E46A2 /* CCDrawingPrimitives.h */,
				E02BBB44126CC2F5006E46A2 /* CCDrawingPrimitives.m */,
				E02BBB45126CC2F5006E46A2 /* CCGrabber.h */,
				E02BBB46126CC2F5006E46A2 /* CCGrabber.m */,
				E02BBB47126CC2F5006E46A2 /* CCGrid.h */,
				E02BBB48126CC2F5006E46A2 /* CCGrid.m */,
				E02BBB49126CC2F5006E46A2 /* CCLabelAtlas.h */,
				E02BBB4A126CC2F5006E46A2 /* CCLabelAtlas.m */,
				E02BBB4B126CC2F5006E46A2 /* CCLabelBMFont.h */,
				E02BBB4C126CC2F5006E46A2 /* CCLabelBMFont.m */,
				E02BBB4D126CC2F6006E46A2 /* CCLabelTTF.h */,
				E02BBB4E126CC2F6006E46A2 /* CCLabelTTF.m */,
				E02BBB4F126CC2F6006E46A2 /* CCLayer.h */,
				E02BBB50126CC2F6006E46A2 /* CCLayer.m */,
				E02BBB51126CC2F6006E46A2 /* ccMacros.h */,
				E02BBB52126CC2F6006E46A2 /* CCMenu.h */,
				E02BBB53126CC2F6006E46A2 /* CCMenu.m */,
				E02BBB54126CC2F6006E46A2 /* CCMenuItem.h */,
				E02BBB55126CC2F6006E46A2 /* CCMenuItem.m */,
				E02BBB56126CC2F6006E46A2 /* CCMotionStreak.h */,
				E02BBB57126CC2F6006E46A2 /* CCMotionStreak.m */,
				E02BBB58126CC2F6006E46A2 /* CCNode.h */,
				E02BBB59126CC2F6006E46A2 /* CCNode.m */,
				E02BBB5A126CC2F6006E46A2 /* CCParallaxNode.h */,
				E02BBB5B126CC2F6006E46A2 /* CCParallaxNode.m */,
				E02BBB5C126CC2F6006E46A2 /* CCParticleExamples.h */,
				E02BBB5D126CC2F6006E46A2 /* CCParticleExamples.m */,
				E02BBB5E126CC2F6006E46A2 /* CCParticleSystem.h */,
				E02BBB5F126CC2F6006E46A2 /* CCParticleSystem.m */,
				E02BBB60126CC2F6006E46A2 /* CCParticleSystemPoint.h */,
				E02BBB61126CC2F6006E46A2 /* CCParticleSystemPoint.m */,
				E02BBB62126CC2F6006E46A2 /* CCParticleSystemQuad.h */,
				E02BBB63126CC2F6006E46A2 /* CCParticleSystemQuad.m */,
				E02BBB64126CC2F6006E46A2 /* CCProgressTimer.h */,
				E02BBB65126CC2F6006E46A2 /* CCProgressTimer.m */,
				E02BBB66126CC2F6006E46A2 /* CCProtocols.h */,
				E02BBB67126CC2F6006E46A2 /* CCRenderTexture.h */,
				E02BBB68126CC2F6006E46A2 /* CCRenderTexture.m */,
				E02BBB69126CC2F6006E46A2 /* CCRibbon.h */,
				E02BBB6A126CC2F6006E46A2 /* CCRibbon.m */,
				E02BBB6B126CC2F6006E46A2 /* CCScene.h */,
				E02BBB6C126CC2F6006E46A2 /* CCScene.m */,
				E02BBB6D126CC2F6006E46A2 /* CCScheduler.h */,
				E02BBB6E126CC2F6006E46A2 /* CCScheduler.m */,
				E02BBB6F126CC2F6006E46A2 /* CCSprite.h */,
				E02BBB70126CC2F6006E46A2 /* CCSprite.m */,
				E02BBB71126CC2F6006E46A2 /* CCSpriteBatchNode.h */,
				E02BBB72126CC2F6006E46A2 /* CCSpriteBatchNode.m */,
				E02BBB73126CC2F6006E46A2 /* CCSpriteFrame.h */,
				E02BBB74126CC2F6006E46A2 /* CCSpriteFrame.m */,
				E02BBB75126CC2F6006E46A2 /* CCSpriteFrameCache.h */,
				E02BBB76126CC2F6006E46A2 /* CCSpriteFrameCache.m */,
				E02BBB79126CC2F6006E46A2 /* CCTexture2D.h */,
				E02BBB7A126CC2F6006E46A2 /* CCTexture2D.m */,
				E02BBB7B126CC2F6006E46A2 /* CCTextureAtlas.h */,
				E02BBB7C126CC2F6006E46A2 /* CCTextureAtlas.m */,
				E02BBB7D126CC2F6006E46A2 /* CCTextureCache.h */,
				E02BBB7E126CC2F6006E46A2 /* CCTextureCache.m */,
				E02BBB7F126CC2F6006E46A2 /* CCTexturePVR.h */,
				E02BBB80126CC2F6006E46A2 /* CCTexturePVR.m */,
				E02BBB81126CC2F6006E46A2 /* CCTileMapAtlas.h */,
				E02BBB82126CC2F6006E46A2 /* CCTileMapAtlas.m */,
				E02BBB83126CC2F6006E46A2 /* CCTMXLayer.h */,
				E02BBB84126CC2F6006E46A2 /* CCTMXLayer.m */,
				E02BBB85126CC2F6006E46A2 /* CCTMXObjectGroup.h */,
				E02BBB86126CC2F6006E46A2 /* CCTMXObjectGroup.m */,
				E02BBB87126CC2F6006E46A2 /* CCTMXTiledMap.h */,
				E02BBB88126CC2F6006E46A2 /* CCTMXTiledMap.m */,
				E02BBB89126CC2F6006E46A2 /* CCTMXXMLParser.h */,
				E02BBB8A126CC2F6006E46A2 /* CCTMXXMLParser.m */,
				E02BBB8B126CC2F6006E46A2 /* CCTransition.h */,
				E02BBB8C126CC2F6006E46A2 /* CCTransition.m */,
				E02BBB8D126CC2F6006E46A2 /* CCTransitionPageTurn.h */,
				E02BBB8E126CC2F6006E46A2 /* CCTransitionPageTurn.m */,
				E02BBB8F126CC2F6006E46A2 /* CCTransitionRadial.h */,
				E02BBB90126CC2F6006E46A2 /* CCTransitionRadial.m */,
				E02BBB91126CC2F6006E46A2 /* ccTypes.h */,
				E02BBB92126CC2F6006E46A2 /* cocos2d.h */,
				E02BBB93126CC2F6006E46A2 /* cocos2d.m */,
				E02BBB94126CC2F6006E46A2 /* Platforms */,
				E02BBBAD126CC2F6006E46A2 /* Support */,
				6C85834214055B2D009EF100 /* notificationDesign.h */,
				6C85834314055B2E009EF100 /* notificationDesign.m */,
			);
			name = cocos2d;
			path = libs/cocos2d;
			sourceTree = "<group>";
		};
		E02BBB94126CC2F6006E46A2 /* Platforms */ = {
			isa = PBXGroup;
			children = (
				E02BBB95126CC2F6006E46A2 /* CCGL.h */,
				E02BBB96126CC2F6006E46A2 /* CCNS.h */,
				E02BBB97126CC2F6006E46A2 /* iOS */,
				E02BBBA6126CC2F6006E46A2 /* Mac */,
			);
			path = Platforms;
			sourceTree = "<group>";
		};
		E02BBB97126CC2F6006E46A2 /* iOS */ = {
			isa = PBXGroup;
			children = (
				E02BBB98126CC2F6006E46A2 /* CCDirectorIOS.h */,
				E02BBB99126CC2F6006E46A2 /* CCDirectorIOS.m */,
				E02BBB9A126CC2F6006E46A2 /* CCTouchDelegateProtocol.h */,
				E02BBB9B126CC2F6006E46A2 /* CCTouchDispatcher.h */,
				E02BBB9C126CC2F6006E46A2 /* CCTouchDispatcher.m */,
				E02BBB9D126CC2F6006E46A2 /* CCTouchHandler.h */,
				E02BBB9E126CC2F6006E46A2 /* CCTouchHandler.m */,
				E02BBB9F126CC2F6006E46A2 /* EAGLView.h */,
				E02BBBA0126CC2F6006E46A2 /* EAGLView.m */,
				E02BBBA1126CC2F6006E46A2 /* ES1Renderer.h */,
				E02BBBA2126CC2F6006E46A2 /* ES1Renderer.m */,
				E02BBBA3126CC2F6006E46A2 /* ESRenderer.h */,
				E02BBBA4126CC2F6006E46A2 /* glu.c */,
				E02BBBA5126CC2F6006E46A2 /* glu.h */,
			);
			path = iOS;
			sourceTree = "<group>";
		};
		E02BBBA6126CC2F6006E46A2 /* Mac */ = {
			isa = PBXGroup;
			children = (
				E02BBBA7126CC2F6006E46A2 /* CCDirectorMac.h */,
				E02BBBA8126CC2F6006E46A2 /* CCDirectorMac.m */,
				E02BBBA9126CC2F6006E46A2 /* CCEventDispatcher.h */,
				E02BBBAA126CC2F6006E46A2 /* CCEventDispatcher.m */,
				E02BBBAB126CC2F6006E46A2 /* MacGLView.h */,
				E02BBBAC126CC2F6006E46A2 /* MacGLView.m */,
			);
			path = Mac;
			sourceTree = "<group>";
		};
		E02BBBAD126CC2F6006E46A2 /* Support */ = {
			isa = PBXGroup;
			children = (
				E02BBBAE126CC2F6006E46A2 /* base64.c */,
				E02BBBAF126CC2F6006E46A2 /* base64.h */,
				E02BBBB0126CC2F6006E46A2 /* CCArray.h */,
				E02BBBB1126CC2F6006E46A2 /* CCArray.m */,
				E02BBBB2126CC2F6006E46A2 /* ccCArray.h */,
				E02BBBB3126CC2F6006E46A2 /* CCFileUtils.h */,
				E02BBBB4126CC2F6006E46A2 /* CCFileUtils.m */,
				E02BBBB5126CC2F6006E46A2 /* CCProfiling.h */,
				E02BBBB6126CC2F6006E46A2 /* CCProfiling.m */,
				E02BBBB7126CC2F6006E46A2 /* ccUtils.c */,
				E02BBBB8126CC2F6006E46A2 /* ccUtils.h */,
				E02BBBB9126CC2F6006E46A2 /* CGPointExtension.h */,
				E02BBBBA126CC2F6006E46A2 /* CGPointExtension.m */,
				E02BBBBB126CC2F6006E46A2 /* OpenGL_Internal.h */,
				E02BBBBC126CC2F6006E46A2 /* TGAlib.h */,
				E02BBBBD126CC2F6006E46A2 /* TGAlib.m */,
				E02BBBBE126CC2F6006E46A2 /* TransformUtils.h */,
				E02BBBBF126CC2F6006E46A2 /* TransformUtils.m */,
				E02BBBC0126CC2F6006E46A2 /* uthash.h */,
				E02BBBC1126CC2F6006E46A2 /* utlist.h */,
				E02BBBC2126CC2F6006E46A2 /* ZipUtils.h */,
				E02BBBC3126CC2F6006E46A2 /* ZipUtils.m */,
			);
			path = Support;
			sourceTree = "<group>";
		};
		E0ECA41F134E5F2B00E7A048 /* TouchJSON */ = {
			isa = PBXGroup;
			children = (
				E0ECA420134E5F2B00E7A048 /* CDataScanner.h */,
				E0ECA421134E5F2B00E7A048 /* CDataScanner.m */,
				E0ECA422134E5F2B00E7A048 /* Extensions */,
				E0ECA427134E5F2B00E7A048 /* JSON */,
			);
			name = TouchJSON;
			path = libs/TouchJSON;
			sourceTree = "<group>";
		};
		E0ECA422134E5F2B00E7A048 /* Extensions */ = {
			isa = PBXGroup;
			children = (
				E0ECA423134E5F2B00E7A048 /* CDataScanner_Extensions.h */,
				E0ECA424134E5F2B00E7A048 /* CDataScanner_Extensions.m */,
				E0ECA425134E5F2B00E7A048 /* NSDictionary_JSONExtensions.h */,
				E0ECA426134E5F2B00E7A048 /* NSDictionary_JSONExtensions.m */,
			);
			path = Extensions;
			sourceTree = "<group>";
		};
		E0ECA427134E5F2B00E7A048 /* JSON */ = {
			isa = PBXGroup;
			children = (
				E0ECA428134E5F2B00E7A048 /* CJSONDeserializer.h */,
				E0ECA429134E5F2B00E7A048 /* CJSONDeserializer.m */,
				E0ECA42A134E5F2B00E7A048 /* CJSONScanner.h */,
				E0ECA42B134E5F2B00E7A048 /* CJSONScanner.m */,
				E0ECA42C134E5F2B00E7A048 /* CJSONSerializer.h */,
				E0ECA42D134E5F2B00E7A048 /* CJSONSerializer.m */,
				E0ECA42E134E5F2B00E7A048 /* JSONRepresentation.h */,
			);
			path = JSON;
			sourceTree = "<group>";
		};
/* End PBXGroup section */

/* Begin PBXHeadersBuildPhase section */
		506EE05A10304ED200A389B3 /* Headers */ = {
			isa = PBXHeadersBuildPhase;
			buildActionMask = 2147483647;
			files = (
				50F4132A106926B2002A0D5E /* FontLabel.h in Headers */,
				50F4132C106926B2002A0D5E /* FontLabelStringDrawing.h in Headers */,
				50F4132E106926B2002A0D5E /* FontManager.h in Headers */,
				50F41332106926B2002A0D5E /* ZFont.h in Headers */,
				50674874107A3B5E0090963A /* ZAttributedString.h in Headers */,
				50674876107A3B5E0090963A /* ZAttributedStringPrivate.h in Headers */,
				504DFC4810AF1557006D82FE /* CLScoreServerPost.h in Headers */,
				504DFC4A10AF1557006D82FE /* CLScoreServerRequest.h in Headers */,
				504DFC4C10AF1557006D82FE /* cocoslive.h in Headers */,
				507ED67E11C63903002ED3FC /* CDAudioManager.h in Headers */,
				507ED68011C63903002ED3FC /* CDConfig.h in Headers */,
				507ED68111C63903002ED3FC /* CDOpenALSupport.h in Headers */,
				507ED68311C63903002ED3FC /* CocosDenshion.h in Headers */,
				507ED68511C63903002ED3FC /* SimpleAudioEngine.h in Headers */,
				E02BBBC4126CC2F6006E46A2 /* CCAction.h in Headers */,
				E02BBBC6126CC2F6006E46A2 /* CCActionCamera.h in Headers */,
				E02BBBC8126CC2F6006E46A2 /* CCActionEase.h in Headers */,
				E02BBBCA126CC2F6006E46A2 /* CCActionGrid.h in Headers */,
				E02BBBCC126CC2F6006E46A2 /* CCActionGrid3D.h in Headers */,
				E02BBBCE126CC2F6006E46A2 /* CCActionInstant.h in Headers */,
				E02BBBD0126CC2F6006E46A2 /* CCActionInterval.h in Headers */,
				E02BBBD2126CC2F6006E46A2 /* CCActionManager.h in Headers */,
				E02BBBD4126CC2F6006E46A2 /* CCActionPageTurn3D.h in Headers */,
				E02BBBD6126CC2F6006E46A2 /* CCActionProgressTimer.h in Headers */,
				E02BBBD8126CC2F6006E46A2 /* CCActionTiledGrid.h in Headers */,
				E02BBBDA126CC2F6006E46A2 /* CCActionTween.h in Headers */,
				E02BBBDC126CC2F6006E46A2 /* CCAnimation.h in Headers */,
				E02BBBDE126CC2F6006E46A2 /* CCAnimationCache.h in Headers */,
				E02BBBE0126CC2F6006E46A2 /* CCAtlasNode.h in Headers */,
				E02BBBE2126CC2F6006E46A2 /* CCBlockSupport.h in Headers */,
				E02BBBE4126CC2F6006E46A2 /* CCCamera.h in Headers */,
				E02BBBE8126CC2F6006E46A2 /* ccConfig.h in Headers */,
				E02BBBE9126CC2F6006E46A2 /* CCConfiguration.h in Headers */,
				E02BBBEB126CC2F6006E46A2 /* CCDirector.h in Headers */,
				E02BBBED126CC2F6006E46A2 /* CCDrawingPrimitives.h in Headers */,
				E02BBBEF126CC2F6006E46A2 /* CCGrabber.h in Headers */,
				E02BBBF1126CC2F6006E46A2 /* CCGrid.h in Headers */,
				E02BBBF3126CC2F6006E46A2 /* CCLabelAtlas.h in Headers */,
				E02BBBF5126CC2F6006E46A2 /* CCLabelBMFont.h in Headers */,
				E02BBBF7126CC2F6006E46A2 /* CCLabelTTF.h in Headers */,
				E02BBBF9126CC2F6006E46A2 /* CCLayer.h in Headers */,
				E02BBBFB126CC2F6006E46A2 /* ccMacros.h in Headers */,
				E02BBBFC126CC2F6006E46A2 /* CCMenu.h in Headers */,
				E02BBBFE126CC2F6006E46A2 /* CCMenuItem.h in Headers */,
				E02BBC00126CC2F6006E46A2 /* CCMotionStreak.h in Headers */,
				E02BBC02126CC2F6006E46A2 /* CCNode.h in Headers */,
				E02BBC04126CC2F6006E46A2 /* CCParallaxNode.h in Headers */,
				E02BBC06126CC2F6006E46A2 /* CCParticleExamples.h in Headers */,
				E02BBC08126CC2F6006E46A2 /* CCParticleSystem.h in Headers */,
				E02BBC0A126CC2F6006E46A2 /* CCParticleSystemPoint.h in Headers */,
				E02BBC0C126CC2F6006E46A2 /* CCParticleSystemQuad.h in Headers */,
				E02BBC0E126CC2F6006E46A2 /* CCProgressTimer.h in Headers */,
				E02BBC10126CC2F6006E46A2 /* CCProtocols.h in Headers */,
				E02BBC11126CC2F6006E46A2 /* CCRenderTexture.h in Headers */,
				E02BBC13126CC2F6006E46A2 /* CCRibbon.h in Headers */,
				E02BBC15126CC2F6006E46A2 /* CCScene.h in Headers */,
				E02BBC17126CC2F6006E46A2 /* CCScheduler.h in Headers */,
				E02BBC19126CC2F6006E46A2 /* CCSprite.h in Headers */,
				E02BBC1B126CC2F6006E46A2 /* CCSpriteBatchNode.h in Headers */,
				E02BBC1D126CC2F6006E46A2 /* CCSpriteFrame.h in Headers */,
				E02BBC1F126CC2F6006E46A2 /* CCSpriteFrameCache.h in Headers */,
				E02BBC23126CC2F6006E46A2 /* CCTexture2D.h in Headers */,
				E02BBC25126CC2F6006E46A2 /* CCTextureAtlas.h in Headers */,
				E02BBC27126CC2F6006E46A2 /* CCTextureCache.h in Headers */,
				E02BBC29126CC2F6006E46A2 /* CCTexturePVR.h in Headers */,
				E02BBC2B126CC2F6006E46A2 /* CCTileMapAtlas.h in Headers */,
				E02BBC2D126CC2F6006E46A2 /* CCTMXLayer.h in Headers */,
				E02BBC2F126CC2F6006E46A2 /* CCTMXObjectGroup.h in Headers */,
				E02BBC31126CC2F6006E46A2 /* CCTMXTiledMap.h in Headers */,
				E02BBC33126CC2F6006E46A2 /* CCTMXXMLParser.h in Headers */,
				E02BBC35126CC2F6006E46A2 /* CCTransition.h in Headers */,
				E02BBC37126CC2F6006E46A2 /* CCTransitionPageTurn.h in Headers */,
				E02BBC39126CC2F6006E46A2 /* CCTransitionRadial.h in Headers */,
				E02BBC3B126CC2F6006E46A2 /* ccTypes.h in Headers */,
				E02BBC3C126CC2F6006E46A2 /* cocos2d.h in Headers */,
				E02BBC3E126CC2F6006E46A2 /* CCGL.h in Headers */,
				E02BBC3F126CC2F6006E46A2 /* CCNS.h in Headers */,
				E02BBC40126CC2F6006E46A2 /* CCDirectorIOS.h in Headers */,
				E02BBC42126CC2F6006E46A2 /* CCTouchDelegateProtocol.h in Headers */,
				E02BBC43126CC2F6006E46A2 /* CCTouchDispatcher.h in Headers */,
				E02BBC45126CC2F6006E46A2 /* CCTouchHandler.h in Headers */,
				E02BBC47126CC2F6006E46A2 /* EAGLView.h in Headers */,
				E02BBC49126CC2F6006E46A2 /* ES1Renderer.h in Headers */,
				E02BBC4B126CC2F6006E46A2 /* ESRenderer.h in Headers */,
				E02BBC4D126CC2F6006E46A2 /* glu.h in Headers */,
				E02BBC4E126CC2F6006E46A2 /* CCDirectorMac.h in Headers */,
				E02BBC50126CC2F6006E46A2 /* CCEventDispatcher.h in Headers */,
				E02BBC52126CC2F6006E46A2 /* MacGLView.h in Headers */,
				E02BBC55126CC2F6006E46A2 /* base64.h in Headers */,
				E02BBC56126CC2F6006E46A2 /* CCArray.h in Headers */,
				E02BBC58126CC2F6006E46A2 /* ccCArray.h in Headers */,
				E02BBC59126CC2F6006E46A2 /* CCFileUtils.h in Headers */,
				E02BBC5B126CC2F6006E46A2 /* CCProfiling.h in Headers */,
				E02BBC5E126CC2F6006E46A2 /* ccUtils.h in Headers */,
				E02BBC5F126CC2F6006E46A2 /* CGPointExtension.h in Headers */,
				E02BBC61126CC2F6006E46A2 /* OpenGL_Internal.h in Headers */,
				E02BBC62126CC2F6006E46A2 /* TGAlib.h in Headers */,
				E02BBC64126CC2F6006E46A2 /* TransformUtils.h in Headers */,
				E02BBC66126CC2F6006E46A2 /* uthash.h in Headers */,
				E02BBC67126CC2F6006E46A2 /* utlist.h in Headers */,
				E02BBC68126CC2F6006E46A2 /* ZipUtils.h in Headers */,
				E0ECA42F134E5F2B00E7A048 /* CDataScanner.h in Headers */,
				E0ECA431134E5F2B00E7A048 /* CDataScanner_Extensions.h in Headers */,
				E0ECA433134E5F2B00E7A048 /* NSDictionary_JSONExtensions.h in Headers */,
				E0ECA435134E5F2B00E7A048 /* CJSONDeserializer.h in Headers */,
				E0ECA437134E5F2B00E7A048 /* CJSONScanner.h in Headers */,
				E0ECA439134E5F2B00E7A048 /* CJSONSerializer.h in Headers */,
				E0ECA43B134E5F2B00E7A048 /* JSONRepresentation.h in Headers */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXHeadersBuildPhase section */

/* Begin PBXNativeTarget section */
		1D6058900D05DD3D006BFB54 /* Cartographic */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 1D6058960D05DD3E006BFB54 /* Build configuration list for PBXNativeTarget "Cartographic" */;
			buildPhases = (
				1D60588D0D05DD3D006BFB54 /* Resources */,
				1D60588E0D05DD3D006BFB54 /* Sources */,
				1D60588F0D05DD3D006BFB54 /* Frameworks */,
			);
			buildRules = (
			);
			dependencies = (
				6C263DE113F6F6E800116746 /* PBXTargetDependency */,
				506EE1A81030507B00A389B3 /* PBXTargetDependency */,
			);
			name = Cartographic;
			productName = "Cart Collect";
			productReference = 1D6058910D05DD3D006BFB54 /* Cartographic.app */;
			productType = "com.apple.product-type.application";
		};
		506EE05D10304ED200A389B3 /* cocos2d libraries */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 506EE06410304F0100A389B3 /* Build configuration list for PBXNativeTarget "cocos2d libraries" */;
			buildPhases = (
				506EE05A10304ED200A389B3 /* Headers */,
				506EE05B10304ED200A389B3 /* Sources */,
				506EE05C10304ED200A389B3 /* Frameworks */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = "cocos2d libraries";
			productName = "cocos2d libraries";
			productReference = 506EE05E10304ED200A389B3 /* libcocos2d libraries.a */;
			productType = "com.apple.product-type.library.static";
		};
/* End PBXNativeTarget section */

/* Begin PBXProject section */
		29B97313FDCFA39411CA2CEA /* Project object */ = {
			isa = PBXProject;
			attributes = {
				LastUpgradeCheck = 0420;
			};
			buildConfigurationList = C01FCF4E08A954540054247B /* Build configuration list for PBXProject "Cartographic" */;
			compatibilityVersion = "Xcode 3.2";
			developmentRegion = English;
			hasScannedForEncodings = 1;
			knownRegions = (
				English,
				Japanese,
				French,
				German,
			);
			mainGroup = 29B97314FDCFA39411CA2CEA /* CustomTemplate */;
			projectDirPath = "";
			projectRoot = "";
			targets = (
				1D6058900D05DD3D006BFB54 /* Cartographic */,
				506EE05D10304ED200A389B3 /* cocos2d libraries */,
				6C263DDB13F6F4A000116746 /* Versioning */,
			);
		};
/* End PBXProject section */

/* Begin PBXResourcesBuildPhase section */
		1D60588D0D05DD3D006BFB54 /* Resources */ = {
			isa = PBXResourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				50F4144910692EE7002A0D5E /* Default.png in Resources */,
				50F4144A10692EE7002A0D5E /* fps_images.png in Resources */,
				50F4144B10692EE7002A0D5E /* Icon.png in Resources */,
				E02BB521126CA588006E46A2 /* Icon@2x.png in Resources */,
				E02BB525126CA588006E46A2 /* Icon-72.png in Resources */,
				E02BBA20126CC2CC006E46A2 /* iTunesArtwork in Resources */,
				3F2646B013D4E10800F06CFC /* cart.png in Resources */,
				3F63FA3B13D4EE48003B3D14 /* bottle.png in Resources */,
				3F63FA3D13D4EE4D003B3D14 /* cherry.png in Resources */,
				3F63FA3F13D4EE53003B3D14 /* oneup.png in Resources */,
				3F6C7C3413D5DEB100C038FE /* Damage1.wav in Resources */,
				3F6C7C4913D5DEDB00C038FE /* Item1.wav in Resources */,
				3F6C7E9C13D6315D00C038FE /* helvetica.fnt in Resources */,
				3F6C7EAD13D6323600C038FE /* helvetica.png in Resources */,
				3F6C7EC613D6335A00C038FE /* 1up.wav in Resources */,
				3F6C7EE113D636BE00C038FE /* rock.png in Resources */,
				3F6C7F2413D63E6500C038FE /* SeaBeach.png in Resources */,
				3F6C7F4B13D647A600C038FE /* GameOver.png in Resources */,
				3F6C7F5B13D648CE00C038FE /* helvetica2.fnt in Resources */,
				3F6C7F5C13D648CE00C038FE /* helvetica2.png in Resources */,
				3F8394F313D732330059AEE8 /* pause.png in Resources */,
				3F8394F513D7328E0059AEE8 /* pause2.png in Resources */,
				3F8395B813D744420059AEE8 /* cartdata.sqlite3 in Resources */,
				3F7D0EC913D8E6BC00B6CE14 /* back.png in Resources */,
				3F7D0ECB13D8E6C800B6CE14 /* back2.png in Resources */,
				3F7D0F3F13D8F0C800B6CE14 /* getoffthatboatrightnowyounglady.fnt in Resources */,
				3F7D0F4013D8F0C800B6CE14 /* getoffthatboatrightnowyounglady.png in Resources */,
				3F7D0F4C13D8F17C00B6CE14 /* highscores.png in Resources */,
				3F7D0F4D13D8F17C00B6CE14 /* highscores2.png in Resources */,
				3F7D0F4E13D8F17C00B6CE14 /* newgame.png in Resources */,
				3F7D0F4F13D8F17C00B6CE14 /* newgame2.png in Resources */,
				6C5179C613DF3839006F1F38 /* Morning1.png in Resources */,
				6C29041213EAEC8A0032DA0F /* framestuff.png in Resources */,
				6CC89DD913F2F4E6003704F7 /* Entitlements.plist in Resources */,
				6C39CFE013FC2708002B21AF /* tutorial.png in Resources */,
				6C39CFE213FC2713002B21AF /* tutorial2.png in Resources */,
				6C39CFF513FD5526002B21AF /* paintdaubs.png in Resources */,
				6C39D00813FD9037002B21AF /* florence.png in Resources */,
				6C39D01213FD9945002B21AF /* paris.png in Resources */,
				6C19F1631401917500F9CCD3 /* feedback.png in Resources */,
				6C19F1651401917900F9CCD3 /* feedback2.png in Resources */,
				6C39CFE713FC46CD002B21AF /* water.png in Resources */,
				6C39CFE913FC8AC4002B21AF /* jump2.png in Resources */,
				6C39CFEB13FC8ACA002B21AF /* jump.png in Resources */,
				6C85834614056E57009EF100 /* venice.png in Resources */,
				6CDBE80C14092DB00072F287 /* ledge.png in Resources */,
				6CF64C0B141BA37000F3B702 /* multiplier.png in Resources */,
				6CF64C11141BA84200F3B702 /* Absorption2.wav in Resources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXResourcesBuildPhase section */

/* Begin PBXShellScriptBuildPhase section */
		6C263DDF13F6F4AB00116746 /* ShellScript */ = {
			isa = PBXShellScriptBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			inputPaths = (
			);
			outputPaths = (
			);
			runOnlyForDeploymentPostprocessing = 0;
			shellPath = /bin/sh;
			shellScript = "hg=\"/opt/local/bin/hg\"\ntouch Resources/Info.plist\nversion=`$hg tip --template {rev}`\ndirty=`$hg status`\nif [ -n \"${dirty}\" ]; then\n    rev=`cat Versioning.h | sed -e \"s/.define BUILD_NUMBER ${version}\\.\\([0-9]*\\)/\\1/g\"`\n    if [ -z \"${rev}\" ]; then\n        rev=\"1\"\n    else\n        rev=`expr ${rev} + 1`\n    fi\n    version=\"${version}.${rev}\"\nfi\necho \"#define BUILD_NUMBER ${version}\" > Versioning.h";
		};
/* End PBXShellScriptBuildPhase section */

/* Begin PBXSourcesBuildPhase section */
		1D60588E0D05DD3D006BFB54 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				1D60589B0D05DD56006BFB54 /* main.m in Sources */,
				507022A4107672FA00393637 /* Cart_CollectAppDelegate.m in Sources */,
				E0F81038120A173C005866B8 /* RootViewController.m in Sources */,
				3FE79CD413D4DE37001A6B93 /* ClassicGameMode.m in Sources */,
				3F6C7C4F13D5E1B600C038FE /* FallingObject.m in Sources */,
				3F6C7C6D13D5E51800C038FE /* Cherry.m in Sources */,
				3F6C7C7013D5E54E00C038FE /* Bottle.m in Sources */,
				3F6C7C7313D5E57100C038FE /* OneUp.m in Sources */,
				3F6C7EE413D636CF00C038FE /* Rock.m in Sources */,
				3F6C7EE913D6377D00C038FE /* GameOverScene.m in Sources */,
				3F83955313D739B10059AEE8 /* MainMenuLayer.m in Sources */,
				3F03221613D78F8C00E6A708 /* HighscoreListController.m in Sources */,
				3F03221913D7904E00E6A708 /* Highscore.m in Sources */,
				6C29041013EAEB590032DA0F /* TutorialBubble.m in Sources */,
				6C0C140E13F1C3EC003A31B2 /* ValuableObject.m in Sources */,
				6C0C141113F2099B003A31B2 /* Cart.m in Sources */,
				6C0C141413F20E98003A31B2 /* GameMode.m in Sources */,
				6CC89DDF13F31413003704F7 /* TutorialMode.m in Sources */,
				6C39CFF313FD4F8B002B21AF /* GameModeSelection.m in Sources */,
				6C39CFF813FD7638002B21AF /* GameModeSelectionLayer.m in Sources */,
				6C18C3CA1402AD9C0005AA4C /* UIImage+ColorMasking.m in Sources */,
				6C18C3D214033DC50005AA4C /* CocosOverlayScrollView.m in Sources */,
				6C18C3D314033DC60005AA4C /* NMPanelMenu.m in Sources */,
				6C18C3D414033DC60005AA4C /* TouchDelegatingView.m in Sources */,
				6C39CFE513FC4635002B21AF /* JumpGameMode.m in Sources */,
				6C85834014055A44009EF100 /* CCNotifications.m in Sources */,
				6C85834414055B2E009EF100 /* notificationDesign.m in Sources */,
				6C4400041415080800A9E1D7 /* ZoomFadeTransition.m in Sources */,
				6CF64C09141B9FA300F3B702 /* PointMultiplier.m in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		506EE05B10304ED200A389B3 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				50F4132B106926B2002A0D5E /* FontLabel.m in Sources */,
				50F4132D106926B2002A0D5E /* FontLabelStringDrawing.m in Sources */,
				50F4132F106926B2002A0D5E /* FontManager.m in Sources */,
				50F41333106926B2002A0D5E /* ZFont.m in Sources */,
				50674875107A3B5E0090963A /* ZAttributedString.m in Sources */,
				504DFC4910AF1557006D82FE /* CLScoreServerPost.m in Sources */,
				504DFC4B10AF1557006D82FE /* CLScoreServerRequest.m in Sources */,
				504DFC4D10AF1557006D82FE /* cocoslive.m in Sources */,
				507ED67F11C63903002ED3FC /* CDAudioManager.m in Sources */,
				507ED68211C63903002ED3FC /* CDOpenALSupport.m in Sources */,
				507ED68411C63903002ED3FC /* CocosDenshion.m in Sources */,
				507ED68611C63903002ED3FC /* SimpleAudioEngine.m in Sources */,
				E02BBBC5126CC2F6006E46A2 /* CCAction.m in Sources */,
				E02BBBC7126CC2F6006E46A2 /* CCActionCamera.m in Sources */,
				E02BBBC9126CC2F6006E46A2 /* CCActionEase.m in Sources */,
				E02BBBCB126CC2F6006E46A2 /* CCActionGrid.m in Sources */,
				E02BBBCD126CC2F6006E46A2 /* CCActionGrid3D.m in Sources */,
				E02BBBCF126CC2F6006E46A2 /* CCActionInstant.m in Sources */,
				E02BBBD1126CC2F6006E46A2 /* CCActionInterval.m in Sources */,
				E02BBBD3126CC2F6006E46A2 /* CCActionManager.m in Sources */,
				E02BBBD5126CC2F6006E46A2 /* CCActionPageTurn3D.m in Sources */,
				E02BBBD7126CC2F6006E46A2 /* CCActionProgressTimer.m in Sources */,
				E02BBBD9126CC2F6006E46A2 /* CCActionTiledGrid.m in Sources */,
				E02BBBDB126CC2F6006E46A2 /* CCActionTween.m in Sources */,
				E02BBBDD126CC2F6006E46A2 /* CCAnimation.m in Sources */,
				E02BBBDF126CC2F6006E46A2 /* CCAnimationCache.m in Sources */,
				E02BBBE1126CC2F6006E46A2 /* CCAtlasNode.m in Sources */,
				E02BBBE3126CC2F6006E46A2 /* CCBlockSupport.m in Sources */,
				E02BBBE5126CC2F6006E46A2 /* CCCamera.m in Sources */,
				E02BBBEA126CC2F6006E46A2 /* CCConfiguration.m in Sources */,
				E02BBBEC126CC2F6006E46A2 /* CCDirector.m in Sources */,
				E02BBBEE126CC2F6006E46A2 /* CCDrawingPrimitives.m in Sources */,
				E02BBBF0126CC2F6006E46A2 /* CCGrabber.m in Sources */,
				E02BBBF2126CC2F6006E46A2 /* CCGrid.m in Sources */,
				E02BBBF4126CC2F6006E46A2 /* CCLabelAtlas.m in Sources */,
				E02BBBF6126CC2F6006E46A2 /* CCLabelBMFont.m in Sources */,
				E02BBBF8126CC2F6006E46A2 /* CCLabelTTF.m in Sources */,
				E02BBBFA126CC2F6006E46A2 /* CCLayer.m in Sources */,
				E02BBBFD126CC2F6006E46A2 /* CCMenu.m in Sources */,
				E02BBBFF126CC2F6006E46A2 /* CCMenuItem.m in Sources */,
				E02BBC01126CC2F6006E46A2 /* CCMotionStreak.m in Sources */,
				E02BBC03126CC2F6006E46A2 /* CCNode.m in Sources */,
				E02BBC05126CC2F6006E46A2 /* CCParallaxNode.m in Sources */,
				E02BBC07126CC2F6006E46A2 /* CCParticleExamples.m in Sources */,
				E02BBC09126CC2F6006E46A2 /* CCParticleSystem.m in Sources */,
				E02BBC0B126CC2F6006E46A2 /* CCParticleSystemPoint.m in Sources */,
				E02BBC0D126CC2F6006E46A2 /* CCParticleSystemQuad.m in Sources */,
				E02BBC0F126CC2F6006E46A2 /* CCProgressTimer.m in Sources */,
				E02BBC12126CC2F6006E46A2 /* CCRenderTexture.m in Sources */,
				E02BBC14126CC2F6006E46A2 /* CCRibbon.m in Sources */,
				E02BBC16126CC2F6006E46A2 /* CCScene.m in Sources */,
				E02BBC18126CC2F6006E46A2 /* CCScheduler.m in Sources */,
				E02BBC1A126CC2F6006E46A2 /* CCSprite.m in Sources */,
				E02BBC1C126CC2F6006E46A2 /* CCSpriteBatchNode.m in Sources */,
				E02BBC1E126CC2F6006E46A2 /* CCSpriteFrame.m in Sources */,
				E02BBC20126CC2F6006E46A2 /* CCSpriteFrameCache.m in Sources */,
				E02BBC24126CC2F6006E46A2 /* CCTexture2D.m in Sources */,
				E02BBC26126CC2F6006E46A2 /* CCTextureAtlas.m in Sources */,
				E02BBC28126CC2F6006E46A2 /* CCTextureCache.m in Sources */,
				E02BBC2A126CC2F6006E46A2 /* CCTexturePVR.m in Sources */,
				E02BBC2C126CC2F6006E46A2 /* CCTileMapAtlas.m in Sources */,
				E02BBC2E126CC2F6006E46A2 /* CCTMXLayer.m in Sources */,
				E02BBC30126CC2F6006E46A2 /* CCTMXObjectGroup.m in Sources */,
				E02BBC32126CC2F6006E46A2 /* CCTMXTiledMap.m in Sources */,
				E02BBC34126CC2F6006E46A2 /* CCTMXXMLParser.m in Sources */,
				E02BBC36126CC2F6006E46A2 /* CCTransition.m in Sources */,
				E02BBC38126CC2F6006E46A2 /* CCTransitionPageTurn.m in Sources */,
				E02BBC3A126CC2F6006E46A2 /* CCTransitionRadial.m in Sources */,
				E02BBC3D126CC2F6006E46A2 /* cocos2d.m in Sources */,
				E02BBC41126CC2F6006E46A2 /* CCDirectorIOS.m in Sources */,
				E02BBC44126CC2F6006E46A2 /* CCTouchDispatcher.m in Sources */,
				E02BBC46126CC2F6006E46A2 /* CCTouchHandler.m in Sources */,
				E02BBC48126CC2F6006E46A2 /* EAGLView.m in Sources */,
				E02BBC4A126CC2F6006E46A2 /* ES1Renderer.m in Sources */,
				E02BBC4C126CC2F6006E46A2 /* glu.c in Sources */,
				E02BBC4F126CC2F6006E46A2 /* CCDirectorMac.m in Sources */,
				E02BBC51126CC2F6006E46A2 /* CCEventDispatcher.m in Sources */,
				E02BBC53126CC2F6006E46A2 /* MacGLView.m in Sources */,
				E02BBC54126CC2F6006E46A2 /* base64.c in Sources */,
				E02BBC57126CC2F6006E46A2 /* CCArray.m in Sources */,
				E02BBC5A126CC2F6006E46A2 /* CCFileUtils.m in Sources */,
				E02BBC5C126CC2F6006E46A2 /* CCProfiling.m in Sources */,
				E02BBC5D126CC2F6006E46A2 /* ccUtils.c in Sources */,
				E02BBC60126CC2F6006E46A2 /* CGPointExtension.m in Sources */,
				E02BBC63126CC2F6006E46A2 /* TGAlib.m in Sources */,
				E02BBC65126CC2F6006E46A2 /* TransformUtils.m in Sources */,
				E02BBC69126CC2F6006E46A2 /* ZipUtils.m in Sources */,
				E0ECA430134E5F2B00E7A048 /* CDataScanner.m in Sources */,
				E0ECA432134E5F2B00E7A048 /* CDataScanner_Extensions.m in Sources */,
				E0ECA434134E5F2B00E7A048 /* NSDictionary_JSONExtensions.m in Sources */,
				E0ECA436134E5F2B00E7A048 /* CJSONDeserializer.m in Sources */,
				E0ECA438134E5F2B00E7A048 /* CJSONScanner.m in Sources */,
				E0ECA43A134E5F2B00E7A048 /* CJSONSerializer.m in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXSourcesBuildPhase section */

/* Begin PBXTargetDependency section */
		506EE1A81030507B00A389B3 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = 506EE05D10304ED200A389B3 /* cocos2d libraries */;
			targetProxy = 506EE1A71030507B00A389B3 /* PBXContainerItemProxy */;
		};
		6C263DE113F6F6E800116746 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = 6C263DDB13F6F4A000116746 /* Versioning */;
			targetProxy = 6C263DE013F6F6E800116746 /* PBXContainerItemProxy */;
		};
/* End PBXTargetDependency section */

/* Begin XCBuildConfiguration section */
		1D6058940D05DD3E006BFB54 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALTERNATE_MODE = Entitlements.plist;
				ALWAYS_SEARCH_USER_PATHS = YES;
				CODE_SIGN_IDENTITY = "";
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
				COPY_PHASE_STRIP = NO;
				DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
				GCC_C_LANGUAGE_STANDARD = c99;
				GCC_DYNAMIC_NO_PIC = NO;
				GCC_OPTIMIZATION_LEVEL = 0;
				GCC_PRECOMPILE_PREFIX_HEADER = YES;
				GCC_PREFIX_HEADER = Cart_Collect_Prefix.pch;
				GCC_TREAT_WARNINGS_AS_ERRORS = NO;
				GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
				HEADER_SEARCH_PATHS = libs;
				INFOPLIST_FILE = Resources/Info.plist;
				INFOPLIST_PREFIX_HEADER = Versioning.h;
				INFOPLIST_PREPROCESS = YES;
				IPHONEOS_DEPLOYMENT_TARGET = 3.0;
				LIBRARY_SEARCH_PATHS = (
					"$(inherited)",
					"\"$(SRCROOT)\"",
				);
				OTHER_LDFLAGS = (
					"-all_load",
					"-ObjC",
				);
				PRODUCT_NAME = Cartographic;
				SDKROOT = iphoneos;
				TARGETED_DEVICE_FAMILY = 1;
				WARNING_CFLAGS = "-Wall";
			};
			name = Debug;
		};
		1D6058950D05DD3E006BFB54 /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALTERNATE_MODE = Entitlements.plist;
				ALWAYS_SEARCH_USER_PATHS = YES;
				CODE_SIGN_IDENTITY = "";
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
				COPY_PHASE_STRIP = YES;
				DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
				GCC_C_LANGUAGE_STANDARD = c99;
				GCC_PRECOMPILE_PREFIX_HEADER = YES;
				GCC_PREFIX_HEADER = Cart_Collect_Prefix.pch;
				GCC_TREAT_WARNINGS_AS_ERRORS = NO;
				GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
				HEADER_SEARCH_PATHS = libs;
				INFOPLIST_FILE = Resources/Info.plist;
				INFOPLIST_PREFIX_HEADER = Versioning.h;
				INFOPLIST_PREPROCESS = YES;
				IPHONEOS_DEPLOYMENT_TARGET = 3.0;
				LIBRARY_SEARCH_PATHS = (
					"$(inherited)",
					"\"$(SRCROOT)\"",
				);
				OTHER_LDFLAGS = (
					"-all_load",
					"-ObjC",
				);
				PRODUCT_NAME = Cartographic;
				SDKROOT = iphoneos;
				TARGETED_DEVICE_FAMILY = 1;
				WARNING_CFLAGS = "-Wall";
			};
			name = Release;
		};
		506EE05F10304ED500A389B3 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = YES;
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
				COPY_PHASE_STRIP = NO;
				GCC_DYNAMIC_NO_PIC = NO;
				GCC_OPTIMIZATION_LEVEL = 0;
				GCC_TREAT_WARNINGS_AS_ERRORS = NO;
				GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
				HEADER_SEARCH_PATHS = (
					libs/Chipmunk/include/chipmunk,
					libs,
				);
				PRODUCT_NAME = "cocos2d libraries";
				SKIP_INSTALL = YES;
			};
			name = Debug;
		};
		506EE06010304ED500A389B3 /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = YES;
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
				COPY_PHASE_STRIP = YES;
				DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
				GCC_PREPROCESSOR_DEFINITIONS = "";
				GCC_TREAT_WARNINGS_AS_ERRORS = NO;
				GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
				HEADER_SEARCH_PATHS = (
					libs/Chipmunk/include/chipmunk,
					libs,
				);
				PRODUCT_NAME = "cocos2d libraries";
				SKIP_INSTALL = YES;
				ZERO_LINK = NO;
			};
			name = Release;
		};
		6C19F16C1401944500F9CCD3 /* Ad-Hoc */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				ARCHS = (
					armv7,
					armv6,
				);
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
				COPY_PHASE_STRIP = NO;
				GCC_C_LANGUAGE_STANDARD = c99;
				GCC_PREPROCESSOR_DEFINITIONS = (
					NS_BLOCK_ASSERTIONS,
					NDEBUG,
				);
				"GCC_THUMB_SUPPORT[arch=armv6]" = NO;
				"GCC_THUMB_SUPPORT[arch=armv7]" = YES;
				GCC_UNROLL_LOOPS = YES;
				GCC_VERSION = "";
				GCC_WARN_ABOUT_RETURN_TYPE = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				IPHONEOS_DEPLOYMENT_TARGET = 3.0;
				SDKROOT = iphoneos;
				STRIP_INSTALLED_PRODUCT = NO;
				TARGETED_DEVICE_FAMILY = "1,2";
			};
			name = "Ad-Hoc";
		};
		6C19F16D1401944500F9CCD3 /* Ad-Hoc */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALTERNATE_MODE = Entitlements.plist;
				ALWAYS_SEARCH_USER_PATHS = YES;
				CODE_SIGN_IDENTITY = "";
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
				COPY_PHASE_STRIP = NO;
				DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
				GCC_PRECOMPILE_PREFIX_HEADER = YES;
				GCC_PREFIX_HEADER = Cart_Collect_Prefix.pch;
				GCC_PREPROCESSOR_DEFINITIONS = (
					ADHOC,
					NS_BLOCK_ASSERTIONS,
					NDEBUG,
				);
				GCC_TREAT_WARNINGS_AS_ERRORS = NO;
				GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
				HEADER_SEARCH_PATHS = libs;
				INFOPLIST_FILE = Resources/Info.plist;
				INFOPLIST_PREFIX_HEADER = Versioning.h;
				INFOPLIST_PREPROCESS = YES;
				IPHONEOS_DEPLOYMENT_TARGET = 3.0;
				LIBRARY_SEARCH_PATHS = (
					"$(inherited)",
					"\"$(SRCROOT)\"",
				);
				OTHER_LDFLAGS = (
					"-all_load",
					"-ObjC",
				);
				PRODUCT_NAME = Cartographic;
				SDKROOT = iphoneos;
				TARGETED_DEVICE_FAMILY = 1;
				WARNING_CFLAGS = "-Wall";
			};
			name = "Ad-Hoc";
		};
		6C19F16E1401944500F9CCD3 /* Ad-Hoc */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = YES;
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
				COPY_PHASE_STRIP = YES;
				DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
				GCC_PREPROCESSOR_DEFINITIONS = "";
				GCC_TREAT_WARNINGS_AS_ERRORS = NO;
				GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
				HEADER_SEARCH_PATHS = (
					libs/Chipmunk/include/chipmunk,
					libs,
				);
				PRODUCT_NAME = "cocos2d libraries";
				SKIP_INSTALL = YES;
				ZERO_LINK = NO;
			};
			name = "Ad-Hoc";
		};
		6C19F16F1401944500F9CCD3 /* Ad-Hoc */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
				PRODUCT_NAME = "$(TARGET_NAME)";
			};
			name = "Ad-Hoc";
		};
		6C263DDD13F6F4A000116746 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
				PRODUCT_NAME = "$(TARGET_NAME)";
			};
			name = Debug;
		};
		6C263DDE13F6F4A000116746 /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
				PRODUCT_NAME = "$(TARGET_NAME)";
			};
			name = Release;
		};
		C01FCF4F08A954540054247B /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				ARCHS = (
					armv7,
					armv6,
				);
				CODE_SIGN_IDENTITY = "Don't Code Sign";
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
				GCC_C_LANGUAGE_STANDARD = c99;
				GCC_PREPROCESSOR_DEFINITIONS = (
					DEBUG,
					"COCOS2D_DEBUG=1",
					"CD_DEBUG=1",
				);
				"GCC_THUMB_SUPPORT[arch=armv6]" = NO;
				"GCC_THUMB_SUPPORT[arch=armv7]" = YES;
				GCC_VERSION = "";
				GCC_WARN_ABOUT_RETURN_TYPE = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				IPHONEOS_DEPLOYMENT_TARGET = 3.0;
				ONLY_ACTIVE_ARCH = YES;
				"PROVISIONING_PROFILE[sdk=iphoneos*]" = "";
				SDKROOT = iphoneos;
				TARGETED_DEVICE_FAMILY = "1,2";
			};
			name = Debug;
		};
		C01FCF5008A954540054247B /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				ARCHS = (
					armv7,
					armv6,
				);
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
				GCC_C_LANGUAGE_STANDARD = c99;
				GCC_PREPROCESSOR_DEFINITIONS = (
					NS_BLOCK_ASSERTIONS,
					NDEBUG,
				);
				"GCC_THUMB_SUPPORT[arch=armv6]" = NO;
				"GCC_THUMB_SUPPORT[arch=armv7]" = YES;
				GCC_UNROLL_LOOPS = YES;
				GCC_VERSION = "";
				GCC_WARN_ABOUT_RETURN_TYPE = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				IPHONEOS_DEPLOYMENT_TARGET = 3.0;
				SDKROOT = iphoneos;
				TARGETED_DEVICE_FAMILY = "1,2";
			};
			name = Release;
		};
/* End XCBuildConfiguration section */

/* Begin XCConfigurationList section */
		1D6058960D05DD3E006BFB54 /* Build configuration list for PBXNativeTarget "Cartographic" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				1D6058940D05DD3E006BFB54 /* Debug */,
				1D6058950D05DD3E006BFB54 /* Release */,
				6C19F16D1401944500F9CCD3 /* Ad-Hoc */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		506EE06410304F0100A389B3 /* Build configuration list for PBXNativeTarget "cocos2d libraries" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				506EE05F10304ED500A389B3 /* Debug */,
				506EE06010304ED500A389B3 /* Release */,
				6C19F16E1401944500F9CCD3 /* Ad-Hoc */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		6C263DDC13F6F4A000116746 /* Build configuration list for PBXAggregateTarget "Versioning" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				6C263DDD13F6F4A000116746 /* Debug */,
				6C263DDE13F6F4A000116746 /* Release */,
				6C19F16F1401944500F9CCD3 /* Ad-Hoc */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		C01FCF4E08A954540054247B /* Build configuration list for PBXProject "Cartographic" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				C01FCF4F08A954540054247B /* Debug */,
				C01FCF5008A954540054247B /* Release */,
				6C19F16C1401944500F9CCD3 /* Ad-Hoc */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
/* End XCConfigurationList section */
	};
	rootObject = 29B97313FDCFA39411CA2CEA /* Project object */;
}