aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/MacVST/Coils/Coils.xcodeproj/project.pbxproj
blob: 287e9acb15ef032276d7c6c6e10122d7b8d4b6ca (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
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
// !$*UTF8*$!
{
	archiveVersion = 1;
	classes = {
	};
	objectVersion = 42;
	objects = {

/* Begin PBXBuildFile section */
		2407DEB9089929BA00EB68BF /* Coils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2407DEB6089929BA00EB68BF /* Coils.cpp */; };
		245463B90991757100464AD3 /* Coils.h in Headers */ = {isa = PBXBuildFile; fileRef = 245463B80991757100464AD3 /* Coils.h */; };
		24A202190F90D1DE003BB5A7 /* aeffect.h in Headers */ = {isa = PBXBuildFile; fileRef = 24A2FF910F90D1DD003BB5A7 /* aeffect.h */; };
		24A2021A0F90D1DE003BB5A7 /* aeffectx.h in Headers */ = {isa = PBXBuildFile; fileRef = 24A2FF920F90D1DD003BB5A7 /* aeffectx.h */; };
		24A2021B0F90D1DE003BB5A7 /* vstfxstore.h in Headers */ = {isa = PBXBuildFile; fileRef = 24A2FF930F90D1DD003BB5A7 /* vstfxstore.h */; };
		24A2021D0F90D1DE003BB5A7 /* adelay.h in Headers */ = {isa = PBXBuildFile; fileRef = 24A2FF990F90D1DD003BB5A7 /* adelay.h */; };
		24A202240F90D1DE003BB5A7 /* sdeditor.h in Headers */ = {isa = PBXBuildFile; fileRef = 24A2FFA20F90D1DD003BB5A7 /* sdeditor.h */; };
		24A202260F90D1DE003BB5A7 /* surrounddelay.h in Headers */ = {isa = PBXBuildFile; fileRef = 24A2FFA40F90D1DD003BB5A7 /* surrounddelay.h */; };
		24A2022A0F90D1DE003BB5A7 /* again.h in Headers */ = {isa = PBXBuildFile; fileRef = 24A2FFAB0F90D1DD003BB5A7 /* again.h */; };
		24A202330F90D1DE003BB5A7 /* gmnames.h in Headers */ = {isa = PBXBuildFile; fileRef = 24A2FFBF0F90D1DD003BB5A7 /* gmnames.h */; };
		24A202350F90D1DE003BB5A7 /* vstxsynth.h in Headers */ = {isa = PBXBuildFile; fileRef = 24A2FFC10F90D1DD003BB5A7 /* vstxsynth.h */; };
		24A202460F90D1DE003BB5A7 /* aeffeditor.h in Headers */ = {isa = PBXBuildFile; fileRef = 24A2FFD80F90D1DD003BB5A7 /* aeffeditor.h */; };
		24A202480F90D1DE003BB5A7 /* audioeffect.h in Headers */ = {isa = PBXBuildFile; fileRef = 24A2FFDA0F90D1DD003BB5A7 /* audioeffect.h */; };
		24A2024A0F90D1DE003BB5A7 /* audioeffectx.h in Headers */ = {isa = PBXBuildFile; fileRef = 24A2FFDC0F90D1DD003BB5A7 /* audioeffectx.h */; };
		24A2024D0F90D1DE003BB5A7 /* cw_vst_prefix.pch++ in Headers */ = {isa = PBXBuildFile; fileRef = 24A2FFE20F90D1DD003BB5A7 /* cw_vst_prefix.pch++ */; };
		24A202510F90D1DE003BB5A7 /* xcode_au_prefix.h in Headers */ = {isa = PBXBuildFile; fileRef = 24A2FFEC0F90D1DD003BB5A7 /* xcode_au_prefix.h */; };
		24A202520F90D1DE003BB5A7 /* xcode_vst_prefix.h in Headers */ = {isa = PBXBuildFile; fileRef = 24A2FFED0F90D1DD003BB5A7 /* xcode_vst_prefix.h */; };
		24A202680F90D1DE003BB5A7 /* controlsgui.h in Headers */ = {isa = PBXBuildFile; fileRef = 24A200050F90D1DD003BB5A7 /* controlsgui.h */; };
		24A2026A0F90D1DE003BB5A7 /* pdrawtesteditor.h in Headers */ = {isa = PBXBuildFile; fileRef = 24A200070F90D1DD003BB5A7 /* pdrawtesteditor.h */; };
		24A2026C0F90D1DE003BB5A7 /* pdrawtesteffect.h in Headers */ = {isa = PBXBuildFile; fileRef = 24A200090F90D1DD003BB5A7 /* pdrawtesteffect.h */; };
		24A2026F0F90D1DE003BB5A7 /* pdrawtestview.h in Headers */ = {isa = PBXBuildFile; fileRef = 24A2000C0F90D1DD003BB5A7 /* pdrawtestview.h */; };
		24A202710F90D1DE003BB5A7 /* pprimitivesviews.h in Headers */ = {isa = PBXBuildFile; fileRef = 24A2000E0F90D1DD003BB5A7 /* pprimitivesviews.h */; };
		24A202780F90D1DE003BB5A7 /* aeffguieditor.h in Headers */ = {isa = PBXBuildFile; fileRef = 24A200180F90D1DD003BB5A7 /* aeffguieditor.h */; };
		24A2027A0F90D1DE003BB5A7 /* cfileselector.h in Headers */ = {isa = PBXBuildFile; fileRef = 24A2001A0F90D1DD003BB5A7 /* cfileselector.h */; };
		24A2027D0F90D1DE003BB5A7 /* cscrollview.h in Headers */ = {isa = PBXBuildFile; fileRef = 24A2001D0F90D1DD003BB5A7 /* cscrollview.h */; };
		24A2027F0F90D1DE003BB5A7 /* ctabview.h in Headers */ = {isa = PBXBuildFile; fileRef = 24A2001F0F90D1DD003BB5A7 /* ctabview.h */; };
		24A203A50F90D1DE003BB5A7 /* plugguieditor.h in Headers */ = {isa = PBXBuildFile; fileRef = 24A201470F90D1DE003BB5A7 /* plugguieditor.h */; };
		24A203A70F90D1DE003BB5A7 /* vstcontrols.h in Headers */ = {isa = PBXBuildFile; fileRef = 24A201490F90D1DE003BB5A7 /* vstcontrols.h */; };
		24A203A90F90D1DE003BB5A7 /* vstgui.h in Headers */ = {isa = PBXBuildFile; fileRef = 24A2014B0F90D1DE003BB5A7 /* vstgui.h */; };
		24A203AA0F90D1DE003BB5A7 /* vstkeycode.h in Headers */ = {isa = PBXBuildFile; fileRef = 24A2014C0F90D1DE003BB5A7 /* vstkeycode.h */; };
		24A203AB0F90D1DE003BB5A7 /* vstplugscarbon.h in Headers */ = {isa = PBXBuildFile; fileRef = 24A2014D0F90D1DE003BB5A7 /* vstplugscarbon.h */; };
		24A203AC0F90D1DE003BB5A7 /* vstplugsmac.h in Headers */ = {isa = PBXBuildFile; fileRef = 24A2014E0F90D1DE003BB5A7 /* vstplugsmac.h */; };
		24A203AD0F90D1DE003BB5A7 /* vstplugsmacho.h in Headers */ = {isa = PBXBuildFile; fileRef = 24A2014F0F90D1DE003BB5A7 /* vstplugsmacho.h */; };
		24A203AE0F90D1DE003BB5A7 /* vstplugsquartz.h in Headers */ = {isa = PBXBuildFile; fileRef = 24A201500F90D1DE003BB5A7 /* vstplugsquartz.h */; };
		24A203CB0F90D251003BB5A7 /* audioeffect.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 24A2FFD90F90D1DD003BB5A7 /* audioeffect.cpp */; };
		24A203CC0F90D251003BB5A7 /* audioeffectx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */; };
		24A203CD0F90D251003BB5A7 /* vstplugmain.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 24A2FFDD0F90D1DD003BB5A7 /* vstplugmain.cpp */; };
		24CFB70407E7A0220081BD57 /* PkgInfo in Resources */ = {isa = PBXBuildFile; fileRef = 24CFB70307E7A0220081BD57 /* PkgInfo */; };
		24D8287009A914000093AEF8 /* CoilsProc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 24D8286F09A914000093AEF8 /* CoilsProc.cpp */; };
		24D8287F09A9164A0093AEF8 /* xcode_vst_prefix.h in Headers */ = {isa = PBXBuildFile; fileRef = 24D8287E09A9164A0093AEF8 /* xcode_vst_prefix.h */; };
/* End PBXBuildFile section */

/* Begin PBXContainerItemProxy section */
		24A203D60F90D272003BB5A7 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 24A2FFB00F90D1DD003BB5A7 /* vst 2.4 examples.xcodeproj */;
			proxyType = 2;
			remoteGlobalIDString = 8D01CCD20486CAD60068D4B7;
			remoteInfo = again;
		};
		24A203D80F90D272003BB5A7 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 24A2FFB00F90D1DD003BB5A7 /* vst 2.4 examples.xcodeproj */;
			proxyType = 2;
			remoteGlobalIDString = F4476974093DAE42008998C4;
			remoteInfo = adelay;
		};
		24A203DA0F90D272003BB5A7 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 24A2FFB00F90D1DD003BB5A7 /* vst 2.4 examples.xcodeproj */;
			proxyType = 2;
			remoteGlobalIDString = F4FF52220929FBF500DDED7A;
			remoteInfo = vstxsynth;
		};
		24A203DC0F90D272003BB5A7 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 24A2FFB00F90D1DD003BB5A7 /* vst 2.4 examples.xcodeproj */;
			proxyType = 2;
			remoteGlobalIDString = F4476A10093DCAF9008998C4;
			remoteInfo = surrounddelay;
		};
		24A203DE0F90D272003BB5A7 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 24A2FFB00F90D1DD003BB5A7 /* vst 2.4 examples.xcodeproj */;
			proxyType = 2;
			remoteGlobalIDString = F4FF52F3092A312800DDED7A;
			remoteInfo = minihost;
		};
		24A203E40F90D272003BB5A7 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 24A2FFE50F90D1DD003BB5A7 /* drawtest.xcode */;
			proxyType = 2;
			remoteGlobalIDString = 8D01CCD20486CAD60068D4B7;
			remoteInfo = AudioUnit;
		};
		24A203E60F90D272003BB5A7 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 24A2FFE50F90D1DD003BB5A7 /* drawtest.xcode */;
			proxyType = 2;
			remoteGlobalIDString = F4C9F1D407B2320800010DAD;
			remoteInfo = VST;
		};
		24A203EC0F90D272003BB5A7 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 24A2FFE80F90D1DD003BB5A7 /* drawtest.xcodeproj */;
			proxyType = 2;
			remoteGlobalIDString = 8D01CCD20486CAD60068D4B7;
			remoteInfo = AudioUnit;
		};
		24A203EE0F90D272003BB5A7 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 24A2FFE80F90D1DD003BB5A7 /* drawtest.xcodeproj */;
			proxyType = 2;
			remoteGlobalIDString = F4C9F1D407B2320800010DAD;
			remoteInfo = VST;
		};
/* End PBXContainerItemProxy section */

/* Begin PBXFileReference section */
		08EA7FFBFE8413EDC02AAC07 /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Carbon.framework; path = /System/Library/Frameworks/Carbon.framework; sourceTree = "<absolute>"; };
		2407DE920899296600EB68BF /* Coils.vst */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = Coils.vst; sourceTree = BUILT_PRODUCTS_DIR; };
		2407DEB6089929BA00EB68BF /* Coils.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = Coils.cpp; path = source/Coils.cpp; sourceTree = "<group>"; };
		2434720A098313350063BBF1 /* QuickTime.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuickTime.framework; path = /System/Library/Frameworks/QuickTime.framework; sourceTree = "<absolute>"; };
		245463B80991757100464AD3 /* Coils.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = Coils.h; path = source/Coils.h; sourceTree = "<group>"; };
		24A200000F90D1DD003BB5A7 /* bmp10014.bmp */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; path = bmp10014.bmp; sourceTree = "<group>"; };
		24A200010F90D1DD003BB5A7 /* bmp10015.bmp */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; path = bmp10015.bmp; sourceTree = "<group>"; };
		24A200020F90D1DD003BB5A7 /* bmp10016.bmp */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; path = bmp10016.bmp; sourceTree = "<group>"; };
		24A200040F90D1DD003BB5A7 /* controlsgui.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = controlsgui.cpp; sourceTree = "<group>"; };
		24A200050F90D1DD003BB5A7 /* controlsgui.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = controlsgui.h; sourceTree = "<group>"; };
		24A200060F90D1DD003BB5A7 /* pdrawtesteditor.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = pdrawtesteditor.cpp; sourceTree = "<group>"; };
		24A200070F90D1DD003BB5A7 /* pdrawtesteditor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pdrawtesteditor.h; sourceTree = "<group>"; };
		24A200080F90D1DD003BB5A7 /* pdrawtesteffect.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = pdrawtesteffect.cpp; sourceTree = "<group>"; };
		24A200090F90D1DD003BB5A7 /* pdrawtesteffect.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pdrawtesteffect.h; sourceTree = "<group>"; };
		24A2000A0F90D1DD003BB5A7 /* pdrawtestmain.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = pdrawtestmain.cpp; sourceTree = "<group>"; };
		24A2000B0F90D1DD003BB5A7 /* pdrawtestview.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = pdrawtestview.cpp; sourceTree = "<group>"; };
		24A2000C0F90D1DD003BB5A7 /* pdrawtestview.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pdrawtestview.h; sourceTree = "<group>"; };
		24A2000D0F90D1DD003BB5A7 /* pprimitivesviews.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = pprimitivesviews.cpp; sourceTree = "<group>"; };
		24A2000E0F90D1DD003BB5A7 /* pprimitivesviews.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pprimitivesviews.h; sourceTree = "<group>"; };
		24A200100F90D1DD003BB5A7 /* drawtest.def */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = drawtest.def; sourceTree = "<group>"; };
		24A200110F90D1DD003BB5A7 /* drawtest.rc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = drawtest.rc; sourceTree = "<group>"; };
		24A200120F90D1DD003BB5A7 /* drawtest.vcproj */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = drawtest.vcproj; sourceTree = "<group>"; };
		24A200140F90D1DD003BB5A7 /* drawtest.dsp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = drawtest.dsp; sourceTree = "<group>"; };
		24A200150F90D1DD003BB5A7 /* drawtest.dsw */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = drawtest.dsw; sourceTree = "<group>"; };
		24A200170F90D1DD003BB5A7 /* aeffguieditor.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = aeffguieditor.cpp; sourceTree = "<group>"; };
		24A200180F90D1DD003BB5A7 /* aeffguieditor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = aeffguieditor.h; sourceTree = "<group>"; };
		24A200190F90D1DD003BB5A7 /* cfileselector.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = cfileselector.cpp; sourceTree = "<group>"; };
		24A2001A0F90D1DD003BB5A7 /* cfileselector.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cfileselector.h; sourceTree = "<group>"; };
		24A2001B0F90D1DD003BB5A7 /* Changelog */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Changelog; sourceTree = "<group>"; };
		24A2001C0F90D1DD003BB5A7 /* cscrollview.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = cscrollview.cpp; sourceTree = "<group>"; };
		24A2001D0F90D1DD003BB5A7 /* cscrollview.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cscrollview.h; sourceTree = "<group>"; };
		24A2001E0F90D1DD003BB5A7 /* ctabview.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ctabview.cpp; sourceTree = "<group>"; };
		24A2001F0F90D1DD003BB5A7 /* ctabview.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ctabview.h; sourceTree = "<group>"; };
		24A200220F90D1DD003BB5A7 /* aeffguieditor_8cpp.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = aeffguieditor_8cpp.html; sourceTree = "<group>"; };
		24A200230F90D1DD003BB5A7 /* aeffguieditor_8h.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = aeffguieditor_8h.html; sourceTree = "<group>"; };
		24A200240F90D1DD003BB5A7 /* annotated.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = annotated.html; sourceTree = "<group>"; };
		24A200250F90D1DD003BB5A7 /* cfileselector_8cpp.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = cfileselector_8cpp.html; sourceTree = "<group>"; };
		24A200260F90D1DD003BB5A7 /* cfileselector_8h.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = cfileselector_8h.html; sourceTree = "<group>"; };
		24A200270F90D1DD003BB5A7 /* class_a_eff_g_u_i_editor-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = "class_a_eff_g_u_i_editor-members.html"; sourceTree = "<group>"; };
		24A200280F90D1DD003BB5A7 /* class_a_eff_g_u_i_editor.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = class_a_eff_g_u_i_editor.html; sourceTree = "<group>"; };
		24A200290F90D1DD003BB5A7 /* class_c_anim_knob-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = "class_c_anim_knob-members.html"; sourceTree = "<group>"; };
		24A2002A0F90D1DD003BB5A7 /* class_c_anim_knob.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = class_c_anim_knob.html; sourceTree = "<group>"; };
		24A2002B0F90D1DD003BB5A7 /* class_c_anim_knob.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = class_c_anim_knob.png; sourceTree = "<group>"; };
		24A2002C0F90D1DD003BB5A7 /* class_c_attribute_list_entry-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = "class_c_attribute_list_entry-members.html"; sourceTree = "<group>"; };
		24A2002D0F90D1DD003BB5A7 /* class_c_attribute_list_entry.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = class_c_attribute_list_entry.html; sourceTree = "<group>"; };
		24A2002E0F90D1DD003BB5A7 /* class_c_auto_animation-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = "class_c_auto_animation-members.html"; sourceTree = "<group>"; };
		24A2002F0F90D1DD003BB5A7 /* class_c_auto_animation.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = class_c_auto_animation.html; sourceTree = "<group>"; };
		24A200300F90D1DD003BB5A7 /* class_c_auto_animation.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = class_c_auto_animation.png; sourceTree = "<group>"; };
		24A200310F90D1DD003BB5A7 /* class_c_bitmap-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = "class_c_bitmap-members.html"; sourceTree = "<group>"; };
		24A200320F90D1DD003BB5A7 /* class_c_bitmap.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = class_c_bitmap.html; sourceTree = "<group>"; };
		24A200330F90D1DD003BB5A7 /* class_c_bitmap.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = class_c_bitmap.png; sourceTree = "<group>"; };
		24A200340F90D1DD003BB5A7 /* class_c_c_view-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = "class_c_c_view-members.html"; sourceTree = "<group>"; };
		24A200350F90D1DD003BB5A7 /* class_c_c_view.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = class_c_c_view.html; sourceTree = "<group>"; };
		24A200360F90D1DD003BB5A7 /* class_c_control-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = "class_c_control-members.html"; sourceTree = "<group>"; };
		24A200370F90D1DD003BB5A7 /* class_c_control.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = class_c_control.html; sourceTree = "<group>"; };
		24A200380F90D1DD003BB5A7 /* class_c_control.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = class_c_control.png; sourceTree = "<group>"; };
		24A200390F90D1DD003BB5A7 /* class_c_control_listener-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = "class_c_control_listener-members.html"; sourceTree = "<group>"; };
		24A2003A0F90D1DD003BB5A7 /* class_c_control_listener.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = class_c_control_listener.html; sourceTree = "<group>"; };
		24A2003B0F90D1DD003BB5A7 /* class_c_control_listener.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = class_c_control_listener.png; sourceTree = "<group>"; };
		24A2003C0F90D1DD003BB5A7 /* class_c_drag_container-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = "class_c_drag_container-members.html"; sourceTree = "<group>"; };
		24A2003D0F90D1DD003BB5A7 /* class_c_drag_container.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = class_c_drag_container.html; sourceTree = "<group>"; };
		24A2003E0F90D1DD003BB5A7 /* class_c_drag_container.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = class_c_drag_container.png; sourceTree = "<group>"; };
		24A2003F0F90D1DD003BB5A7 /* class_c_draw_context-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = "class_c_draw_context-members.html"; sourceTree = "<group>"; };
		24A200400F90D1DD003BB5A7 /* class_c_draw_context.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = class_c_draw_context.html; sourceTree = "<group>"; };
		24A200410F90D1DD003BB5A7 /* class_c_draw_context.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = class_c_draw_context.png; sourceTree = "<group>"; };
		24A200420F90D1DD003BB5A7 /* class_c_file_selector-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = "class_c_file_selector-members.html"; sourceTree = "<group>"; };
		24A200430F90D1DD003BB5A7 /* class_c_file_selector.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = class_c_file_selector.html; sourceTree = "<group>"; };
		24A200440F90D1DD003BB5A7 /* class_c_frame-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = "class_c_frame-members.html"; sourceTree = "<group>"; };
		24A200450F90D1DD003BB5A7 /* class_c_frame.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = class_c_frame.html; sourceTree = "<group>"; };
		24A200460F90D1DD003BB5A7 /* class_c_frame.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = class_c_frame.png; sourceTree = "<group>"; };
		24A200470F90D1DD003BB5A7 /* class_c_horizontal_slider-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = "class_c_horizontal_slider-members.html"; sourceTree = "<group>"; };
		24A200480F90D1DD003BB5A7 /* class_c_horizontal_slider.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = class_c_horizontal_slider.html; sourceTree = "<group>"; };
		24A200490F90D1DD003BB5A7 /* class_c_horizontal_slider.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = class_c_horizontal_slider.png; sourceTree = "<group>"; };
		24A2004A0F90D1DD003BB5A7 /* class_c_horizontal_switch-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = "class_c_horizontal_switch-members.html"; sourceTree = "<group>"; };
		24A2004B0F90D1DD003BB5A7 /* class_c_horizontal_switch.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = class_c_horizontal_switch.html; sourceTree = "<group>"; };
		24A2004C0F90D1DD003BB5A7 /* class_c_horizontal_switch.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = class_c_horizontal_switch.png; sourceTree = "<group>"; };
		24A2004D0F90D1DD003BB5A7 /* class_c_kick_button-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = "class_c_kick_button-members.html"; sourceTree = "<group>"; };
		24A2004E0F90D1DD003BB5A7 /* class_c_kick_button.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = class_c_kick_button.html; sourceTree = "<group>"; };
		24A2004F0F90D1DD003BB5A7 /* class_c_kick_button.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = class_c_kick_button.png; sourceTree = "<group>"; };
		24A200500F90D1DD003BB5A7 /* class_c_knob-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = "class_c_knob-members.html"; sourceTree = "<group>"; };
		24A200510F90D1DD003BB5A7 /* class_c_knob.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = class_c_knob.html; sourceTree = "<group>"; };
		24A200520F90D1DD003BB5A7 /* class_c_knob.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = class_c_knob.png; sourceTree = "<group>"; };
		24A200530F90D1DD003BB5A7 /* class_c_movie_bitmap-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = "class_c_movie_bitmap-members.html"; sourceTree = "<group>"; };
		24A200540F90D1DD003BB5A7 /* class_c_movie_bitmap.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = class_c_movie_bitmap.html; sourceTree = "<group>"; };
		24A200550F90D1DD003BB5A7 /* class_c_movie_bitmap.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = class_c_movie_bitmap.png; sourceTree = "<group>"; };
		24A200560F90D1DD003BB5A7 /* class_c_movie_button-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = "class_c_movie_button-members.html"; sourceTree = "<group>"; };
		24A200570F90D1DD003BB5A7 /* class_c_movie_button.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = class_c_movie_button.html; sourceTree = "<group>"; };
		24A200580F90D1DD003BB5A7 /* class_c_movie_button.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = class_c_movie_button.png; sourceTree = "<group>"; };
		24A200590F90D1DD003BB5A7 /* class_c_offscreen_context-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = "class_c_offscreen_context-members.html"; sourceTree = "<group>"; };
		24A2005A0F90D1DD003BB5A7 /* class_c_offscreen_context.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = class_c_offscreen_context.html; sourceTree = "<group>"; };
		24A2005B0F90D1DD003BB5A7 /* class_c_offscreen_context.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = class_c_offscreen_context.png; sourceTree = "<group>"; };
		24A2005C0F90D1DD003BB5A7 /* class_c_on_off_button-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = "class_c_on_off_button-members.html"; sourceTree = "<group>"; };
		24A2005D0F90D1DD003BB5A7 /* class_c_on_off_button.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = class_c_on_off_button.html; sourceTree = "<group>"; };
		24A2005E0F90D1DD003BB5A7 /* class_c_on_off_button.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = class_c_on_off_button.png; sourceTree = "<group>"; };
		24A2005F0F90D1DD003BB5A7 /* class_c_option_menu-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = "class_c_option_menu-members.html"; sourceTree = "<group>"; };
		24A200600F90D1DD003BB5A7 /* class_c_option_menu.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = class_c_option_menu.html; sourceTree = "<group>"; };
		24A200610F90D1DD003BB5A7 /* class_c_option_menu.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = class_c_option_menu.png; sourceTree = "<group>"; };
		24A200620F90D1DD003BB5A7 /* class_c_option_menu_scheme-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = "class_c_option_menu_scheme-members.html"; sourceTree = "<group>"; };
		24A200630F90D1DD003BB5A7 /* class_c_option_menu_scheme.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = class_c_option_menu_scheme.html; sourceTree = "<group>"; };
		24A200640F90D1DD003BB5A7 /* class_c_option_menu_scheme.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = class_c_option_menu_scheme.png; sourceTree = "<group>"; };
		24A200650F90D1DD003BB5A7 /* class_c_param_display-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = "class_c_param_display-members.html"; sourceTree = "<group>"; };
		24A200660F90D1DD003BB5A7 /* class_c_param_display.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = class_c_param_display.html; sourceTree = "<group>"; };
		24A200670F90D1DD003BB5A7 /* class_c_param_display.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = class_c_param_display.png; sourceTree = "<group>"; };
		24A200680F90D1DD003BB5A7 /* class_c_reference_counter-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = "class_c_reference_counter-members.html"; sourceTree = "<group>"; };
		24A200690F90D1DD003BB5A7 /* class_c_reference_counter.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = class_c_reference_counter.html; sourceTree = "<group>"; };
		24A2006A0F90D1DD003BB5A7 /* class_c_reference_counter.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = class_c_reference_counter.png; sourceTree = "<group>"; };
		24A2006B0F90D1DD003BB5A7 /* class_c_rocker_switch-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = "class_c_rocker_switch-members.html"; sourceTree = "<group>"; };
		24A2006C0F90D1DD003BB5A7 /* class_c_rocker_switch.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = class_c_rocker_switch.html; sourceTree = "<group>"; };
		24A2006D0F90D1DD003BB5A7 /* class_c_rocker_switch.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = class_c_rocker_switch.png; sourceTree = "<group>"; };
		24A2006E0F90D1DD003BB5A7 /* class_c_scroll_container-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = "class_c_scroll_container-members.html"; sourceTree = "<group>"; };
		24A2006F0F90D1DD003BB5A7 /* class_c_scroll_container.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = class_c_scroll_container.html; sourceTree = "<group>"; };
		24A200700F90D1DD003BB5A7 /* class_c_scroll_container.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = class_c_scroll_container.png; sourceTree = "<group>"; };
		24A200710F90D1DD003BB5A7 /* class_c_scroll_view-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = "class_c_scroll_view-members.html"; sourceTree = "<group>"; };
		24A200720F90D1DD003BB5A7 /* class_c_scroll_view.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = class_c_scroll_view.html; sourceTree = "<group>"; };
		24A200730F90D1DD003BB5A7 /* class_c_scroll_view.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = class_c_scroll_view.png; sourceTree = "<group>"; };
		24A200740F90D1DD003BB5A7 /* class_c_scrollbar-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = "class_c_scrollbar-members.html"; sourceTree = "<group>"; };
		24A200750F90D1DD003BB5A7 /* class_c_scrollbar.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = class_c_scrollbar.html; sourceTree = "<group>"; };
		24A200760F90D1DD003BB5A7 /* class_c_scrollbar.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = class_c_scrollbar.png; sourceTree = "<group>"; };
		24A200770F90D1DD003BB5A7 /* class_c_slider-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = "class_c_slider-members.html"; sourceTree = "<group>"; };
		24A200780F90D1DD003BB5A7 /* class_c_slider.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = class_c_slider.html; sourceTree = "<group>"; };
		24A200790F90D1DD003BB5A7 /* class_c_slider.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = class_c_slider.png; sourceTree = "<group>"; };
		24A2007A0F90D1DD003BB5A7 /* class_c_special_digit-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = "class_c_special_digit-members.html"; sourceTree = "<group>"; };
		24A2007B0F90D1DD003BB5A7 /* class_c_special_digit.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = class_c_special_digit.html; sourceTree = "<group>"; };
		24A2007C0F90D1DD003BB5A7 /* class_c_special_digit.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = class_c_special_digit.png; sourceTree = "<group>"; };
		24A2007D0F90D1DD003BB5A7 /* class_c_splash_screen-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = "class_c_splash_screen-members.html"; sourceTree = "<group>"; };
		24A2007E0F90D1DD003BB5A7 /* class_c_splash_screen.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = class_c_splash_screen.html; sourceTree = "<group>"; };
		24A2007F0F90D1DD003BB5A7 /* class_c_splash_screen.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = class_c_splash_screen.png; sourceTree = "<group>"; };
		24A200800F90D1DD003BB5A7 /* class_c_splash_screen_view-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = "class_c_splash_screen_view-members.html"; sourceTree = "<group>"; };
		24A200810F90D1DD003BB5A7 /* class_c_splash_screen_view.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = class_c_splash_screen_view.html; sourceTree = "<group>"; };
		24A200820F90D1DD003BB5A7 /* class_c_splash_screen_view.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = class_c_splash_screen_view.png; sourceTree = "<group>"; };
		24A200830F90D1DD003BB5A7 /* class_c_tab_button-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = "class_c_tab_button-members.html"; sourceTree = "<group>"; };
		24A200840F90D1DD003BB5A7 /* class_c_tab_button.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = class_c_tab_button.html; sourceTree = "<group>"; };
		24A200850F90D1DD003BB5A7 /* class_c_tab_button.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = class_c_tab_button.png; sourceTree = "<group>"; };
		24A200860F90D1DD003BB5A7 /* class_c_tab_child_view-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = "class_c_tab_child_view-members.html"; sourceTree = "<group>"; };
		24A200870F90D1DD003BB5A7 /* class_c_tab_child_view.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = class_c_tab_child_view.html; sourceTree = "<group>"; };
		24A200880F90D1DD003BB5A7 /* class_c_tab_child_view.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = class_c_tab_child_view.png; sourceTree = "<group>"; };
		24A200890F90D1DD003BB5A7 /* class_c_tab_view-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = "class_c_tab_view-members.html"; sourceTree = "<group>"; };
		24A2008A0F90D1DD003BB5A7 /* class_c_tab_view.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = class_c_tab_view.html; sourceTree = "<group>"; };
		24A2008B0F90D1DD003BB5A7 /* class_c_tab_view.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = class_c_tab_view.png; sourceTree = "<group>"; };
		24A2008C0F90D1DD003BB5A7 /* class_c_text_edit-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = "class_c_text_edit-members.html"; sourceTree = "<group>"; };
		24A2008D0F90D1DD003BB5A7 /* class_c_text_edit.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = class_c_text_edit.html; sourceTree = "<group>"; };
		24A2008E0F90D1DD003BB5A7 /* class_c_text_edit.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = class_c_text_edit.png; sourceTree = "<group>"; };
		24A2008F0F90D1DD003BB5A7 /* class_c_text_label-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = "class_c_text_label-members.html"; sourceTree = "<group>"; };
		24A200900F90D1DD003BB5A7 /* class_c_text_label.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = class_c_text_label.html; sourceTree = "<group>"; };
		24A200910F90D1DD003BB5A7 /* class_c_text_label.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = class_c_text_label.png; sourceTree = "<group>"; };
		24A200920F90D1DD003BB5A7 /* class_c_vertical_slider-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = "class_c_vertical_slider-members.html"; sourceTree = "<group>"; };
		24A200930F90D1DD003BB5A7 /* class_c_vertical_slider.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = class_c_vertical_slider.html; sourceTree = "<group>"; };
		24A200940F90D1DD003BB5A7 /* class_c_vertical_slider.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = class_c_vertical_slider.png; sourceTree = "<group>"; };
		24A200950F90D1DD003BB5A7 /* class_c_vertical_switch-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = "class_c_vertical_switch-members.html"; sourceTree = "<group>"; };
		24A200960F90D1DD003BB5A7 /* class_c_vertical_switch.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = class_c_vertical_switch.html; sourceTree = "<group>"; };
		24A200970F90D1DD003BB5A7 /* class_c_vertical_switch.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = class_c_vertical_switch.png; sourceTree = "<group>"; };
		24A200980F90D1DD003BB5A7 /* class_c_view-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = "class_c_view-members.html"; sourceTree = "<group>"; };
		24A200990F90D1DD003BB5A7 /* class_c_view.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = class_c_view.html; sourceTree = "<group>"; };
		24A2009A0F90D1DD003BB5A7 /* class_c_view.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = class_c_view.png; sourceTree = "<group>"; };
		24A2009B0F90D1DD003BB5A7 /* class_c_view_container-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = "class_c_view_container-members.html"; sourceTree = "<group>"; };
		24A2009C0F90D1DD003BB5A7 /* class_c_view_container.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = class_c_view_container.html; sourceTree = "<group>"; };
		24A2009D0F90D1DD003BB5A7 /* class_c_view_container.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = class_c_view_container.png; sourceTree = "<group>"; };
		24A2009E0F90D1DD003BB5A7 /* class_c_vu_meter-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = "class_c_vu_meter-members.html"; sourceTree = "<group>"; };
		24A2009F0F90D1DD003BB5A7 /* class_c_vu_meter.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = class_c_vu_meter.html; sourceTree = "<group>"; };
		24A200A00F90D1DD003BB5A7 /* class_c_vu_meter.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = class_c_vu_meter.png; sourceTree = "<group>"; };
		24A200A10F90D1DD003BB5A7 /* class_i_scrollbar_drawer-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = "class_i_scrollbar_drawer-members.html"; sourceTree = "<group>"; };
		24A200A20F90D1DD003BB5A7 /* class_i_scrollbar_drawer.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = class_i_scrollbar_drawer.html; sourceTree = "<group>"; };
		24A200A30F90D1DD003BB5A7 /* class_plugin_g_u_i_editor-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = "class_plugin_g_u_i_editor-members.html"; sourceTree = "<group>"; };
		24A200A40F90D1DD003BB5A7 /* class_plugin_g_u_i_editor.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = class_plugin_g_u_i_editor.html; sourceTree = "<group>"; };
		24A200A50F90D1DD003BB5A7 /* cscrollview_8cpp.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = cscrollview_8cpp.html; sourceTree = "<group>"; };
		24A200A60F90D1DD003BB5A7 /* cscrollview_8h.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = cscrollview_8h.html; sourceTree = "<group>"; };
		24A200A70F90D1DD003BB5A7 /* ctabview_8cpp.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = ctabview_8cpp.html; sourceTree = "<group>"; };
		24A200A80F90D1DD003BB5A7 /* ctabview_8h.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = ctabview_8h.html; sourceTree = "<group>"; };
		24A200A90F90D1DD003BB5A7 /* deprecated.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = deprecated.html; sourceTree = "<group>"; };
		24A200AA0F90D1DD003BB5A7 /* doc_8h.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = doc_8h.html; sourceTree = "<group>"; };
		24A200AB0F90D1DD003BB5A7 /* doxygen.css */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.css; path = doxygen.css; sourceTree = "<group>"; };
		24A200AC0F90D1DD003BB5A7 /* doxygen.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = doxygen.png; sourceTree = "<group>"; };
		24A200AD0F90D1DD003BB5A7 /* files.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = files.html; sourceTree = "<group>"; };
		24A200AE0F90D1DD003BB5A7 /* ftv2blank.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ftv2blank.png; sourceTree = "<group>"; };
		24A200AF0F90D1DD003BB5A7 /* ftv2doc.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ftv2doc.png; sourceTree = "<group>"; };
		24A200B00F90D1DD003BB5A7 /* ftv2folderclosed.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ftv2folderclosed.png; sourceTree = "<group>"; };
		24A200B10F90D1DE003BB5A7 /* ftv2folderopen.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ftv2folderopen.png; sourceTree = "<group>"; };
		24A200B20F90D1DE003BB5A7 /* ftv2lastnode.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ftv2lastnode.png; sourceTree = "<group>"; };
		24A200B30F90D1DE003BB5A7 /* ftv2link.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ftv2link.png; sourceTree = "<group>"; };
		24A200B40F90D1DE003BB5A7 /* ftv2mlastnode.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ftv2mlastnode.png; sourceTree = "<group>"; };
		24A200B50F90D1DE003BB5A7 /* ftv2mnode.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ftv2mnode.png; sourceTree = "<group>"; };
		24A200B60F90D1DE003BB5A7 /* ftv2node.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ftv2node.png; sourceTree = "<group>"; };
		24A200B70F90D1DE003BB5A7 /* ftv2plastnode.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ftv2plastnode.png; sourceTree = "<group>"; };
		24A200B80F90D1DE003BB5A7 /* ftv2pnode.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ftv2pnode.png; sourceTree = "<group>"; };
		24A200B90F90D1DE003BB5A7 /* ftv2vertline.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ftv2vertline.png; sourceTree = "<group>"; };
		24A200BA0F90D1DE003BB5A7 /* functions.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = functions.html; sourceTree = "<group>"; };
		24A200BB0F90D1DE003BB5A7 /* functions_0x62.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = functions_0x62.html; sourceTree = "<group>"; };
		24A200BC0F90D1DE003BB5A7 /* functions_0x63.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = functions_0x63.html; sourceTree = "<group>"; };
		24A200BD0F90D1DE003BB5A7 /* functions_0x64.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = functions_0x64.html; sourceTree = "<group>"; };
		24A200BE0F90D1DE003BB5A7 /* functions_0x65.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = functions_0x65.html; sourceTree = "<group>"; };
		24A200BF0F90D1DE003BB5A7 /* functions_0x66.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = functions_0x66.html; sourceTree = "<group>"; };
		24A200C00F90D1DE003BB5A7 /* functions_0x67.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = functions_0x67.html; sourceTree = "<group>"; };
		24A200C10F90D1DE003BB5A7 /* functions_0x68.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = functions_0x68.html; sourceTree = "<group>"; };
		24A200C20F90D1DE003BB5A7 /* functions_0x69.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = functions_0x69.html; sourceTree = "<group>"; };
		24A200C30F90D1DE003BB5A7 /* functions_0x6b.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = functions_0x6b.html; sourceTree = "<group>"; };
		24A200C40F90D1DE003BB5A7 /* functions_0x6c.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = functions_0x6c.html; sourceTree = "<group>"; };
		24A200C50F90D1DE003BB5A7 /* functions_0x6d.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = functions_0x6d.html; sourceTree = "<group>"; };
		24A200C60F90D1DE003BB5A7 /* functions_0x6e.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = functions_0x6e.html; sourceTree = "<group>"; };
		24A200C70F90D1DE003BB5A7 /* functions_0x6f.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = functions_0x6f.html; sourceTree = "<group>"; };
		24A200C80F90D1DE003BB5A7 /* functions_0x70.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = functions_0x70.html; sourceTree = "<group>"; };
		24A200C90F90D1DE003BB5A7 /* functions_0x72.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = functions_0x72.html; sourceTree = "<group>"; };
		24A200CA0F90D1DE003BB5A7 /* functions_0x73.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = functions_0x73.html; sourceTree = "<group>"; };
		24A200CB0F90D1DE003BB5A7 /* functions_0x74.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = functions_0x74.html; sourceTree = "<group>"; };
		24A200CC0F90D1DE003BB5A7 /* functions_0x75.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = functions_0x75.html; sourceTree = "<group>"; };
		24A200CD0F90D1DE003BB5A7 /* functions_0x76.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = functions_0x76.html; sourceTree = "<group>"; };
		24A200CE0F90D1DE003BB5A7 /* functions_0x77.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = functions_0x77.html; sourceTree = "<group>"; };
		24A200CF0F90D1DE003BB5A7 /* functions_0x78.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = functions_0x78.html; sourceTree = "<group>"; };
		24A200D00F90D1DE003BB5A7 /* functions_0x79.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = functions_0x79.html; sourceTree = "<group>"; };
		24A200D10F90D1DE003BB5A7 /* functions_0x7a.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = functions_0x7a.html; sourceTree = "<group>"; };
		24A200D20F90D1DE003BB5A7 /* functions_0x7e.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = functions_0x7e.html; sourceTree = "<group>"; };
		24A200D30F90D1DE003BB5A7 /* functions_eval.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = functions_eval.html; sourceTree = "<group>"; };
		24A200D40F90D1DE003BB5A7 /* functions_func.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = functions_func.html; sourceTree = "<group>"; };
		24A200D50F90D1DE003BB5A7 /* functions_func_0x62.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = functions_func_0x62.html; sourceTree = "<group>"; };
		24A200D60F90D1DE003BB5A7 /* functions_func_0x63.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = functions_func_0x63.html; sourceTree = "<group>"; };
		24A200D70F90D1DE003BB5A7 /* functions_func_0x64.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = functions_func_0x64.html; sourceTree = "<group>"; };
		24A200D80F90D1DE003BB5A7 /* functions_func_0x65.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = functions_func_0x65.html; sourceTree = "<group>"; };
		24A200D90F90D1DE003BB5A7 /* functions_func_0x66.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = functions_func_0x66.html; sourceTree = "<group>"; };
		24A200DA0F90D1DE003BB5A7 /* functions_func_0x67.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = functions_func_0x67.html; sourceTree = "<group>"; };
		24A200DB0F90D1DE003BB5A7 /* functions_func_0x68.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = functions_func_0x68.html; sourceTree = "<group>"; };
		24A200DC0F90D1DE003BB5A7 /* functions_func_0x69.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = functions_func_0x69.html; sourceTree = "<group>"; };
		24A200DD0F90D1DE003BB5A7 /* functions_func_0x6c.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = functions_func_0x6c.html; sourceTree = "<group>"; };
		24A200DE0F90D1DE003BB5A7 /* functions_func_0x6d.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = functions_func_0x6d.html; sourceTree = "<group>"; };
		24A200DF0F90D1DE003BB5A7 /* functions_func_0x6e.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = functions_func_0x6e.html; sourceTree = "<group>"; };
		24A200E00F90D1DE003BB5A7 /* functions_func_0x6f.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = functions_func_0x6f.html; sourceTree = "<group>"; };
		24A200E10F90D1DE003BB5A7 /* functions_func_0x70.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = functions_func_0x70.html; sourceTree = "<group>"; };
		24A200E20F90D1DE003BB5A7 /* functions_func_0x72.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = functions_func_0x72.html; sourceTree = "<group>"; };
		24A200E30F90D1DE003BB5A7 /* functions_func_0x73.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = functions_func_0x73.html; sourceTree = "<group>"; };
		24A200E40F90D1DE003BB5A7 /* functions_func_0x74.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = functions_func_0x74.html; sourceTree = "<group>"; };
		24A200E50F90D1DE003BB5A7 /* functions_func_0x75.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = functions_func_0x75.html; sourceTree = "<group>"; };
		24A200E60F90D1DE003BB5A7 /* functions_func_0x76.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = functions_func_0x76.html; sourceTree = "<group>"; };
		24A200E70F90D1DE003BB5A7 /* functions_func_0x77.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = functions_func_0x77.html; sourceTree = "<group>"; };
		24A200E80F90D1DE003BB5A7 /* functions_func_0x7e.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = functions_func_0x7e.html; sourceTree = "<group>"; };
		24A200E90F90D1DE003BB5A7 /* functions_rela.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = functions_rela.html; sourceTree = "<group>"; };
		24A200EA0F90D1DE003BB5A7 /* functions_vars.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = functions_vars.html; sourceTree = "<group>"; };
		24A200EB0F90D1DE003BB5A7 /* functions_vars_0x62.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = functions_vars_0x62.html; sourceTree = "<group>"; };
		24A200EC0F90D1DE003BB5A7 /* functions_vars_0x63.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = functions_vars_0x63.html; sourceTree = "<group>"; };
		24A200ED0F90D1DE003BB5A7 /* functions_vars_0x64.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = functions_vars_0x64.html; sourceTree = "<group>"; };
		24A200EE0F90D1DE003BB5A7 /* functions_vars_0x65.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = functions_vars_0x65.html; sourceTree = "<group>"; };
		24A200EF0F90D1DE003BB5A7 /* functions_vars_0x66.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = functions_vars_0x66.html; sourceTree = "<group>"; };
		24A200F00F90D1DE003BB5A7 /* functions_vars_0x67.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = functions_vars_0x67.html; sourceTree = "<group>"; };
		24A200F10F90D1DE003BB5A7 /* functions_vars_0x68.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = functions_vars_0x68.html; sourceTree = "<group>"; };
		24A200F20F90D1DE003BB5A7 /* functions_vars_0x69.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = functions_vars_0x69.html; sourceTree = "<group>"; };
		24A200F30F90D1DE003BB5A7 /* functions_vars_0x6b.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = functions_vars_0x6b.html; sourceTree = "<group>"; };
		24A200F40F90D1DE003BB5A7 /* functions_vars_0x6c.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = functions_vars_0x6c.html; sourceTree = "<group>"; };
		24A200F50F90D1DE003BB5A7 /* functions_vars_0x6d.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = functions_vars_0x6d.html; sourceTree = "<group>"; };
		24A200F60F90D1DE003BB5A7 /* functions_vars_0x6e.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = functions_vars_0x6e.html; sourceTree = "<group>"; };
		24A200F70F90D1DE003BB5A7 /* functions_vars_0x6f.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = functions_vars_0x6f.html; sourceTree = "<group>"; };
		24A200F80F90D1DE003BB5A7 /* functions_vars_0x70.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = functions_vars_0x70.html; sourceTree = "<group>"; };
		24A200F90F90D1DE003BB5A7 /* functions_vars_0x72.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = functions_vars_0x72.html; sourceTree = "<group>"; };
		24A200FA0F90D1DE003BB5A7 /* functions_vars_0x73.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = functions_vars_0x73.html; sourceTree = "<group>"; };
		24A200FB0F90D1DE003BB5A7 /* functions_vars_0x74.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = functions_vars_0x74.html; sourceTree = "<group>"; };
		24A200FC0F90D1DE003BB5A7 /* functions_vars_0x75.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = functions_vars_0x75.html; sourceTree = "<group>"; };
		24A200FD0F90D1DE003BB5A7 /* functions_vars_0x76.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = functions_vars_0x76.html; sourceTree = "<group>"; };
		24A200FE0F90D1DE003BB5A7 /* functions_vars_0x77.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = functions_vars_0x77.html; sourceTree = "<group>"; };
		24A200FF0F90D1DE003BB5A7 /* functions_vars_0x78.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = functions_vars_0x78.html; sourceTree = "<group>"; };
		24A201000F90D1DE003BB5A7 /* functions_vars_0x79.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = functions_vars_0x79.html; sourceTree = "<group>"; };
		24A201010F90D1DE003BB5A7 /* functions_vars_0x7a.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = functions_vars_0x7a.html; sourceTree = "<group>"; };
		24A201020F90D1DE003BB5A7 /* globals.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = globals.html; sourceTree = "<group>"; };
		24A201030F90D1DE003BB5A7 /* globals_0x61.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = globals_0x61.html; sourceTree = "<group>"; };
		24A201040F90D1DE003BB5A7 /* globals_0x62.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = globals_0x62.html; sourceTree = "<group>"; };
		24A201050F90D1DE003BB5A7 /* globals_0x63.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = globals_0x63.html; sourceTree = "<group>"; };
		24A201060F90D1DE003BB5A7 /* globals_0x65.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = globals_0x65.html; sourceTree = "<group>"; };
		24A201070F90D1DE003BB5A7 /* globals_0x66.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = globals_0x66.html; sourceTree = "<group>"; };
		24A201080F90D1DE003BB5A7 /* globals_0x67.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = globals_0x67.html; sourceTree = "<group>"; };
		24A201090F90D1DE003BB5A7 /* globals_0x6b.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = globals_0x6b.html; sourceTree = "<group>"; };
		24A2010A0F90D1DE003BB5A7 /* globals_0x6d.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = globals_0x6d.html; sourceTree = "<group>"; };
		24A2010B0F90D1DE003BB5A7 /* globals_0x6e.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = globals_0x6e.html; sourceTree = "<group>"; };
		24A2010C0F90D1DE003BB5A7 /* globals_0x6f.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = globals_0x6f.html; sourceTree = "<group>"; };
		24A2010D0F90D1DE003BB5A7 /* globals_0x71.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = globals_0x71.html; sourceTree = "<group>"; };
		24A2010E0F90D1DE003BB5A7 /* globals_0x72.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = globals_0x72.html; sourceTree = "<group>"; };
		24A2010F0F90D1DE003BB5A7 /* globals_0x73.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = globals_0x73.html; sourceTree = "<group>"; };
		24A201100F90D1DE003BB5A7 /* globals_0x74.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = globals_0x74.html; sourceTree = "<group>"; };
		24A201110F90D1DE003BB5A7 /* globals_0x75.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = globals_0x75.html; sourceTree = "<group>"; };
		24A201120F90D1DE003BB5A7 /* globals_0x76.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = globals_0x76.html; sourceTree = "<group>"; };
		24A201130F90D1DE003BB5A7 /* globals_0x77.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = globals_0x77.html; sourceTree = "<group>"; };
		24A201140F90D1DE003BB5A7 /* globals_defs.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = globals_defs.html; sourceTree = "<group>"; };
		24A201150F90D1DE003BB5A7 /* globals_enum.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = globals_enum.html; sourceTree = "<group>"; };
		24A201160F90D1DE003BB5A7 /* globals_eval.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = globals_eval.html; sourceTree = "<group>"; };
		24A201170F90D1DE003BB5A7 /* globals_type.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = globals_type.html; sourceTree = "<group>"; };
		24A201180F90D1DE003BB5A7 /* globals_vars.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = globals_vars.html; sourceTree = "<group>"; };
		24A201190F90D1DE003BB5A7 /* hierarchy.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = hierarchy.html; sourceTree = "<group>"; };
		24A2011A0F90D1DE003BB5A7 /* index.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = index.html; sourceTree = "<group>"; };
		24A2011B0F90D1DE003BB5A7 /* intro.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = intro.html; sourceTree = "<group>"; };
		24A2011C0F90D1DE003BB5A7 /* license.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = license.html; sourceTree = "<group>"; };
		24A2011D0F90D1DE003BB5A7 /* maceditor.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = maceditor.html; sourceTree = "<group>"; };
		24A2011E0F90D1DE003BB5A7 /* main.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = main.html; sourceTree = "<group>"; };
		24A2011F0F90D1DE003BB5A7 /* others.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = others.html; sourceTree = "<group>"; };
		24A201200F90D1DE003BB5A7 /* pages.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = pages.html; sourceTree = "<group>"; };
		24A201210F90D1DE003BB5A7 /* plugguieditor_8cpp.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = plugguieditor_8cpp.html; sourceTree = "<group>"; };
		24A201220F90D1DE003BB5A7 /* plugguieditor_8h.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = plugguieditor_8h.html; sourceTree = "<group>"; };
		24A201230F90D1DE003BB5A7 /* sequences.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = sequences.html; sourceTree = "<group>"; };
		24A201240F90D1DE003BB5A7 /* struct_c_color-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = "struct_c_color-members.html"; sourceTree = "<group>"; };
		24A201250F90D1DE003BB5A7 /* struct_c_color.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = struct_c_color.html; sourceTree = "<group>"; };
		24A201260F90D1DE003BB5A7 /* struct_c_point-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = "struct_c_point-members.html"; sourceTree = "<group>"; };
		24A201270F90D1DE003BB5A7 /* struct_c_point.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = struct_c_point.html; sourceTree = "<group>"; };
		24A201280F90D1DE003BB5A7 /* struct_c_rect-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = "struct_c_rect-members.html"; sourceTree = "<group>"; };
		24A201290F90D1DE003BB5A7 /* struct_c_rect.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = struct_c_rect.html; sourceTree = "<group>"; };
		24A2012A0F90D1DE003BB5A7 /* struct_e_rect-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = "struct_e_rect-members.html"; sourceTree = "<group>"; };
		24A2012B0F90D1DE003BB5A7 /* struct_e_rect.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = struct_e_rect.html; sourceTree = "<group>"; };
		24A2012C0F90D1DE003BB5A7 /* struct_vst_file_select-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = "struct_vst_file_select-members.html"; sourceTree = "<group>"; };
		24A2012D0F90D1DE003BB5A7 /* struct_vst_file_select.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = struct_vst_file_select.html; sourceTree = "<group>"; };
		24A2012E0F90D1DE003BB5A7 /* struct_vst_file_type-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = "struct_vst_file_type-members.html"; sourceTree = "<group>"; };
		24A2012F0F90D1DE003BB5A7 /* struct_vst_file_type.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = struct_vst_file_type.html; sourceTree = "<group>"; };
		24A201300F90D1DE003BB5A7 /* struct_vst_key_code-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = "struct_vst_key_code-members.html"; sourceTree = "<group>"; };
		24A201310F90D1DE003BB5A7 /* struct_vst_key_code.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = struct_vst_key_code.html; sourceTree = "<group>"; };
		24A201320F90D1DE003BB5A7 /* tab_b.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = tab_b.gif; sourceTree = "<group>"; };
		24A201330F90D1DE003BB5A7 /* tab_l.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = tab_l.gif; sourceTree = "<group>"; };
		24A201340F90D1DE003BB5A7 /* tab_r.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = tab_r.gif; sourceTree = "<group>"; };
		24A201350F90D1DE003BB5A7 /* tabs.css */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.css; path = tabs.css; sourceTree = "<group>"; };
		24A201360F90D1DE003BB5A7 /* thanks.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = thanks.html; sourceTree = "<group>"; };
		24A201370F90D1DE003BB5A7 /* tree.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = tree.html; sourceTree = "<group>"; };
		24A201380F90D1DE003BB5A7 /* vstcontrols_8cpp.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = vstcontrols_8cpp.html; sourceTree = "<group>"; };
		24A201390F90D1DE003BB5A7 /* vstcontrols_8h.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = vstcontrols_8h.html; sourceTree = "<group>"; };
		24A2013A0F90D1DE003BB5A7 /* vstgui_8cpp.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = vstgui_8cpp.html; sourceTree = "<group>"; };
		24A2013B0F90D1DE003BB5A7 /* vstgui_8h.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = vstgui_8h.html; sourceTree = "<group>"; };
		24A2013C0F90D1DE003BB5A7 /* vstkeycode_8h.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = vstkeycode_8h.html; sourceTree = "<group>"; };
		24A2013D0F90D1DE003BB5A7 /* vstoffline.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = vstoffline.html; sourceTree = "<group>"; };
		24A2013E0F90D1DE003BB5A7 /* vstparamstruct.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = vstparamstruct.html; sourceTree = "<group>"; };
		24A2013F0F90D1DE003BB5A7 /* vstplugscarbon_8h.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = vstplugscarbon_8h.html; sourceTree = "<group>"; };
		24A201400F90D1DE003BB5A7 /* vstplugsmac_8h.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = vstplugsmac_8h.html; sourceTree = "<group>"; };
		24A201410F90D1DE003BB5A7 /* vstplugsmacho_8h.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = vstplugsmacho_8h.html; sourceTree = "<group>"; };
		24A201420F90D1DE003BB5A7 /* vstplugsquartz_8h.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = vstplugsquartz_8h.html; sourceTree = "<group>"; };
		24A201430F90D1DE003BB5A7 /* whatsnew.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = whatsnew.html; sourceTree = "<group>"; };
		24A201440F90D1DE003BB5A7 /* index.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = index.html; sourceTree = "<group>"; };
		24A201450F90D1DE003BB5A7 /* Migrating from 2.3.rtf */ = {isa = PBXFileReference; lastKnownFileType = text.rtf; path = "Migrating from 2.3.rtf"; sourceTree = "<group>"; };
		24A201460F90D1DE003BB5A7 /* plugguieditor.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = plugguieditor.cpp; sourceTree = "<group>"; };
		24A201470F90D1DE003BB5A7 /* plugguieditor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = plugguieditor.h; sourceTree = "<group>"; };
		24A201480F90D1DE003BB5A7 /* vstcontrols.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = vstcontrols.cpp; sourceTree = "<group>"; };
		24A201490F90D1DE003BB5A7 /* vstcontrols.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vstcontrols.h; sourceTree = "<group>"; };
		24A2014A0F90D1DE003BB5A7 /* vstgui.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = vstgui.cpp; sourceTree = "<group>"; };
		24A2014B0F90D1DE003BB5A7 /* vstgui.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vstgui.h; sourceTree = "<group>"; };
		24A2014C0F90D1DE003BB5A7 /* vstkeycode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vstkeycode.h; sourceTree = "<group>"; };
		24A2014D0F90D1DE003BB5A7 /* vstplugscarbon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vstplugscarbon.h; sourceTree = "<group>"; };
		24A2014E0F90D1DE003BB5A7 /* vstplugsmac.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vstplugsmac.h; sourceTree = "<group>"; };
		24A2014F0F90D1DE003BB5A7 /* vstplugsmacho.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vstplugsmacho.h; sourceTree = "<group>"; };
		24A201500F90D1DE003BB5A7 /* vstplugsquartz.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vstplugsquartz.h; sourceTree = "<group>"; };
		24A2FEBD0F90D1DC003BB5A7 /* Thumbs.db */ = {isa = PBXFileReference; lastKnownFileType = file; path = Thumbs.db; sourceTree = "<group>"; };
		24A2FEBE0F90D1DC003BB5A7 /* VST_Logo_Usage_Guideline.pdf */ = {isa = PBXFileReference; lastKnownFileType = image.pdf; path = VST_Logo_Usage_Guideline.pdf; sourceTree = "<group>"; };
		24A2FEBF0F90D1DC003BB5A7 /* VSTLogoAlpha.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = VSTLogoAlpha.png; sourceTree = "<group>"; };
		24A2FEC00F90D1DC003BB5A7 /* VSTLogoBlack.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = VSTLogoBlack.jpg; sourceTree = "<group>"; };
		24A2FEC10F90D1DC003BB5A7 /* VSTLogoWhite.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = VSTLogoWhite.jpg; sourceTree = "<group>"; };
		24A2FEC60F90D1DC003BB5A7 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
		24A2FEC80F90D1DC003BB5A7 /* VSTMonitor */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.bundle"; path = VSTMonitor; sourceTree = "<group>"; };
		24A2FEC90F90D1DC003BB5A7 /* PkgInfo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PkgInfo; sourceTree = "<group>"; };
		24A2FECB0F90D1DC003BB5A7 /* bmp50000.bmp */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; path = bmp50000.bmp; sourceTree = "<group>"; };
		24A2FECC0F90D1DC003BB5A7 /* bmp50001.bmp */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; path = bmp50001.bmp; sourceTree = "<group>"; };
		24A2FECD0F90D1DC003BB5A7 /* bmp50002.bmp */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; path = bmp50002.bmp; sourceTree = "<group>"; };
		24A2FECE0F90D1DC003BB5A7 /* bmp50003.bmp */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; path = bmp50003.bmp; sourceTree = "<group>"; };
		24A2FECF0F90D1DC003BB5A7 /* bmp50004.bmp */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; path = bmp50004.bmp; sourceTree = "<group>"; };
		24A2FED00F90D1DC003BB5A7 /* bmp50005.bmp */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; path = bmp50005.bmp; sourceTree = "<group>"; };
		24A2FED10F90D1DC003BB5A7 /* bmp50006.bmp */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; path = bmp50006.bmp; sourceTree = "<group>"; };
		24A2FED20F90D1DC003BB5A7 /* bmp50007.bmp */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; path = bmp50007.bmp; sourceTree = "<group>"; };
		24A2FED30F90D1DC003BB5A7 /* bmp50008.bmp */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; path = bmp50008.bmp; sourceTree = "<group>"; };
		24A2FED40F90D1DC003BB5A7 /* VSTParamTool.app */ = {isa = PBXFileReference; lastKnownFileType = wrapper.application; path = VSTParamTool.app; sourceTree = "<group>"; };
		24A2FED60F90D1DC003BB5A7 /* vstmonitor.dll */ = {isa = PBXFileReference; lastKnownFileType = file; path = vstmonitor.dll; sourceTree = "<group>"; };
		24A2FED70F90D1DC003BB5A7 /* vstparamtool.exe */ = {isa = PBXFileReference; lastKnownFileType = file; path = vstparamtool.exe; sourceTree = "<group>"; };
		24A2FEDA0F90D1DC003BB5A7 /* folder.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = folder.gif; sourceTree = "<group>"; };
		24A2FEDB0F90D1DC003BB5A7 /* mac.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = mac.gif; sourceTree = "<group>"; };
		24A2FEDC0F90D1DC003BB5A7 /* vstpluglogo_small.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = vstpluglogo_small.jpg; sourceTree = "<group>"; };
		24A2FEDD0F90D1DC003BB5A7 /* win.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = win.gif; sourceTree = "<group>"; };
		24A2FEDF0F90D1DC003BB5A7 /* aeffect_8h.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = aeffect_8h.html; sourceTree = "<group>"; };
		24A2FEE00F90D1DC003BB5A7 /* aeffectx_8h.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = aeffectx_8h.html; sourceTree = "<group>"; };
		24A2FEE10F90D1DC003BB5A7 /* aeffeditor_8h.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = aeffeditor_8h.html; sourceTree = "<group>"; };
		24A2FEE20F90D1DC003BB5A7 /* annotated.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = annotated.html; sourceTree = "<group>"; };
		24A2FEE30F90D1DC003BB5A7 /* audioeffect_8cpp.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = audioeffect_8cpp.html; sourceTree = "<group>"; };
		24A2FEE40F90D1DC003BB5A7 /* audioeffect_8h.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = audioeffect_8h.html; sourceTree = "<group>"; };
		24A2FEE50F90D1DC003BB5A7 /* audioeffectx_8cpp.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = audioeffectx_8cpp.html; sourceTree = "<group>"; };
		24A2FEE60F90D1DC003BB5A7 /* audioeffectx_8h.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = audioeffectx_8h.html; sourceTree = "<group>"; };
		24A2FEE70F90D1DC003BB5A7 /* Blocksizechange.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = Blocksizechange.gif; sourceTree = "<group>"; };
		24A2FEE80F90D1DC003BB5A7 /* class_a_eff_editor-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = "class_a_eff_editor-members.html"; sourceTree = "<group>"; };
		24A2FEE90F90D1DC003BB5A7 /* class_a_eff_editor.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = class_a_eff_editor.html; sourceTree = "<group>"; };
		24A2FEEA0F90D1DC003BB5A7 /* class_audio_effect-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = "class_audio_effect-members.html"; sourceTree = "<group>"; };
		24A2FEEB0F90D1DC003BB5A7 /* class_audio_effect.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = class_audio_effect.html; sourceTree = "<group>"; };
		24A2FEEC0F90D1DC003BB5A7 /* class_audio_effect.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = class_audio_effect.png; sourceTree = "<group>"; };
		24A2FEED0F90D1DC003BB5A7 /* class_audio_effect_x-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = "class_audio_effect_x-members.html"; sourceTree = "<group>"; };
		24A2FEEE0F90D1DC003BB5A7 /* class_audio_effect_x.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = class_audio_effect_x.html; sourceTree = "<group>"; };
		24A2FEEF0F90D1DC003BB5A7 /* class_audio_effect_x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = class_audio_effect_x.png; sourceTree = "<group>"; };
		24A2FEF00F90D1DC003BB5A7 /* ControlChanged.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = ControlChanged.gif; sourceTree = "<group>"; };
		24A2FEF10F90D1DC003BB5A7 /* deprecated.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = deprecated.html; sourceTree = "<group>"; };
		24A2FEF20F90D1DC003BB5A7 /* dir_2d3252dd12c84c66c1d25b26bb45a1f5.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = dir_2d3252dd12c84c66c1d25b26bb45a1f5.html; sourceTree = "<group>"; };
		24A2FEF30F90D1DC003BB5A7 /* dir_77c628dfee72e555f82d5ef53b733f38.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = dir_77c628dfee72e555f82d5ef53b733f38.html; sourceTree = "<group>"; };
		24A2FEF40F90D1DC003BB5A7 /* dir_f81105d3b854bea570aaf3bae5cb64c1.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = dir_f81105d3b854bea570aaf3bae5cb64c1.html; sourceTree = "<group>"; };
		24A2FEF50F90D1DC003BB5A7 /* dir_fa0454ab79b4262333bf837ea3d765e9.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = dir_fa0454ab79b4262333bf837ea3d765e9.html; sourceTree = "<group>"; };
		24A2FEF60F90D1DC003BB5A7 /* dirs.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = dirs.html; sourceTree = "<group>"; };
		24A2FEF70F90D1DC003BB5A7 /* doc_8h.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = doc_8h.html; sourceTree = "<group>"; };
		24A2FEF80F90D1DC003BB5A7 /* doxygen.css */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.css; path = doxygen.css; sourceTree = "<group>"; };
		24A2FEF90F90D1DC003BB5A7 /* doxygen.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = doxygen.png; sourceTree = "<group>"; };
		24A2FEFA0F90D1DC003BB5A7 /* files.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = files.html; sourceTree = "<group>"; };
		24A2FEFB0F90D1DC003BB5A7 /* ftv2blank.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ftv2blank.png; sourceTree = "<group>"; };
		24A2FEFC0F90D1DC003BB5A7 /* ftv2doc.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ftv2doc.png; sourceTree = "<group>"; };
		24A2FEFD0F90D1DC003BB5A7 /* ftv2folderclosed.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ftv2folderclosed.png; sourceTree = "<group>"; };
		24A2FEFE0F90D1DC003BB5A7 /* ftv2folderopen.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ftv2folderopen.png; sourceTree = "<group>"; };
		24A2FEFF0F90D1DC003BB5A7 /* ftv2lastnode.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ftv2lastnode.png; sourceTree = "<group>"; };
		24A2FF000F90D1DC003BB5A7 /* ftv2link.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ftv2link.png; sourceTree = "<group>"; };
		24A2FF010F90D1DC003BB5A7 /* ftv2mlastnode.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ftv2mlastnode.png; sourceTree = "<group>"; };
		24A2FF020F90D1DC003BB5A7 /* ftv2mnode.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ftv2mnode.png; sourceTree = "<group>"; };
		24A2FF030F90D1DC003BB5A7 /* ftv2node.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ftv2node.png; sourceTree = "<group>"; };
		24A2FF040F90D1DC003BB5A7 /* ftv2plastnode.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ftv2plastnode.png; sourceTree = "<group>"; };
		24A2FF050F90D1DC003BB5A7 /* ftv2pnode.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ftv2pnode.png; sourceTree = "<group>"; };
		24A2FF060F90D1DC003BB5A7 /* ftv2vertline.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ftv2vertline.png; sourceTree = "<group>"; };
		24A2FF070F90D1DC003BB5A7 /* functions.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = functions.html; sourceTree = "<group>"; };
		24A2FF080F90D1DC003BB5A7 /* functions_0x62.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = functions_0x62.html; sourceTree = "<group>"; };
		24A2FF090F90D1DC003BB5A7 /* functions_0x63.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = functions_0x63.html; sourceTree = "<group>"; };
		24A2FF0A0F90D1DC003BB5A7 /* functions_0x64.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = functions_0x64.html; sourceTree = "<group>"; };
		24A2FF0B0F90D1DC003BB5A7 /* functions_0x65.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = functions_0x65.html; sourceTree = "<group>"; };
		24A2FF0C0F90D1DC003BB5A7 /* functions_0x66.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = functions_0x66.html; sourceTree = "<group>"; };
		24A2FF0D0F90D1DC003BB5A7 /* functions_0x67.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = functions_0x67.html; sourceTree = "<group>"; };
		24A2FF0E0F90D1DC003BB5A7 /* functions_0x68.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = functions_0x68.html; sourceTree = "<group>"; };
		24A2FF0F0F90D1DC003BB5A7 /* functions_0x69.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = functions_0x69.html; sourceTree = "<group>"; };
		24A2FF100F90D1DC003BB5A7 /* functions_0x6b.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = functions_0x6b.html; sourceTree = "<group>"; };
		24A2FF110F90D1DC003BB5A7 /* functions_0x6c.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = functions_0x6c.html; sourceTree = "<group>"; };
		24A2FF120F90D1DC003BB5A7 /* functions_0x6d.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = functions_0x6d.html; sourceTree = "<group>"; };
		24A2FF130F90D1DC003BB5A7 /* functions_0x6e.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = functions_0x6e.html; sourceTree = "<group>"; };
		24A2FF140F90D1DC003BB5A7 /* functions_0x6f.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = functions_0x6f.html; sourceTree = "<group>"; };
		24A2FF150F90D1DC003BB5A7 /* functions_0x70.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = functions_0x70.html; sourceTree = "<group>"; };
		24A2FF160F90D1DC003BB5A7 /* functions_0x72.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = functions_0x72.html; sourceTree = "<group>"; };
		24A2FF170F90D1DC003BB5A7 /* functions_0x73.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = functions_0x73.html; sourceTree = "<group>"; };
		24A2FF180F90D1DC003BB5A7 /* functions_0x74.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = functions_0x74.html; sourceTree = "<group>"; };
		24A2FF190F90D1DC003BB5A7 /* functions_0x75.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = functions_0x75.html; sourceTree = "<group>"; };
		24A2FF1A0F90D1DC003BB5A7 /* functions_0x76.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = functions_0x76.html; sourceTree = "<group>"; };
		24A2FF1B0F90D1DC003BB5A7 /* functions_0x77.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = functions_0x77.html; sourceTree = "<group>"; };
		24A2FF1C0F90D1DC003BB5A7 /* functions_0x78.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = functions_0x78.html; sourceTree = "<group>"; };
		24A2FF1D0F90D1DC003BB5A7 /* functions_0x79.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = functions_0x79.html; sourceTree = "<group>"; };
		24A2FF1E0F90D1DC003BB5A7 /* functions_0x7e.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = functions_0x7e.html; sourceTree = "<group>"; };
		24A2FF1F0F90D1DC003BB5A7 /* functions_func.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = functions_func.html; sourceTree = "<group>"; };
		24A2FF200F90D1DC003BB5A7 /* functions_vars.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = functions_vars.html; sourceTree = "<group>"; };
		24A2FF210F90D1DC003BB5A7 /* globals.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = globals.html; sourceTree = "<group>"; };
		24A2FF220F90D1DC003BB5A7 /* globals_0x62.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = globals_0x62.html; sourceTree = "<group>"; };
		24A2FF230F90D1DC003BB5A7 /* globals_0x63.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = globals_0x63.html; sourceTree = "<group>"; };
		24A2FF240F90D1DC003BB5A7 /* globals_0x64.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = globals_0x64.html; sourceTree = "<group>"; };
		24A2FF250F90D1DC003BB5A7 /* globals_0x65.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = globals_0x65.html; sourceTree = "<group>"; };
		24A2FF260F90D1DC003BB5A7 /* globals_0x66.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = globals_0x66.html; sourceTree = "<group>"; };
		24A2FF270F90D1DC003BB5A7 /* globals_0x6b.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = globals_0x6b.html; sourceTree = "<group>"; };
		24A2FF280F90D1DC003BB5A7 /* globals_0x6d.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = globals_0x6d.html; sourceTree = "<group>"; };
		24A2FF290F90D1DC003BB5A7 /* globals_0x74.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = globals_0x74.html; sourceTree = "<group>"; };
		24A2FF2A0F90D1DC003BB5A7 /* globals_0x76.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = globals_0x76.html; sourceTree = "<group>"; };
		24A2FF2B0F90D1DC003BB5A7 /* globals_defs.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = globals_defs.html; sourceTree = "<group>"; };
		24A2FF2C0F90D1DC003BB5A7 /* globals_enum.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = globals_enum.html; sourceTree = "<group>"; };
		24A2FF2D0F90D1DC003BB5A7 /* globals_eval.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = globals_eval.html; sourceTree = "<group>"; };
		24A2FF2E0F90D1DC003BB5A7 /* globals_eval_0x65.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = globals_eval_0x65.html; sourceTree = "<group>"; };
		24A2FF2F0F90D1DC003BB5A7 /* globals_eval_0x6b.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = globals_eval_0x6b.html; sourceTree = "<group>"; };
		24A2FF300F90D1DC003BB5A7 /* globals_eval_0x6d.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = globals_eval_0x6d.html; sourceTree = "<group>"; };
		24A2FF310F90D1DC003BB5A7 /* globals_eval_0x76.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = globals_eval_0x76.html; sourceTree = "<group>"; };
		24A2FF320F90D1DC003BB5A7 /* globals_func.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = globals_func.html; sourceTree = "<group>"; };
		24A2FF330F90D1DC003BB5A7 /* globals_type.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = globals_type.html; sourceTree = "<group>"; };
		24A2FF340F90D1DC003BB5A7 /* globals_vars.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = globals_vars.html; sourceTree = "<group>"; };
		24A2FF350F90D1DC003BB5A7 /* hierarchy.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = hierarchy.html; sourceTree = "<group>"; };
		24A2FF360F90D1DC003BB5A7 /* history.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = history.html; sourceTree = "<group>"; };
		24A2FF370F90D1DC003BB5A7 /* index.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = index.html; sourceTree = "<group>"; };
		24A2FF380F90D1DC003BB5A7 /* Initialisation.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = Initialisation.gif; sourceTree = "<group>"; };
		24A2FF390F90D1DC003BB5A7 /* intro.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = intro.html; sourceTree = "<group>"; };
		24A2FF3A0F90D1DC003BB5A7 /* IOchange.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = IOchange.gif; sourceTree = "<group>"; };
		24A2FF3B0F90D1DC003BB5A7 /* license.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = license.html; sourceTree = "<group>"; };
		24A2FF3C0F90D1DC003BB5A7 /* maceditor.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = maceditor.html; sourceTree = "<group>"; };
		24A2FF3D0F90D1DC003BB5A7 /* main.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = main.html; sourceTree = "<group>"; };
		24A2FF3E0F90D1DC003BB5A7 /* namespace_host_can_dos.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = namespace_host_can_dos.html; sourceTree = "<group>"; };
		24A2FF3F0F90D1DC003BB5A7 /* namespace_plug_can_dos.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = namespace_plug_can_dos.html; sourceTree = "<group>"; };
		24A2FF400F90D1DC003BB5A7 /* namespacemembers.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = namespacemembers.html; sourceTree = "<group>"; };
		24A2FF410F90D1DC003BB5A7 /* namespacemembers_vars.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = namespacemembers_vars.html; sourceTree = "<group>"; };
		24A2FF420F90D1DC003BB5A7 /* namespaces.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = namespaces.html; sourceTree = "<group>"; };
		24A2FF430F90D1DC003BB5A7 /* Offlineprocessing.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = Offlineprocessing.gif; sourceTree = "<group>"; };
		24A2FF440F90D1DC003BB5A7 /* others.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = others.html; sourceTree = "<group>"; };
		24A2FF450F90D1DC003BB5A7 /* pages.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = pages.html; sourceTree = "<group>"; };
		24A2FF460F90D1DC003BB5A7 /* Sampleratechange.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = Sampleratechange.gif; sourceTree = "<group>"; };
		24A2FF470F90D1DC003BB5A7 /* sequences.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = sequences.html; sourceTree = "<group>"; };
		24A2FF480F90D1DC003BB5A7 /* SpeakerarrangementnegotiationforVSTfx.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = SpeakerarrangementnegotiationforVSTfx.gif; sourceTree = "<group>"; };
		24A2FF490F90D1DC003BB5A7 /* struct_a_effect-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = "struct_a_effect-members.html"; sourceTree = "<group>"; };
		24A2FF4A0F90D1DC003BB5A7 /* struct_a_effect.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = struct_a_effect.html; sourceTree = "<group>"; };
		24A2FF4B0F90D1DC003BB5A7 /* struct_e_rect-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = "struct_e_rect-members.html"; sourceTree = "<group>"; };
		24A2FF4C0F90D1DC003BB5A7 /* struct_e_rect.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = struct_e_rect.html; sourceTree = "<group>"; };
		24A2FF4D0F90D1DC003BB5A7 /* struct_midi_key_name-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = "struct_midi_key_name-members.html"; sourceTree = "<group>"; };
		24A2FF4E0F90D1DC003BB5A7 /* struct_midi_key_name.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = struct_midi_key_name.html; sourceTree = "<group>"; };
		24A2FF4F0F90D1DC003BB5A7 /* struct_midi_program_category-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = "struct_midi_program_category-members.html"; sourceTree = "<group>"; };
		24A2FF500F90D1DC003BB5A7 /* struct_midi_program_category.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = struct_midi_program_category.html; sourceTree = "<group>"; };
		24A2FF510F90D1DC003BB5A7 /* struct_midi_program_name-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = "struct_midi_program_name-members.html"; sourceTree = "<group>"; };
		24A2FF520F90D1DC003BB5A7 /* struct_midi_program_name.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = struct_midi_program_name.html; sourceTree = "<group>"; };
		24A2FF530F90D1DC003BB5A7 /* struct_vst_audio_file-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = "struct_vst_audio_file-members.html"; sourceTree = "<group>"; };
		24A2FF540F90D1DC003BB5A7 /* struct_vst_audio_file.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = struct_vst_audio_file.html; sourceTree = "<group>"; };
		24A2FF550F90D1DC003BB5A7 /* struct_vst_audio_file_marker-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = "struct_vst_audio_file_marker-members.html"; sourceTree = "<group>"; };
		24A2FF560F90D1DC003BB5A7 /* struct_vst_audio_file_marker.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = struct_vst_audio_file_marker.html; sourceTree = "<group>"; };
		24A2FF570F90D1DC003BB5A7 /* struct_vst_event-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = "struct_vst_event-members.html"; sourceTree = "<group>"; };
		24A2FF580F90D1DC003BB5A7 /* struct_vst_event.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = struct_vst_event.html; sourceTree = "<group>"; };
		24A2FF590F90D1DD003BB5A7 /* struct_vst_events-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = "struct_vst_events-members.html"; sourceTree = "<group>"; };
		24A2FF5A0F90D1DD003BB5A7 /* struct_vst_events.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = struct_vst_events.html; sourceTree = "<group>"; };
		24A2FF5B0F90D1DD003BB5A7 /* struct_vst_file_select-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = "struct_vst_file_select-members.html"; sourceTree = "<group>"; };
		24A2FF5C0F90D1DD003BB5A7 /* struct_vst_file_select.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = struct_vst_file_select.html; sourceTree = "<group>"; };
		24A2FF5D0F90D1DD003BB5A7 /* struct_vst_file_type-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = "struct_vst_file_type-members.html"; sourceTree = "<group>"; };
		24A2FF5E0F90D1DD003BB5A7 /* struct_vst_file_type.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = struct_vst_file_type.html; sourceTree = "<group>"; };
		24A2FF5F0F90D1DD003BB5A7 /* struct_vst_key_code-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = "struct_vst_key_code-members.html"; sourceTree = "<group>"; };
		24A2FF600F90D1DD003BB5A7 /* struct_vst_key_code.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = struct_vst_key_code.html; sourceTree = "<group>"; };
		24A2FF610F90D1DD003BB5A7 /* struct_vst_midi_event-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = "struct_vst_midi_event-members.html"; sourceTree = "<group>"; };
		24A2FF620F90D1DD003BB5A7 /* struct_vst_midi_event.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = struct_vst_midi_event.html; sourceTree = "<group>"; };
		24A2FF630F90D1DD003BB5A7 /* struct_vst_midi_sysex_event-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = "struct_vst_midi_sysex_event-members.html"; sourceTree = "<group>"; };
		24A2FF640F90D1DD003BB5A7 /* struct_vst_midi_sysex_event.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = struct_vst_midi_sysex_event.html; sourceTree = "<group>"; };
		24A2FF650F90D1DD003BB5A7 /* struct_vst_offline_task-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = "struct_vst_offline_task-members.html"; sourceTree = "<group>"; };
		24A2FF660F90D1DD003BB5A7 /* struct_vst_offline_task.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = struct_vst_offline_task.html; sourceTree = "<group>"; };
		24A2FF670F90D1DD003BB5A7 /* struct_vst_parameter_properties-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = "struct_vst_parameter_properties-members.html"; sourceTree = "<group>"; };
		24A2FF680F90D1DD003BB5A7 /* struct_vst_parameter_properties.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = struct_vst_parameter_properties.html; sourceTree = "<group>"; };
		24A2FF690F90D1DD003BB5A7 /* struct_vst_patch_chunk_info-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = "struct_vst_patch_chunk_info-members.html"; sourceTree = "<group>"; };
		24A2FF6A0F90D1DD003BB5A7 /* struct_vst_patch_chunk_info.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = struct_vst_patch_chunk_info.html; sourceTree = "<group>"; };
		24A2FF6B0F90D1DD003BB5A7 /* struct_vst_pin_properties-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = "struct_vst_pin_properties-members.html"; sourceTree = "<group>"; };
		24A2FF6C0F90D1DD003BB5A7 /* struct_vst_pin_properties.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = struct_vst_pin_properties.html; sourceTree = "<group>"; };
		24A2FF6D0F90D1DD003BB5A7 /* struct_vst_speaker_arrangement-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = "struct_vst_speaker_arrangement-members.html"; sourceTree = "<group>"; };
		24A2FF6E0F90D1DD003BB5A7 /* struct_vst_speaker_arrangement.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = struct_vst_speaker_arrangement.html; sourceTree = "<group>"; };
		24A2FF6F0F90D1DD003BB5A7 /* struct_vst_speaker_properties-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = "struct_vst_speaker_properties-members.html"; sourceTree = "<group>"; };
		24A2FF700F90D1DD003BB5A7 /* struct_vst_speaker_properties.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = struct_vst_speaker_properties.html; sourceTree = "<group>"; };
		24A2FF710F90D1DD003BB5A7 /* struct_vst_time_info-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = "struct_vst_time_info-members.html"; sourceTree = "<group>"; };
		24A2FF720F90D1DD003BB5A7 /* struct_vst_time_info.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = struct_vst_time_info.html; sourceTree = "<group>"; };
		24A2FF730F90D1DD003BB5A7 /* struct_vst_variable_io-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = "struct_vst_variable_io-members.html"; sourceTree = "<group>"; };
		24A2FF740F90D1DD003BB5A7 /* struct_vst_variable_io.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = struct_vst_variable_io.html; sourceTree = "<group>"; };
		24A2FF750F90D1DD003BB5A7 /* struct_vst_window-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = "struct_vst_window-members.html"; sourceTree = "<group>"; };
		24A2FF760F90D1DD003BB5A7 /* struct_vst_window.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = struct_vst_window.html; sourceTree = "<group>"; };
		24A2FF770F90D1DD003BB5A7 /* structfx_bank-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = "structfx_bank-members.html"; sourceTree = "<group>"; };
		24A2FF780F90D1DD003BB5A7 /* structfx_bank.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = structfx_bank.html; sourceTree = "<group>"; };
		24A2FF790F90D1DD003BB5A7 /* structfx_program-members.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = "structfx_program-members.html"; sourceTree = "<group>"; };
		24A2FF7A0F90D1DD003BB5A7 /* structfx_program.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = structfx_program.html; sourceTree = "<group>"; };
		24A2FF7B0F90D1DD003BB5A7 /* tab_b.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = tab_b.gif; sourceTree = "<group>"; };
		24A2FF7C0F90D1DD003BB5A7 /* tab_l.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = tab_l.gif; sourceTree = "<group>"; };
		24A2FF7D0F90D1DD003BB5A7 /* tab_r.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = tab_r.gif; sourceTree = "<group>"; };
		24A2FF7E0F90D1DD003BB5A7 /* tabs.css */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.css; path = tabs.css; sourceTree = "<group>"; };
		24A2FF7F0F90D1DD003BB5A7 /* Termination.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = Termination.gif; sourceTree = "<group>"; };
		24A2FF800F90D1DD003BB5A7 /* thanks.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = thanks.html; sourceTree = "<group>"; };
		24A2FF810F90D1DD003BB5A7 /* tree.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = tree.html; sourceTree = "<group>"; };
		24A2FF820F90D1DD003BB5A7 /* TurnOff.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = TurnOff.gif; sourceTree = "<group>"; };
		24A2FF830F90D1DD003BB5A7 /* TurnOn.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = TurnOn.gif; sourceTree = "<group>"; };
		24A2FF840F90D1DD003BB5A7 /* vstfxstore_8h.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = vstfxstore_8h.html; sourceTree = "<group>"; };
		24A2FF850F90D1DD003BB5A7 /* vstoffline.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = vstoffline.html; sourceTree = "<group>"; };
		24A2FF860F90D1DD003BB5A7 /* vstparamstruct.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = vstparamstruct.html; sourceTree = "<group>"; };
		24A2FF870F90D1DD003BB5A7 /* vstpluglogo.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = vstpluglogo.jpg; sourceTree = "<group>"; };
		24A2FF880F90D1DD003BB5A7 /* vstplugmain_8cpp.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = vstplugmain_8cpp.html; sourceTree = "<group>"; };
		24A2FF890F90D1DD003BB5A7 /* whatsnew.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = whatsnew.html; sourceTree = "<group>"; };
		24A2FF8A0F90D1DD003BB5A7 /* sdk.menu.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = sdk.menu.html; sourceTree = "<group>"; };
		24A2FF8B0F90D1DD003BB5A7 /* sdk.overview.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = sdk.overview.html; sourceTree = "<group>"; };
		24A2FF8C0F90D1DD003BB5A7 /* sdkdoc.css */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.css; path = sdkdoc.css; sourceTree = "<group>"; };
		24A2FF8D0F90D1DD003BB5A7 /* VST Licensing Agreement.rtf */ = {isa = PBXFileReference; lastKnownFileType = text.rtf; path = "VST Licensing Agreement.rtf"; sourceTree = "<group>"; };
		24A2FF8E0F90D1DD003BB5A7 /* index.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = index.html; sourceTree = "<group>"; };
		24A2FF910F90D1DD003BB5A7 /* aeffect.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = aeffect.h; sourceTree = "<group>"; };
		24A2FF920F90D1DD003BB5A7 /* aeffectx.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = aeffectx.h; sourceTree = "<group>"; };
		24A2FF930F90D1DD003BB5A7 /* vstfxstore.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vstfxstore.h; sourceTree = "<group>"; };
		24A2FF980F90D1DD003BB5A7 /* adelay.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = adelay.cpp; sourceTree = "<group>"; };
		24A2FF990F90D1DD003BB5A7 /* adelay.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = adelay.h; sourceTree = "<group>"; };
		24A2FF9A0F90D1DD003BB5A7 /* adelaymain.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = adelaymain.cpp; sourceTree = "<group>"; };
		24A2FF9D0F90D1DD003BB5A7 /* bmp00128.bmp */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; path = bmp00128.bmp; sourceTree = "<group>"; };
		24A2FF9E0F90D1DD003BB5A7 /* bmp00129.bmp */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; path = bmp00129.bmp; sourceTree = "<group>"; };
		24A2FF9F0F90D1DD003BB5A7 /* bmp00130.bmp */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; path = bmp00130.bmp; sourceTree = "<group>"; };
		24A2FFA00F90D1DD003BB5A7 /* surrounddelay.rc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = surrounddelay.rc; sourceTree = "<group>"; };
		24A2FFA10F90D1DD003BB5A7 /* sdeditor.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sdeditor.cpp; sourceTree = "<group>"; };
		24A2FFA20F90D1DD003BB5A7 /* sdeditor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sdeditor.h; sourceTree = "<group>"; };
		24A2FFA30F90D1DD003BB5A7 /* surrounddelay.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = surrounddelay.cpp; sourceTree = "<group>"; };
		24A2FFA40F90D1DD003BB5A7 /* surrounddelay.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = surrounddelay.h; sourceTree = "<group>"; };
		24A2FFA60F90D1DD003BB5A7 /* adelay.vcproj */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = adelay.vcproj; sourceTree = "<group>"; };
		24A2FFA70F90D1DD003BB5A7 /* surrounddelay.vcproj */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = surrounddelay.vcproj; sourceTree = "<group>"; };
		24A2FFAA0F90D1DD003BB5A7 /* again.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = again.cpp; sourceTree = "<group>"; };
		24A2FFAB0F90D1DD003BB5A7 /* again.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = again.h; sourceTree = "<group>"; };
		24A2FFAD0F90D1DD003BB5A7 /* again.vcproj */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = again.vcproj; sourceTree = "<group>"; };
		24A2FFAF0F90D1DD003BB5A7 /* minihost-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "minihost-Info.plist"; sourceTree = "<group>"; };
		24A2FFB00F90D1DD003BB5A7 /* vst 2.4 examples.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; path = "vst 2.4 examples.xcodeproj"; sourceTree = "<group>"; };
		24A2FFB30F90D1DD003BB5A7 /* vst2.4Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = vst2.4Info.plist; sourceTree = "<group>"; };
		24A2FFB60F90D1DD003BB5A7 /* minieditor.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = minieditor.cpp; sourceTree = "<group>"; };
		24A2FFB70F90D1DD003BB5A7 /* minihost.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = minihost.cpp; sourceTree = "<group>"; };
		24A2FFB90F90D1DD003BB5A7 /* minihost.vcproj */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = minihost.vcproj; sourceTree = "<group>"; };
		24A2FFBC0F90D1DD003BB5A7 /* vstxsynth.rc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = vstxsynth.rc; sourceTree = "<group>"; };
		24A2FFBD0F90D1DD003BB5A7 /* vstxsynth.vstxml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = vstxsynth.vstxml; sourceTree = "<group>"; };
		24A2FFBF0F90D1DD003BB5A7 /* gmnames.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gmnames.h; sourceTree = "<group>"; };
		24A2FFC00F90D1DD003BB5A7 /* vstxsynth.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = vstxsynth.cpp; sourceTree = "<group>"; };
		24A2FFC10F90D1DD003BB5A7 /* vstxsynth.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vstxsynth.h; sourceTree = "<group>"; };
		24A2FFC20F90D1DD003BB5A7 /* vstxsynthproc.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = vstxsynthproc.cpp; sourceTree = "<group>"; };
		24A2FFC40F90D1DD003BB5A7 /* vstxsynth.vcproj */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = vstxsynth.vcproj; sourceTree = "<group>"; };
		24A2FFC60F90D1DD003BB5A7 /* samples.sln */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = samples.sln; sourceTree = "<group>"; };
		24A2FFC70F90D1DD003BB5A7 /* vstplug.def */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = vstplug.def; sourceTree = "<group>"; };
		24A2FFC90F90D1DD003BB5A7 /* adelay.vcproj */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = adelay.vcproj; sourceTree = "<group>"; };
		24A2FFCA0F90D1DD003BB5A7 /* again.vcproj */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = again.vcproj; sourceTree = "<group>"; };
		24A2FFCB0F90D1DD003BB5A7 /* minihost.vcproj */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = minihost.vcproj; sourceTree = "<group>"; };
		24A2FFCC0F90D1DD003BB5A7 /* samples.sln */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = samples.sln; sourceTree = "<group>"; };
		24A2FFCD0F90D1DD003BB5A7 /* surrounddelay.vcproj */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = surrounddelay.vcproj; sourceTree = "<group>"; };
		24A2FFCE0F90D1DD003BB5A7 /* vstxsynth.vcproj */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = vstxsynth.vcproj; sourceTree = "<group>"; };
		24A2FFD00F90D1DD003BB5A7 /* adelay.dsp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = adelay.dsp; sourceTree = "<group>"; };
		24A2FFD10F90D1DD003BB5A7 /* again.dsp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = again.dsp; sourceTree = "<group>"; };
		24A2FFD20F90D1DD003BB5A7 /* minihost.dsp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = minihost.dsp; sourceTree = "<group>"; };
		24A2FFD30F90D1DD003BB5A7 /* samples.dsw */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = samples.dsw; sourceTree = "<group>"; };
		24A2FFD40F90D1DD003BB5A7 /* surrounddelay.dsp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = surrounddelay.dsp; sourceTree = "<group>"; };
		24A2FFD50F90D1DD003BB5A7 /* vstxsynth.dsp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = vstxsynth.dsp; sourceTree = "<group>"; };
		24A2FFD80F90D1DD003BB5A7 /* aeffeditor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = aeffeditor.h; sourceTree = "<group>"; };
		24A2FFD90F90D1DD003BB5A7 /* audioeffect.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = audioeffect.cpp; sourceTree = "<group>"; };
		24A2FFDA0F90D1DD003BB5A7 /* audioeffect.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = audioeffect.h; sourceTree = "<group>"; };
		24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = audioeffectx.cpp; sourceTree = "<group>"; };
		24A2FFDC0F90D1DD003BB5A7 /* audioeffectx.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = audioeffectx.h; sourceTree = "<group>"; };
		24A2FFDD0F90D1DD003BB5A7 /* vstplugmain.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = vstplugmain.cpp; sourceTree = "<group>"; };
		24A2FFE10F90D1DD003BB5A7 /* audiounit.exp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.exports; path = audiounit.exp; sourceTree = "<group>"; };
		24A2FFE20F90D1DD003BB5A7 /* cw_vst_prefix.pch++ */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = "cw_vst_prefix.pch++"; sourceTree = "<group>"; };
		24A2FFE30F90D1DD003BB5A7 /* drawtest.cw9prj */ = {isa = PBXFileReference; lastKnownFileType = file; path = drawtest.cw9prj; sourceTree = "<group>"; };
		24A2FFE40F90D1DD003BB5A7 /* drawtest.plc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = drawtest.plc; sourceTree = "<group>"; };
		24A2FFE50F90D1DD003BB5A7 /* drawtest.xcode */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; path = drawtest.xcode; sourceTree = "<group>"; };
		24A2FFE80F90D1DD003BB5A7 /* drawtest.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; path = drawtest.xcodeproj; sourceTree = "<group>"; };
		24A2FFEB0F90D1DD003BB5A7 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
		24A2FFEC0F90D1DD003BB5A7 /* xcode_au_prefix.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = xcode_au_prefix.h; sourceTree = "<group>"; };
		24A2FFED0F90D1DD003BB5A7 /* xcode_vst_prefix.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = xcode_vst_prefix.h; sourceTree = "<group>"; };
		24A2FFEF0F90D1DD003BB5A7 /* audiounit.r */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.rez; path = audiounit.r; sourceTree = "<group>"; };
		24A2FFF00F90D1DD003BB5A7 /* bmp00001.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = bmp00001.png; sourceTree = "<group>"; };
		24A2FFF10F90D1DD003BB5A7 /* bmp00100.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = bmp00100.png; sourceTree = "<group>"; };
		24A2FFF20F90D1DD003BB5A7 /* bmp01000.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = bmp01000.png; sourceTree = "<group>"; };
		24A2FFF30F90D1DD003BB5A7 /* bmp10001.bmp */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; path = bmp10001.bmp; sourceTree = "<group>"; };
		24A2FFF40F90D1DD003BB5A7 /* bmp10002.bmp */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; path = bmp10002.bmp; sourceTree = "<group>"; };
		24A2FFF50F90D1DD003BB5A7 /* bmp10003.bmp */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; path = bmp10003.bmp; sourceTree = "<group>"; };
		24A2FFF60F90D1DD003BB5A7 /* bmp10004.bmp */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; path = bmp10004.bmp; sourceTree = "<group>"; };
		24A2FFF70F90D1DD003BB5A7 /* bmp10005.bmp */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; path = bmp10005.bmp; sourceTree = "<group>"; };
		24A2FFF80F90D1DD003BB5A7 /* bmp10006.bmp */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; path = bmp10006.bmp; sourceTree = "<group>"; };
		24A2FFF90F90D1DD003BB5A7 /* bmp10007.bmp */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; path = bmp10007.bmp; sourceTree = "<group>"; };
		24A2FFFA0F90D1DD003BB5A7 /* bmp10008.bmp */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; path = bmp10008.bmp; sourceTree = "<group>"; };
		24A2FFFB0F90D1DD003BB5A7 /* bmp10009.bmp */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; path = bmp10009.bmp; sourceTree = "<group>"; };
		24A2FFFC0F90D1DD003BB5A7 /* bmp10010.bmp */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; path = bmp10010.bmp; sourceTree = "<group>"; };
		24A2FFFD0F90D1DD003BB5A7 /* bmp10011.bmp */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; path = bmp10011.bmp; sourceTree = "<group>"; };
		24A2FFFE0F90D1DD003BB5A7 /* bmp10012.bmp */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; path = bmp10012.bmp; sourceTree = "<group>"; };
		24A2FFFF0F90D1DD003BB5A7 /* bmp10013.bmp */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; path = bmp10013.bmp; sourceTree = "<group>"; };
		24CFB70307E7A0220081BD57 /* PkgInfo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = PkgInfo; path = mac/PkgInfo; sourceTree = "<group>"; };
		24D8286F09A914000093AEF8 /* CoilsProc.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CoilsProc.cpp; path = source/CoilsProc.cpp; sourceTree = "<group>"; };
		24D8287E09A9164A0093AEF8 /* xcode_vst_prefix.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = xcode_vst_prefix.h; path = mac/xcode_vst_prefix.h; sourceTree = SOURCE_ROOT; };
		8D01CCD10486CAD60068D4B7 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = mac/Info.plist; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXGroup section */
		089C166AFE841209C02AAC07 /* FM-Chopper */ = {
			isa = PBXGroup;
			children = (
				089C1671FE841209C02AAC07 /* External Frameworks and Libraries */,
				19C28FB4FE9D528D11CA2CBB /* Products */,
				089C167CFE841241C02AAC07 /* Resources */,
				08FB77ADFE841716C02AAC07 /* Source */,
				24A2FEBB0F90D1DB003BB5A7 /* vstsdk2.4 */,
			);
			name = "FM-Chopper";
			sourceTree = "<group>";
		};
		089C1671FE841209C02AAC07 /* External Frameworks and Libraries */ = {
			isa = PBXGroup;
			children = (
				2434720A098313350063BBF1 /* QuickTime.framework */,
				08EA7FFBFE8413EDC02AAC07 /* Carbon.framework */,
			);
			name = "External Frameworks and Libraries";
			sourceTree = "<group>";
		};
		089C167CFE841241C02AAC07 /* Resources */ = {
			isa = PBXGroup;
			children = (
				24D8287E09A9164A0093AEF8 /* xcode_vst_prefix.h */,
				24CFB70307E7A0220081BD57 /* PkgInfo */,
				8D01CCD10486CAD60068D4B7 /* Info.plist */,
			);
			name = Resources;
			sourceTree = "<group>";
		};
		08FB77ADFE841716C02AAC07 /* Source */ = {
			isa = PBXGroup;
			children = (
				2407DEB6089929BA00EB68BF /* Coils.cpp */,
				24D8286F09A914000093AEF8 /* CoilsProc.cpp */,
				245463B80991757100464AD3 /* Coils.h */,
			);
			name = Source;
			sourceTree = "<group>";
		};
		19C28FB4FE9D528D11CA2CBB /* Products */ = {
			isa = PBXGroup;
			children = (
				2407DE920899296600EB68BF /* Coils.vst */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		24A200030F90D1DD003BB5A7 /* source */ = {
			isa = PBXGroup;
			children = (
				24A200040F90D1DD003BB5A7 /* controlsgui.cpp */,
				24A200050F90D1DD003BB5A7 /* controlsgui.h */,
				24A200060F90D1DD003BB5A7 /* pdrawtesteditor.cpp */,
				24A200070F90D1DD003BB5A7 /* pdrawtesteditor.h */,
				24A200080F90D1DD003BB5A7 /* pdrawtesteffect.cpp */,
				24A200090F90D1DD003BB5A7 /* pdrawtesteffect.h */,
				24A2000A0F90D1DD003BB5A7 /* pdrawtestmain.cpp */,
				24A2000B0F90D1DD003BB5A7 /* pdrawtestview.cpp */,
				24A2000C0F90D1DD003BB5A7 /* pdrawtestview.h */,
				24A2000D0F90D1DD003BB5A7 /* pprimitivesviews.cpp */,
				24A2000E0F90D1DD003BB5A7 /* pprimitivesviews.h */,
			);
			name = source;
			path = /vstsdk2.4/vstgui.sf/drawtest/source;
			sourceTree = "<absolute>";
		};
		24A2000F0F90D1DD003BB5A7 /* win */ = {
			isa = PBXGroup;
			children = (
				24A200100F90D1DD003BB5A7 /* drawtest.def */,
				24A200110F90D1DD003BB5A7 /* drawtest.rc */,
				24A200120F90D1DD003BB5A7 /* drawtest.vcproj */,
			);
			name = win;
			path = /vstsdk2.4/vstgui.sf/drawtest/win;
			sourceTree = "<absolute>";
		};
		24A200130F90D1DD003BB5A7 /* win.vc6 */ = {
			isa = PBXGroup;
			children = (
				24A200140F90D1DD003BB5A7 /* drawtest.dsp */,
				24A200150F90D1DD003BB5A7 /* drawtest.dsw */,
			);
			name = win.vc6;
			path = /vstsdk2.4/vstgui.sf/drawtest/win.vc6;
			sourceTree = "<absolute>";
		};
		24A200160F90D1DD003BB5A7 /* vstgui */ = {
			isa = PBXGroup;
			children = (
				24A200170F90D1DD003BB5A7 /* aeffguieditor.cpp */,
				24A200180F90D1DD003BB5A7 /* aeffguieditor.h */,
				24A200190F90D1DD003BB5A7 /* cfileselector.cpp */,
				24A2001A0F90D1DD003BB5A7 /* cfileselector.h */,
				24A2001B0F90D1DD003BB5A7 /* Changelog */,
				24A2001C0F90D1DD003BB5A7 /* cscrollview.cpp */,
				24A2001D0F90D1DD003BB5A7 /* cscrollview.h */,
				24A2001E0F90D1DD003BB5A7 /* ctabview.cpp */,
				24A2001F0F90D1DD003BB5A7 /* ctabview.h */,
				24A200200F90D1DD003BB5A7 /* Documentation */,
				24A201460F90D1DE003BB5A7 /* plugguieditor.cpp */,
				24A201470F90D1DE003BB5A7 /* plugguieditor.h */,
				24A201480F90D1DE003BB5A7 /* vstcontrols.cpp */,
				24A201490F90D1DE003BB5A7 /* vstcontrols.h */,
				24A2014A0F90D1DE003BB5A7 /* vstgui.cpp */,
				24A2014B0F90D1DE003BB5A7 /* vstgui.h */,
				24A2014C0F90D1DE003BB5A7 /* vstkeycode.h */,
				24A2014D0F90D1DE003BB5A7 /* vstplugscarbon.h */,
				24A2014E0F90D1DE003BB5A7 /* vstplugsmac.h */,
				24A2014F0F90D1DE003BB5A7 /* vstplugsmacho.h */,
				24A201500F90D1DE003BB5A7 /* vstplugsquartz.h */,
			);
			name = vstgui;
			path = /vstsdk2.4/vstgui.sf/vstgui;
			sourceTree = "<absolute>";
		};
		24A200200F90D1DD003BB5A7 /* Documentation */ = {
			isa = PBXGroup;
			children = (
				24A200210F90D1DD003BB5A7 /* html */,
				24A201440F90D1DE003BB5A7 /* index.html */,
				24A201450F90D1DE003BB5A7 /* Migrating from 2.3.rtf */,
			);
			name = Documentation;
			path = /vstsdk2.4/vstgui.sf/vstgui/Documentation;
			sourceTree = "<absolute>";
		};
		24A200210F90D1DD003BB5A7 /* html */ = {
			isa = PBXGroup;
			children = (
				24A200220F90D1DD003BB5A7 /* aeffguieditor_8cpp.html */,
				24A200230F90D1DD003BB5A7 /* aeffguieditor_8h.html */,
				24A200240F90D1DD003BB5A7 /* annotated.html */,
				24A200250F90D1DD003BB5A7 /* cfileselector_8cpp.html */,
				24A200260F90D1DD003BB5A7 /* cfileselector_8h.html */,
				24A200270F90D1DD003BB5A7 /* class_a_eff_g_u_i_editor-members.html */,
				24A200280F90D1DD003BB5A7 /* class_a_eff_g_u_i_editor.html */,
				24A200290F90D1DD003BB5A7 /* class_c_anim_knob-members.html */,
				24A2002A0F90D1DD003BB5A7 /* class_c_anim_knob.html */,
				24A2002B0F90D1DD003BB5A7 /* class_c_anim_knob.png */,
				24A2002C0F90D1DD003BB5A7 /* class_c_attribute_list_entry-members.html */,
				24A2002D0F90D1DD003BB5A7 /* class_c_attribute_list_entry.html */,
				24A2002E0F90D1DD003BB5A7 /* class_c_auto_animation-members.html */,
				24A2002F0F90D1DD003BB5A7 /* class_c_auto_animation.html */,
				24A200300F90D1DD003BB5A7 /* class_c_auto_animation.png */,
				24A200310F90D1DD003BB5A7 /* class_c_bitmap-members.html */,
				24A200320F90D1DD003BB5A7 /* class_c_bitmap.html */,
				24A200330F90D1DD003BB5A7 /* class_c_bitmap.png */,
				24A200340F90D1DD003BB5A7 /* class_c_c_view-members.html */,
				24A200350F90D1DD003BB5A7 /* class_c_c_view.html */,
				24A200360F90D1DD003BB5A7 /* class_c_control-members.html */,
				24A200370F90D1DD003BB5A7 /* class_c_control.html */,
				24A200380F90D1DD003BB5A7 /* class_c_control.png */,
				24A200390F90D1DD003BB5A7 /* class_c_control_listener-members.html */,
				24A2003A0F90D1DD003BB5A7 /* class_c_control_listener.html */,
				24A2003B0F90D1DD003BB5A7 /* class_c_control_listener.png */,
				24A2003C0F90D1DD003BB5A7 /* class_c_drag_container-members.html */,
				24A2003D0F90D1DD003BB5A7 /* class_c_drag_container.html */,
				24A2003E0F90D1DD003BB5A7 /* class_c_drag_container.png */,
				24A2003F0F90D1DD003BB5A7 /* class_c_draw_context-members.html */,
				24A200400F90D1DD003BB5A7 /* class_c_draw_context.html */,
				24A200410F90D1DD003BB5A7 /* class_c_draw_context.png */,
				24A200420F90D1DD003BB5A7 /* class_c_file_selector-members.html */,
				24A200430F90D1DD003BB5A7 /* class_c_file_selector.html */,
				24A200440F90D1DD003BB5A7 /* class_c_frame-members.html */,
				24A200450F90D1DD003BB5A7 /* class_c_frame.html */,
				24A200460F90D1DD003BB5A7 /* class_c_frame.png */,
				24A200470F90D1DD003BB5A7 /* class_c_horizontal_slider-members.html */,
				24A200480F90D1DD003BB5A7 /* class_c_horizontal_slider.html */,
				24A200490F90D1DD003BB5A7 /* class_c_horizontal_slider.png */,
				24A2004A0F90D1DD003BB5A7 /* class_c_horizontal_switch-members.html */,
				24A2004B0F90D1DD003BB5A7 /* class_c_horizontal_switch.html */,
				24A2004C0F90D1DD003BB5A7 /* class_c_horizontal_switch.png */,
				24A2004D0F90D1DD003BB5A7 /* class_c_kick_button-members.html */,
				24A2004E0F90D1DD003BB5A7 /* class_c_kick_button.html */,
				24A2004F0F90D1DD003BB5A7 /* class_c_kick_button.png */,
				24A200500F90D1DD003BB5A7 /* class_c_knob-members.html */,
				24A200510F90D1DD003BB5A7 /* class_c_knob.html */,
				24A200520F90D1DD003BB5A7 /* class_c_knob.png */,
				24A200530F90D1DD003BB5A7 /* class_c_movie_bitmap-members.html */,
				24A200540F90D1DD003BB5A7 /* class_c_movie_bitmap.html */,
				24A200550F90D1DD003BB5A7 /* class_c_movie_bitmap.png */,
				24A200560F90D1DD003BB5A7 /* class_c_movie_button-members.html */,
				24A200570F90D1DD003BB5A7 /* class_c_movie_button.html */,
				24A200580F90D1DD003BB5A7 /* class_c_movie_button.png */,
				24A200590F90D1DD003BB5A7 /* class_c_offscreen_context-members.html */,
				24A2005A0F90D1DD003BB5A7 /* class_c_offscreen_context.html */,
				24A2005B0F90D1DD003BB5A7 /* class_c_offscreen_context.png */,
				24A2005C0F90D1DD003BB5A7 /* class_c_on_off_button-members.html */,
				24A2005D0F90D1DD003BB5A7 /* class_c_on_off_button.html */,
				24A2005E0F90D1DD003BB5A7 /* class_c_on_off_button.png */,
				24A2005F0F90D1DD003BB5A7 /* class_c_option_menu-members.html */,
				24A200600F90D1DD003BB5A7 /* class_c_option_menu.html */,
				24A200610F90D1DD003BB5A7 /* class_c_option_menu.png */,
				24A200620F90D1DD003BB5A7 /* class_c_option_menu_scheme-members.html */,
				24A200630F90D1DD003BB5A7 /* class_c_option_menu_scheme.html */,
				24A200640F90D1DD003BB5A7 /* class_c_option_menu_scheme.png */,
				24A200650F90D1DD003BB5A7 /* class_c_param_display-members.html */,
				24A200660F90D1DD003BB5A7 /* class_c_param_display.html */,
				24A200670F90D1DD003BB5A7 /* class_c_param_display.png */,
				24A200680F90D1DD003BB5A7 /* class_c_reference_counter-members.html */,
				24A200690F90D1DD003BB5A7 /* class_c_reference_counter.html */,
				24A2006A0F90D1DD003BB5A7 /* class_c_reference_counter.png */,
				24A2006B0F90D1DD003BB5A7 /* class_c_rocker_switch-members.html */,
				24A2006C0F90D1DD003BB5A7 /* class_c_rocker_switch.html */,
				24A2006D0F90D1DD003BB5A7 /* class_c_rocker_switch.png */,
				24A2006E0F90D1DD003BB5A7 /* class_c_scroll_container-members.html */,
				24A2006F0F90D1DD003BB5A7 /* class_c_scroll_container.html */,
				24A200700F90D1DD003BB5A7 /* class_c_scroll_container.png */,
				24A200710F90D1DD003BB5A7 /* class_c_scroll_view-members.html */,
				24A200720F90D1DD003BB5A7 /* class_c_scroll_view.html */,
				24A200730F90D1DD003BB5A7 /* class_c_scroll_view.png */,
				24A200740F90D1DD003BB5A7 /* class_c_scrollbar-members.html */,
				24A200750F90D1DD003BB5A7 /* class_c_scrollbar.html */,
				24A200760F90D1DD003BB5A7 /* class_c_scrollbar.png */,
				24A200770F90D1DD003BB5A7 /* class_c_slider-members.html */,
				24A200780F90D1DD003BB5A7 /* class_c_slider.html */,
				24A200790F90D1DD003BB5A7 /* class_c_slider.png */,
				24A2007A0F90D1DD003BB5A7 /* class_c_special_digit-members.html */,
				24A2007B0F90D1DD003BB5A7 /* class_c_special_digit.html */,
				24A2007C0F90D1DD003BB5A7 /* class_c_special_digit.png */,
				24A2007D0F90D1DD003BB5A7 /* class_c_splash_screen-members.html */,
				24A2007E0F90D1DD003BB5A7 /* class_c_splash_screen.html */,
				24A2007F0F90D1DD003BB5A7 /* class_c_splash_screen.png */,
				24A200800F90D1DD003BB5A7 /* class_c_splash_screen_view-members.html */,
				24A200810F90D1DD003BB5A7 /* class_c_splash_screen_view.html */,
				24A200820F90D1DD003BB5A7 /* class_c_splash_screen_view.png */,
				24A200830F90D1DD003BB5A7 /* class_c_tab_button-members.html */,
				24A200840F90D1DD003BB5A7 /* class_c_tab_button.html */,
				24A200850F90D1DD003BB5A7 /* class_c_tab_button.png */,
				24A200860F90D1DD003BB5A7 /* class_c_tab_child_view-members.html */,
				24A200870F90D1DD003BB5A7 /* class_c_tab_child_view.html */,
				24A200880F90D1DD003BB5A7 /* class_c_tab_child_view.png */,
				24A200890F90D1DD003BB5A7 /* class_c_tab_view-members.html */,
				24A2008A0F90D1DD003BB5A7 /* class_c_tab_view.html */,
				24A2008B0F90D1DD003BB5A7 /* class_c_tab_view.png */,
				24A2008C0F90D1DD003BB5A7 /* class_c_text_edit-members.html */,
				24A2008D0F90D1DD003BB5A7 /* class_c_text_edit.html */,
				24A2008E0F90D1DD003BB5A7 /* class_c_text_edit.png */,
				24A2008F0F90D1DD003BB5A7 /* class_c_text_label-members.html */,
				24A200900F90D1DD003BB5A7 /* class_c_text_label.html */,
				24A200910F90D1DD003BB5A7 /* class_c_text_label.png */,
				24A200920F90D1DD003BB5A7 /* class_c_vertical_slider-members.html */,
				24A200930F90D1DD003BB5A7 /* class_c_vertical_slider.html */,
				24A200940F90D1DD003BB5A7 /* class_c_vertical_slider.png */,
				24A200950F90D1DD003BB5A7 /* class_c_vertical_switch-members.html */,
				24A200960F90D1DD003BB5A7 /* class_c_vertical_switch.html */,
				24A200970F90D1DD003BB5A7 /* class_c_vertical_switch.png */,
				24A200980F90D1DD003BB5A7 /* class_c_view-members.html */,
				24A200990F90D1DD003BB5A7 /* class_c_view.html */,
				24A2009A0F90D1DD003BB5A7 /* class_c_view.png */,
				24A2009B0F90D1DD003BB5A7 /* class_c_view_container-members.html */,
				24A2009C0F90D1DD003BB5A7 /* class_c_view_container.html */,
				24A2009D0F90D1DD003BB5A7 /* class_c_view_container.png */,
				24A2009E0F90D1DD003BB5A7 /* class_c_vu_meter-members.html */,
				24A2009F0F90D1DD003BB5A7 /* class_c_vu_meter.html */,
				24A200A00F90D1DD003BB5A7 /* class_c_vu_meter.png */,
				24A200A10F90D1DD003BB5A7 /* class_i_scrollbar_drawer-members.html */,
				24A200A20F90D1DD003BB5A7 /* class_i_scrollbar_drawer.html */,
				24A200A30F90D1DD003BB5A7 /* class_plugin_g_u_i_editor-members.html */,
				24A200A40F90D1DD003BB5A7 /* class_plugin_g_u_i_editor.html */,
				24A200A50F90D1DD003BB5A7 /* cscrollview_8cpp.html */,
				24A200A60F90D1DD003BB5A7 /* cscrollview_8h.html */,
				24A200A70F90D1DD003BB5A7 /* ctabview_8cpp.html */,
				24A200A80F90D1DD003BB5A7 /* ctabview_8h.html */,
				24A200A90F90D1DD003BB5A7 /* deprecated.html */,
				24A200AA0F90D1DD003BB5A7 /* doc_8h.html */,
				24A200AB0F90D1DD003BB5A7 /* doxygen.css */,
				24A200AC0F90D1DD003BB5A7 /* doxygen.png */,
				24A200AD0F90D1DD003BB5A7 /* files.html */,
				24A200AE0F90D1DD003BB5A7 /* ftv2blank.png */,
				24A200AF0F90D1DD003BB5A7 /* ftv2doc.png */,
				24A200B00F90D1DD003BB5A7 /* ftv2folderclosed.png */,
				24A200B10F90D1DE003BB5A7 /* ftv2folderopen.png */,
				24A200B20F90D1DE003BB5A7 /* ftv2lastnode.png */,
				24A200B30F90D1DE003BB5A7 /* ftv2link.png */,
				24A200B40F90D1DE003BB5A7 /* ftv2mlastnode.png */,
				24A200B50F90D1DE003BB5A7 /* ftv2mnode.png */,
				24A200B60F90D1DE003BB5A7 /* ftv2node.png */,
				24A200B70F90D1DE003BB5A7 /* ftv2plastnode.png */,
				24A200B80F90D1DE003BB5A7 /* ftv2pnode.png */,
				24A200B90F90D1DE003BB5A7 /* ftv2vertline.png */,
				24A200BA0F90D1DE003BB5A7 /* functions.html */,
				24A200BB0F90D1DE003BB5A7 /* functions_0x62.html */,
				24A200BC0F90D1DE003BB5A7 /* functions_0x63.html */,
				24A200BD0F90D1DE003BB5A7 /* functions_0x64.html */,
				24A200BE0F90D1DE003BB5A7 /* functions_0x65.html */,
				24A200BF0F90D1DE003BB5A7 /* functions_0x66.html */,
				24A200C00F90D1DE003BB5A7 /* functions_0x67.html */,
				24A200C10F90D1DE003BB5A7 /* functions_0x68.html */,
				24A200C20F90D1DE003BB5A7 /* functions_0x69.html */,
				24A200C30F90D1DE003BB5A7 /* functions_0x6b.html */,
				24A200C40F90D1DE003BB5A7 /* functions_0x6c.html */,
				24A200C50F90D1DE003BB5A7 /* functions_0x6d.html */,
				24A200C60F90D1DE003BB5A7 /* functions_0x6e.html */,
				24A200C70F90D1DE003BB5A7 /* functions_0x6f.html */,
				24A200C80F90D1DE003BB5A7 /* functions_0x70.html */,
				24A200C90F90D1DE003BB5A7 /* functions_0x72.html */,
				24A200CA0F90D1DE003BB5A7 /* functions_0x73.html */,
				24A200CB0F90D1DE003BB5A7 /* functions_0x74.html */,
				24A200CC0F90D1DE003BB5A7 /* functions_0x75.html */,
				24A200CD0F90D1DE003BB5A7 /* functions_0x76.html */,
				24A200CE0F90D1DE003BB5A7 /* functions_0x77.html */,
				24A200CF0F90D1DE003BB5A7 /* functions_0x78.html */,
				24A200D00F90D1DE003BB5A7 /* functions_0x79.html */,
				24A200D10F90D1DE003BB5A7 /* functions_0x7a.html */,
				24A200D20F90D1DE003BB5A7 /* functions_0x7e.html */,
				24A200D30F90D1DE003BB5A7 /* functions_eval.html */,
				24A200D40F90D1DE003BB5A7 /* functions_func.html */,
				24A200D50F90D1DE003BB5A7 /* functions_func_0x62.html */,
				24A200D60F90D1DE003BB5A7 /* functions_func_0x63.html */,
				24A200D70F90D1DE003BB5A7 /* functions_func_0x64.html */,
				24A200D80F90D1DE003BB5A7 /* functions_func_0x65.html */,
				24A200D90F90D1DE003BB5A7 /* functions_func_0x66.html */,
				24A200DA0F90D1DE003BB5A7 /* functions_func_0x67.html */,
				24A200DB0F90D1DE003BB5A7 /* functions_func_0x68.html */,
				24A200DC0F90D1DE003BB5A7 /* functions_func_0x69.html */,
				24A200DD0F90D1DE003BB5A7 /* functions_func_0x6c.html */,
				24A200DE0F90D1DE003BB5A7 /* functions_func_0x6d.html */,
				24A200DF0F90D1DE003BB5A7 /* functions_func_0x6e.html */,
				24A200E00F90D1DE003BB5A7 /* functions_func_0x6f.html */,
				24A200E10F90D1DE003BB5A7 /* functions_func_0x70.html */,
				24A200E20F90D1DE003BB5A7 /* functions_func_0x72.html */,
				24A200E30F90D1DE003BB5A7 /* functions_func_0x73.html */,
				24A200E40F90D1DE003BB5A7 /* functions_func_0x74.html */,
				24A200E50F90D1DE003BB5A7 /* functions_func_0x75.html */,
				24A200E60F90D1DE003BB5A7 /* functions_func_0x76.html */,
				24A200E70F90D1DE003BB5A7 /* functions_func_0x77.html */,
				24A200E80F90D1DE003BB5A7 /* functions_func_0x7e.html */,
				24A200E90F90D1DE003BB5A7 /* functions_rela.html */,
				24A200EA0F90D1DE003BB5A7 /* functions_vars.html */,
				24A200EB0F90D1DE003BB5A7 /* functions_vars_0x62.html */,
				24A200EC0F90D1DE003BB5A7 /* functions_vars_0x63.html */,
				24A200ED0F90D1DE003BB5A7 /* functions_vars_0x64.html */,
				24A200EE0F90D1DE003BB5A7 /* functions_vars_0x65.html */,
				24A200EF0F90D1DE003BB5A7 /* functions_vars_0x66.html */,
				24A200F00F90D1DE003BB5A7 /* functions_vars_0x67.html */,
				24A200F10F90D1DE003BB5A7 /* functions_vars_0x68.html */,
				24A200F20F90D1DE003BB5A7 /* functions_vars_0x69.html */,
				24A200F30F90D1DE003BB5A7 /* functions_vars_0x6b.html */,
				24A200F40F90D1DE003BB5A7 /* functions_vars_0x6c.html */,
				24A200F50F90D1DE003BB5A7 /* functions_vars_0x6d.html */,
				24A200F60F90D1DE003BB5A7 /* functions_vars_0x6e.html */,
				24A200F70F90D1DE003BB5A7 /* functions_vars_0x6f.html */,
				24A200F80F90D1DE003BB5A7 /* functions_vars_0x70.html */,
				24A200F90F90D1DE003BB5A7 /* functions_vars_0x72.html */,
				24A200FA0F90D1DE003BB5A7 /* functions_vars_0x73.html */,
				24A200FB0F90D1DE003BB5A7 /* functions_vars_0x74.html */,
				24A200FC0F90D1DE003BB5A7 /* functions_vars_0x75.html */,
				24A200FD0F90D1DE003BB5A7 /* functions_vars_0x76.html */,
				24A200FE0F90D1DE003BB5A7 /* functions_vars_0x77.html */,
				24A200FF0F90D1DE003BB5A7 /* functions_vars_0x78.html */,
				24A201000F90D1DE003BB5A7 /* functions_vars_0x79.html */,
				24A201010F90D1DE003BB5A7 /* functions_vars_0x7a.html */,
				24A201020F90D1DE003BB5A7 /* globals.html */,
				24A201030F90D1DE003BB5A7 /* globals_0x61.html */,
				24A201040F90D1DE003BB5A7 /* globals_0x62.html */,
				24A201050F90D1DE003BB5A7 /* globals_0x63.html */,
				24A201060F90D1DE003BB5A7 /* globals_0x65.html */,
				24A201070F90D1DE003BB5A7 /* globals_0x66.html */,
				24A201080F90D1DE003BB5A7 /* globals_0x67.html */,
				24A201090F90D1DE003BB5A7 /* globals_0x6b.html */,
				24A2010A0F90D1DE003BB5A7 /* globals_0x6d.html */,
				24A2010B0F90D1DE003BB5A7 /* globals_0x6e.html */,
				24A2010C0F90D1DE003BB5A7 /* globals_0x6f.html */,
				24A2010D0F90D1DE003BB5A7 /* globals_0x71.html */,
				24A2010E0F90D1DE003BB5A7 /* globals_0x72.html */,
				24A2010F0F90D1DE003BB5A7 /* globals_0x73.html */,
				24A201100F90D1DE003BB5A7 /* globals_0x74.html */,
				24A201110F90D1DE003BB5A7 /* globals_0x75.html */,
				24A201120F90D1DE003BB5A7 /* globals_0x76.html */,
				24A201130F90D1DE003BB5A7 /* globals_0x77.html */,
				24A201140F90D1DE003BB5A7 /* globals_defs.html */,
				24A201150F90D1DE003BB5A7 /* globals_enum.html */,
				24A201160F90D1DE003BB5A7 /* globals_eval.html */,
				24A201170F90D1DE003BB5A7 /* globals_type.html */,
				24A201180F90D1DE003BB5A7 /* globals_vars.html */,
				24A201190F90D1DE003BB5A7 /* hierarchy.html */,
				24A2011A0F90D1DE003BB5A7 /* index.html */,
				24A2011B0F90D1DE003BB5A7 /* intro.html */,
				24A2011C0F90D1DE003BB5A7 /* license.html */,
				24A2011D0F90D1DE003BB5A7 /* maceditor.html */,
				24A2011E0F90D1DE003BB5A7 /* main.html */,
				24A2011F0F90D1DE003BB5A7 /* others.html */,
				24A201200F90D1DE003BB5A7 /* pages.html */,
				24A201210F90D1DE003BB5A7 /* plugguieditor_8cpp.html */,
				24A201220F90D1DE003BB5A7 /* plugguieditor_8h.html */,
				24A201230F90D1DE003BB5A7 /* sequences.html */,
				24A201240F90D1DE003BB5A7 /* struct_c_color-members.html */,
				24A201250F90D1DE003BB5A7 /* struct_c_color.html */,
				24A201260F90D1DE003BB5A7 /* struct_c_point-members.html */,
				24A201270F90D1DE003BB5A7 /* struct_c_point.html */,
				24A201280F90D1DE003BB5A7 /* struct_c_rect-members.html */,
				24A201290F90D1DE003BB5A7 /* struct_c_rect.html */,
				24A2012A0F90D1DE003BB5A7 /* struct_e_rect-members.html */,
				24A2012B0F90D1DE003BB5A7 /* struct_e_rect.html */,
				24A2012C0F90D1DE003BB5A7 /* struct_vst_file_select-members.html */,
				24A2012D0F90D1DE003BB5A7 /* struct_vst_file_select.html */,
				24A2012E0F90D1DE003BB5A7 /* struct_vst_file_type-members.html */,
				24A2012F0F90D1DE003BB5A7 /* struct_vst_file_type.html */,
				24A201300F90D1DE003BB5A7 /* struct_vst_key_code-members.html */,
				24A201310F90D1DE003BB5A7 /* struct_vst_key_code.html */,
				24A201320F90D1DE003BB5A7 /* tab_b.gif */,
				24A201330F90D1DE003BB5A7 /* tab_l.gif */,
				24A201340F90D1DE003BB5A7 /* tab_r.gif */,
				24A201350F90D1DE003BB5A7 /* tabs.css */,
				24A201360F90D1DE003BB5A7 /* thanks.html */,
				24A201370F90D1DE003BB5A7 /* tree.html */,
				24A201380F90D1DE003BB5A7 /* vstcontrols_8cpp.html */,
				24A201390F90D1DE003BB5A7 /* vstcontrols_8h.html */,
				24A2013A0F90D1DE003BB5A7 /* vstgui_8cpp.html */,
				24A2013B0F90D1DE003BB5A7 /* vstgui_8h.html */,
				24A2013C0F90D1DE003BB5A7 /* vstkeycode_8h.html */,
				24A2013D0F90D1DE003BB5A7 /* vstoffline.html */,
				24A2013E0F90D1DE003BB5A7 /* vstparamstruct.html */,
				24A2013F0F90D1DE003BB5A7 /* vstplugscarbon_8h.html */,
				24A201400F90D1DE003BB5A7 /* vstplugsmac_8h.html */,
				24A201410F90D1DE003BB5A7 /* vstplugsmacho_8h.html */,
				24A201420F90D1DE003BB5A7 /* vstplugsquartz_8h.html */,
				24A201430F90D1DE003BB5A7 /* whatsnew.html */,
			);
			name = html;
			path = /vstsdk2.4/vstgui.sf/vstgui/Documentation/html;
			sourceTree = "<absolute>";
		};
		24A203CE0F90D272003BB5A7 /* Products */ = {
			isa = PBXGroup;
			children = (
				24A203D70F90D272003BB5A7 /* again.vst */,
				24A203D90F90D272003BB5A7 /* adelay.vst */,
				24A203DB0F90D272003BB5A7 /* vstxsynth.vst */,
				24A203DD0F90D272003BB5A7 /* surrounddelay.vst */,
				24A203DF0F90D272003BB5A7 /* minihost.app */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		24A203E00F90D272003BB5A7 /* Products */ = {
			isa = PBXGroup;
			children = (
				24A203E50F90D272003BB5A7 /* drawtest.component */,
				24A203E70F90D272003BB5A7 /* drawtest.vst */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		24A203E80F90D272003BB5A7 /* Products */ = {
			isa = PBXGroup;
			children = (
				24A203ED0F90D272003BB5A7 /* drawtest.component */,
				24A203EF0F90D272003BB5A7 /* drawtest.vst */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		24A2FEBB0F90D1DB003BB5A7 /* vstsdk2.4 */ = {
			isa = PBXGroup;
			children = (
				24A2FEBC0F90D1DC003BB5A7 /* artwork */,
				24A2FEC20F90D1DC003BB5A7 /* bin */,
				24A2FED80F90D1DC003BB5A7 /* doc */,
				24A2FF8E0F90D1DD003BB5A7 /* index.html */,
				24A2FF8F0F90D1DD003BB5A7 /* pluginterfaces */,
				24A2FF940F90D1DD003BB5A7 /* public.sdk */,
				24A2FFDE0F90D1DD003BB5A7 /* vstgui.sf */,
			);
			name = vstsdk2.4;
			path = /vstsdk2.4;
			sourceTree = "<absolute>";
		};
		24A2FEBC0F90D1DC003BB5A7 /* artwork */ = {
			isa = PBXGroup;
			children = (
				24A2FEBD0F90D1DC003BB5A7 /* Thumbs.db */,
				24A2FEBE0F90D1DC003BB5A7 /* VST_Logo_Usage_Guideline.pdf */,
				24A2FEBF0F90D1DC003BB5A7 /* VSTLogoAlpha.png */,
				24A2FEC00F90D1DC003BB5A7 /* VSTLogoBlack.jpg */,
				24A2FEC10F90D1DC003BB5A7 /* VSTLogoWhite.jpg */,
			);
			name = artwork;
			path = /vstsdk2.4/artwork;
			sourceTree = "<absolute>";
		};
		24A2FEC20F90D1DC003BB5A7 /* bin */ = {
			isa = PBXGroup;
			children = (
				24A2FEC30F90D1DC003BB5A7 /* mac */,
				24A2FED50F90D1DC003BB5A7 /* win */,
			);
			name = bin;
			path = /vstsdk2.4/bin;
			sourceTree = "<absolute>";
		};
		24A2FEC30F90D1DC003BB5A7 /* mac */ = {
			isa = PBXGroup;
			children = (
				24A2FEC40F90D1DC003BB5A7 /* VSTMonitor.vst */,
				24A2FED40F90D1DC003BB5A7 /* VSTParamTool.app */,
			);
			name = mac;
			path = /vstsdk2.4/bin/mac;
			sourceTree = "<absolute>";
		};
		24A2FEC40F90D1DC003BB5A7 /* VSTMonitor.vst */ = {
			isa = PBXGroup;
			children = (
				24A2FEC50F90D1DC003BB5A7 /* Contents */,
			);
			name = VSTMonitor.vst;
			path = /vstsdk2.4/bin/mac/VSTMonitor.vst;
			sourceTree = "<absolute>";
		};
		24A2FEC50F90D1DC003BB5A7 /* Contents */ = {
			isa = PBXGroup;
			children = (
				24A2FEC60F90D1DC003BB5A7 /* Info.plist */,
				24A2FEC70F90D1DC003BB5A7 /* MacOS */,
				24A2FEC90F90D1DC003BB5A7 /* PkgInfo */,
				24A2FECA0F90D1DC003BB5A7 /* Resources */,
			);
			name = Contents;
			path = /vstsdk2.4/bin/mac/VSTMonitor.vst/Contents;
			sourceTree = "<absolute>";
		};
		24A2FEC70F90D1DC003BB5A7 /* MacOS */ = {
			isa = PBXGroup;
			children = (
				24A2FEC80F90D1DC003BB5A7 /* VSTMonitor */,
			);
			name = MacOS;
			path = /vstsdk2.4/bin/mac/VSTMonitor.vst/Contents/MacOS;
			sourceTree = "<absolute>";
		};
		24A2FECA0F90D1DC003BB5A7 /* Resources */ = {
			isa = PBXGroup;
			children = (
				24A2FECB0F90D1DC003BB5A7 /* bmp50000.bmp */,
				24A2FECC0F90D1DC003BB5A7 /* bmp50001.bmp */,
				24A2FECD0F90D1DC003BB5A7 /* bmp50002.bmp */,
				24A2FECE0F90D1DC003BB5A7 /* bmp50003.bmp */,
				24A2FECF0F90D1DC003BB5A7 /* bmp50004.bmp */,
				24A2FED00F90D1DC003BB5A7 /* bmp50005.bmp */,
				24A2FED10F90D1DC003BB5A7 /* bmp50006.bmp */,
				24A2FED20F90D1DC003BB5A7 /* bmp50007.bmp */,
				24A2FED30F90D1DC003BB5A7 /* bmp50008.bmp */,
			);
			name = Resources;
			path = /vstsdk2.4/bin/mac/VSTMonitor.vst/Contents/Resources;
			sourceTree = "<absolute>";
		};
		24A2FED50F90D1DC003BB5A7 /* win */ = {
			isa = PBXGroup;
			children = (
				24A2FED60F90D1DC003BB5A7 /* vstmonitor.dll */,
				24A2FED70F90D1DC003BB5A7 /* vstparamtool.exe */,
			);
			name = win;
			path = /vstsdk2.4/bin/win;
			sourceTree = "<absolute>";
		};
		24A2FED80F90D1DC003BB5A7 /* doc */ = {
			isa = PBXGroup;
			children = (
				24A2FED90F90D1DC003BB5A7 /* gfx */,
				24A2FEDE0F90D1DC003BB5A7 /* html */,
				24A2FF8A0F90D1DD003BB5A7 /* sdk.menu.html */,
				24A2FF8B0F90D1DD003BB5A7 /* sdk.overview.html */,
				24A2FF8C0F90D1DD003BB5A7 /* sdkdoc.css */,
				24A2FF8D0F90D1DD003BB5A7 /* VST Licensing Agreement.rtf */,
			);
			name = doc;
			path = /vstsdk2.4/doc;
			sourceTree = "<absolute>";
		};
		24A2FED90F90D1DC003BB5A7 /* gfx */ = {
			isa = PBXGroup;
			children = (
				24A2FEDA0F90D1DC003BB5A7 /* folder.gif */,
				24A2FEDB0F90D1DC003BB5A7 /* mac.gif */,
				24A2FEDC0F90D1DC003BB5A7 /* vstpluglogo_small.jpg */,
				24A2FEDD0F90D1DC003BB5A7 /* win.gif */,
			);
			name = gfx;
			path = /vstsdk2.4/doc/gfx;
			sourceTree = "<absolute>";
		};
		24A2FEDE0F90D1DC003BB5A7 /* html */ = {
			isa = PBXGroup;
			children = (
				24A2FEDF0F90D1DC003BB5A7 /* aeffect_8h.html */,
				24A2FEE00F90D1DC003BB5A7 /* aeffectx_8h.html */,
				24A2FEE10F90D1DC003BB5A7 /* aeffeditor_8h.html */,
				24A2FEE20F90D1DC003BB5A7 /* annotated.html */,
				24A2FEE30F90D1DC003BB5A7 /* audioeffect_8cpp.html */,
				24A2FEE40F90D1DC003BB5A7 /* audioeffect_8h.html */,
				24A2FEE50F90D1DC003BB5A7 /* audioeffectx_8cpp.html */,
				24A2FEE60F90D1DC003BB5A7 /* audioeffectx_8h.html */,
				24A2FEE70F90D1DC003BB5A7 /* Blocksizechange.gif */,
				24A2FEE80F90D1DC003BB5A7 /* class_a_eff_editor-members.html */,
				24A2FEE90F90D1DC003BB5A7 /* class_a_eff_editor.html */,
				24A2FEEA0F90D1DC003BB5A7 /* class_audio_effect-members.html */,
				24A2FEEB0F90D1DC003BB5A7 /* class_audio_effect.html */,
				24A2FEEC0F90D1DC003BB5A7 /* class_audio_effect.png */,
				24A2FEED0F90D1DC003BB5A7 /* class_audio_effect_x-members.html */,
				24A2FEEE0F90D1DC003BB5A7 /* class_audio_effect_x.html */,
				24A2FEEF0F90D1DC003BB5A7 /* class_audio_effect_x.png */,
				24A2FEF00F90D1DC003BB5A7 /* ControlChanged.gif */,
				24A2FEF10F90D1DC003BB5A7 /* deprecated.html */,
				24A2FEF20F90D1DC003BB5A7 /* dir_2d3252dd12c84c66c1d25b26bb45a1f5.html */,
				24A2FEF30F90D1DC003BB5A7 /* dir_77c628dfee72e555f82d5ef53b733f38.html */,
				24A2FEF40F90D1DC003BB5A7 /* dir_f81105d3b854bea570aaf3bae5cb64c1.html */,
				24A2FEF50F90D1DC003BB5A7 /* dir_fa0454ab79b4262333bf837ea3d765e9.html */,
				24A2FEF60F90D1DC003BB5A7 /* dirs.html */,
				24A2FEF70F90D1DC003BB5A7 /* doc_8h.html */,
				24A2FEF80F90D1DC003BB5A7 /* doxygen.css */,
				24A2FEF90F90D1DC003BB5A7 /* doxygen.png */,
				24A2FEFA0F90D1DC003BB5A7 /* files.html */,
				24A2FEFB0F90D1DC003BB5A7 /* ftv2blank.png */,
				24A2FEFC0F90D1DC003BB5A7 /* ftv2doc.png */,
				24A2FEFD0F90D1DC003BB5A7 /* ftv2folderclosed.png */,
				24A2FEFE0F90D1DC003BB5A7 /* ftv2folderopen.png */,
				24A2FEFF0F90D1DC003BB5A7 /* ftv2lastnode.png */,
				24A2FF000F90D1DC003BB5A7 /* ftv2link.png */,
				24A2FF010F90D1DC003BB5A7 /* ftv2mlastnode.png */,
				24A2FF020F90D1DC003BB5A7 /* ftv2mnode.png */,
				24A2FF030F90D1DC003BB5A7 /* ftv2node.png */,
				24A2FF040F90D1DC003BB5A7 /* ftv2plastnode.png */,
				24A2FF050F90D1DC003BB5A7 /* ftv2pnode.png */,
				24A2FF060F90D1DC003BB5A7 /* ftv2vertline.png */,
				24A2FF070F90D1DC003BB5A7 /* functions.html */,
				24A2FF080F90D1DC003BB5A7 /* functions_0x62.html */,
				24A2FF090F90D1DC003BB5A7 /* functions_0x63.html */,
				24A2FF0A0F90D1DC003BB5A7 /* functions_0x64.html */,
				24A2FF0B0F90D1DC003BB5A7 /* functions_0x65.html */,
				24A2FF0C0F90D1DC003BB5A7 /* functions_0x66.html */,
				24A2FF0D0F90D1DC003BB5A7 /* functions_0x67.html */,
				24A2FF0E0F90D1DC003BB5A7 /* functions_0x68.html */,
				24A2FF0F0F90D1DC003BB5A7 /* functions_0x69.html */,
				24A2FF100F90D1DC003BB5A7 /* functions_0x6b.html */,
				24A2FF110F90D1DC003BB5A7 /* functions_0x6c.html */,
				24A2FF120F90D1DC003BB5A7 /* functions_0x6d.html */,
				24A2FF130F90D1DC003BB5A7 /* functions_0x6e.html */,
				24A2FF140F90D1DC003BB5A7 /* functions_0x6f.html */,
				24A2FF150F90D1DC003BB5A7 /* functions_0x70.html */,
				24A2FF160F90D1DC003BB5A7 /* functions_0x72.html */,
				24A2FF170F90D1DC003BB5A7 /* functions_0x73.html */,
				24A2FF180F90D1DC003BB5A7 /* functions_0x74.html */,
				24A2FF190F90D1DC003BB5A7 /* functions_0x75.html */,
				24A2FF1A0F90D1DC003BB5A7 /* functions_0x76.html */,
				24A2FF1B0F90D1DC003BB5A7 /* functions_0x77.html */,
				24A2FF1C0F90D1DC003BB5A7 /* functions_0x78.html */,
				24A2FF1D0F90D1DC003BB5A7 /* functions_0x79.html */,
				24A2FF1E0F90D1DC003BB5A7 /* functions_0x7e.html */,
				24A2FF1F0F90D1DC003BB5A7 /* functions_func.html */,
				24A2FF200F90D1DC003BB5A7 /* functions_vars.html */,
				24A2FF210F90D1DC003BB5A7 /* globals.html */,
				24A2FF220F90D1DC003BB5A7 /* globals_0x62.html */,
				24A2FF230F90D1DC003BB5A7 /* globals_0x63.html */,
				24A2FF240F90D1DC003BB5A7 /* globals_0x64.html */,
				24A2FF250F90D1DC003BB5A7 /* globals_0x65.html */,
				24A2FF260F90D1DC003BB5A7 /* globals_0x66.html */,
				24A2FF270F90D1DC003BB5A7 /* globals_0x6b.html */,
				24A2FF280F90D1DC003BB5A7 /* globals_0x6d.html */,
				24A2FF290F90D1DC003BB5A7 /* globals_0x74.html */,
				24A2FF2A0F90D1DC003BB5A7 /* globals_0x76.html */,
				24A2FF2B0F90D1DC003BB5A7 /* globals_defs.html */,
				24A2FF2C0F90D1DC003BB5A7 /* globals_enum.html */,
				24A2FF2D0F90D1DC003BB5A7 /* globals_eval.html */,
				24A2FF2E0F90D1DC003BB5A7 /* globals_eval_0x65.html */,
				24A2FF2F0F90D1DC003BB5A7 /* globals_eval_0x6b.html */,
				24A2FF300F90D1DC003BB5A7 /* globals_eval_0x6d.html */,
				24A2FF310F90D1DC003BB5A7 /* globals_eval_0x76.html */,
				24A2FF320F90D1DC003BB5A7 /* globals_func.html */,
				24A2FF330F90D1DC003BB5A7 /* globals_type.html */,
				24A2FF340F90D1DC003BB5A7 /* globals_vars.html */,
				24A2FF350F90D1DC003BB5A7 /* hierarchy.html */,
				24A2FF360F90D1DC003BB5A7 /* history.html */,
				24A2FF370F90D1DC003BB5A7 /* index.html */,
				24A2FF380F90D1DC003BB5A7 /* Initialisation.gif */,
				24A2FF390F90D1DC003BB5A7 /* intro.html */,
				24A2FF3A0F90D1DC003BB5A7 /* IOchange.gif */,
				24A2FF3B0F90D1DC003BB5A7 /* license.html */,
				24A2FF3C0F90D1DC003BB5A7 /* maceditor.html */,
				24A2FF3D0F90D1DC003BB5A7 /* main.html */,
				24A2FF3E0F90D1DC003BB5A7 /* namespace_host_can_dos.html */,
				24A2FF3F0F90D1DC003BB5A7 /* namespace_plug_can_dos.html */,
				24A2FF400F90D1DC003BB5A7 /* namespacemembers.html */,
				24A2FF410F90D1DC003BB5A7 /* namespacemembers_vars.html */,
				24A2FF420F90D1DC003BB5A7 /* namespaces.html */,
				24A2FF430F90D1DC003BB5A7 /* Offlineprocessing.gif */,
				24A2FF440F90D1DC003BB5A7 /* others.html */,
				24A2FF450F90D1DC003BB5A7 /* pages.html */,
				24A2FF460F90D1DC003BB5A7 /* Sampleratechange.gif */,
				24A2FF470F90D1DC003BB5A7 /* sequences.html */,
				24A2FF480F90D1DC003BB5A7 /* SpeakerarrangementnegotiationforVSTfx.gif */,
				24A2FF490F90D1DC003BB5A7 /* struct_a_effect-members.html */,
				24A2FF4A0F90D1DC003BB5A7 /* struct_a_effect.html */,
				24A2FF4B0F90D1DC003BB5A7 /* struct_e_rect-members.html */,
				24A2FF4C0F90D1DC003BB5A7 /* struct_e_rect.html */,
				24A2FF4D0F90D1DC003BB5A7 /* struct_midi_key_name-members.html */,
				24A2FF4E0F90D1DC003BB5A7 /* struct_midi_key_name.html */,
				24A2FF4F0F90D1DC003BB5A7 /* struct_midi_program_category-members.html */,
				24A2FF500F90D1DC003BB5A7 /* struct_midi_program_category.html */,
				24A2FF510F90D1DC003BB5A7 /* struct_midi_program_name-members.html */,
				24A2FF520F90D1DC003BB5A7 /* struct_midi_program_name.html */,
				24A2FF530F90D1DC003BB5A7 /* struct_vst_audio_file-members.html */,
				24A2FF540F90D1DC003BB5A7 /* struct_vst_audio_file.html */,
				24A2FF550F90D1DC003BB5A7 /* struct_vst_audio_file_marker-members.html */,
				24A2FF560F90D1DC003BB5A7 /* struct_vst_audio_file_marker.html */,
				24A2FF570F90D1DC003BB5A7 /* struct_vst_event-members.html */,
				24A2FF580F90D1DC003BB5A7 /* struct_vst_event.html */,
				24A2FF590F90D1DD003BB5A7 /* struct_vst_events-members.html */,
				24A2FF5A0F90D1DD003BB5A7 /* struct_vst_events.html */,
				24A2FF5B0F90D1DD003BB5A7 /* struct_vst_file_select-members.html */,
				24A2FF5C0F90D1DD003BB5A7 /* struct_vst_file_select.html */,
				24A2FF5D0F90D1DD003BB5A7 /* struct_vst_file_type-members.html */,
				24A2FF5E0F90D1DD003BB5A7 /* struct_vst_file_type.html */,
				24A2FF5F0F90D1DD003BB5A7 /* struct_vst_key_code-members.html */,
				24A2FF600F90D1DD003BB5A7 /* struct_vst_key_code.html */,
				24A2FF610F90D1DD003BB5A7 /* struct_vst_midi_event-members.html */,
				24A2FF620F90D1DD003BB5A7 /* struct_vst_midi_event.html */,
				24A2FF630F90D1DD003BB5A7 /* struct_vst_midi_sysex_event-members.html */,
				24A2FF640F90D1DD003BB5A7 /* struct_vst_midi_sysex_event.html */,
				24A2FF650F90D1DD003BB5A7 /* struct_vst_offline_task-members.html */,
				24A2FF660F90D1DD003BB5A7 /* struct_vst_offline_task.html */,
				24A2FF670F90D1DD003BB5A7 /* struct_vst_parameter_properties-members.html */,
				24A2FF680F90D1DD003BB5A7 /* struct_vst_parameter_properties.html */,
				24A2FF690F90D1DD003BB5A7 /* struct_vst_patch_chunk_info-members.html */,
				24A2FF6A0F90D1DD003BB5A7 /* struct_vst_patch_chunk_info.html */,
				24A2FF6B0F90D1DD003BB5A7 /* struct_vst_pin_properties-members.html */,
				24A2FF6C0F90D1DD003BB5A7 /* struct_vst_pin_properties.html */,
				24A2FF6D0F90D1DD003BB5A7 /* struct_vst_speaker_arrangement-members.html */,
				24A2FF6E0F90D1DD003BB5A7 /* struct_vst_speaker_arrangement.html */,
				24A2FF6F0F90D1DD003BB5A7 /* struct_vst_speaker_properties-members.html */,
				24A2FF700F90D1DD003BB5A7 /* struct_vst_speaker_properties.html */,
				24A2FF710F90D1DD003BB5A7 /* struct_vst_time_info-members.html */,
				24A2FF720F90D1DD003BB5A7 /* struct_vst_time_info.html */,
				24A2FF730F90D1DD003BB5A7 /* struct_vst_variable_io-members.html */,
				24A2FF740F90D1DD003BB5A7 /* struct_vst_variable_io.html */,
				24A2FF750F90D1DD003BB5A7 /* struct_vst_window-members.html */,
				24A2FF760F90D1DD003BB5A7 /* struct_vst_window.html */,
				24A2FF770F90D1DD003BB5A7 /* structfx_bank-members.html */,
				24A2FF780F90D1DD003BB5A7 /* structfx_bank.html */,
				24A2FF790F90D1DD003BB5A7 /* structfx_program-members.html */,
				24A2FF7A0F90D1DD003BB5A7 /* structfx_program.html */,
				24A2FF7B0F90D1DD003BB5A7 /* tab_b.gif */,
				24A2FF7C0F90D1DD003BB5A7 /* tab_l.gif */,
				24A2FF7D0F90D1DD003BB5A7 /* tab_r.gif */,
				24A2FF7E0F90D1DD003BB5A7 /* tabs.css */,
				24A2FF7F0F90D1DD003BB5A7 /* Termination.gif */,
				24A2FF800F90D1DD003BB5A7 /* thanks.html */,
				24A2FF810F90D1DD003BB5A7 /* tree.html */,
				24A2FF820F90D1DD003BB5A7 /* TurnOff.gif */,
				24A2FF830F90D1DD003BB5A7 /* TurnOn.gif */,
				24A2FF840F90D1DD003BB5A7 /* vstfxstore_8h.html */,
				24A2FF850F90D1DD003BB5A7 /* vstoffline.html */,
				24A2FF860F90D1DD003BB5A7 /* vstparamstruct.html */,
				24A2FF870F90D1DD003BB5A7 /* vstpluglogo.jpg */,
				24A2FF880F90D1DD003BB5A7 /* vstplugmain_8cpp.html */,
				24A2FF890F90D1DD003BB5A7 /* whatsnew.html */,
			);
			name = html;
			path = /vstsdk2.4/doc/html;
			sourceTree = "<absolute>";
		};
		24A2FF8F0F90D1DD003BB5A7 /* pluginterfaces */ = {
			isa = PBXGroup;
			children = (
				24A2FF900F90D1DD003BB5A7 /* vst2.x */,
			);
			name = pluginterfaces;
			path = /vstsdk2.4/pluginterfaces;
			sourceTree = "<absolute>";
		};
		24A2FF900F90D1DD003BB5A7 /* vst2.x */ = {
			isa = PBXGroup;
			children = (
				24A2FF910F90D1DD003BB5A7 /* aeffect.h */,
				24A2FF920F90D1DD003BB5A7 /* aeffectx.h */,
				24A2FF930F90D1DD003BB5A7 /* vstfxstore.h */,
			);
			name = vst2.x;
			path = /vstsdk2.4/pluginterfaces/vst2.x;
			sourceTree = "<absolute>";
		};
		24A2FF940F90D1DD003BB5A7 /* public.sdk */ = {
			isa = PBXGroup;
			children = (
				24A2FF950F90D1DD003BB5A7 /* samples */,
				24A2FFD60F90D1DD003BB5A7 /* source */,
			);
			name = public.sdk;
			path = /vstsdk2.4/public.sdk;
			sourceTree = "<absolute>";
		};
		24A2FF950F90D1DD003BB5A7 /* samples */ = {
			isa = PBXGroup;
			children = (
				24A2FF960F90D1DD003BB5A7 /* vst2.x */,
			);
			name = samples;
			path = /vstsdk2.4/public.sdk/samples;
			sourceTree = "<absolute>";
		};
		24A2FF960F90D1DD003BB5A7 /* vst2.x */ = {
			isa = PBXGroup;
			children = (
				24A2FF970F90D1DD003BB5A7 /* adelay */,
				24A2FFA80F90D1DD003BB5A7 /* again */,
				24A2FFAE0F90D1DD003BB5A7 /* mac */,
				24A2FFB40F90D1DD003BB5A7 /* minihost */,
				24A2FFBA0F90D1DD003BB5A7 /* vstxsynth */,
				24A2FFC50F90D1DD003BB5A7 /* win */,
				24A2FFC80F90D1DD003BB5A7 /* win.vc2003 */,
				24A2FFCF0F90D1DD003BB5A7 /* win.vc6 */,
			);
			name = vst2.x;
			path = /vstsdk2.4/public.sdk/samples/vst2.x;
			sourceTree = "<absolute>";
		};
		24A2FF970F90D1DD003BB5A7 /* adelay */ = {
			isa = PBXGroup;
			children = (
				24A2FF980F90D1DD003BB5A7 /* adelay.cpp */,
				24A2FF990F90D1DD003BB5A7 /* adelay.h */,
				24A2FF9A0F90D1DD003BB5A7 /* adelaymain.cpp */,
				24A2FF9B0F90D1DD003BB5A7 /* editor */,
				24A2FFA30F90D1DD003BB5A7 /* surrounddelay.cpp */,
				24A2FFA40F90D1DD003BB5A7 /* surrounddelay.h */,
				24A2FFA50F90D1DD003BB5A7 /* win */,
			);
			name = adelay;
			path = /vstsdk2.4/public.sdk/samples/vst2.x/adelay;
			sourceTree = "<absolute>";
		};
		24A2FF9B0F90D1DD003BB5A7 /* editor */ = {
			isa = PBXGroup;
			children = (
				24A2FF9C0F90D1DD003BB5A7 /* resources */,
				24A2FFA10F90D1DD003BB5A7 /* sdeditor.cpp */,
				24A2FFA20F90D1DD003BB5A7 /* sdeditor.h */,
			);
			name = editor;
			path = /vstsdk2.4/public.sdk/samples/vst2.x/adelay/editor;
			sourceTree = "<absolute>";
		};
		24A2FF9C0F90D1DD003BB5A7 /* resources */ = {
			isa = PBXGroup;
			children = (
				24A2FF9D0F90D1DD003BB5A7 /* bmp00128.bmp */,
				24A2FF9E0F90D1DD003BB5A7 /* bmp00129.bmp */,
				24A2FF9F0F90D1DD003BB5A7 /* bmp00130.bmp */,
				24A2FFA00F90D1DD003BB5A7 /* surrounddelay.rc */,
			);
			name = resources;
			path = /vstsdk2.4/public.sdk/samples/vst2.x/adelay/editor/resources;
			sourceTree = "<absolute>";
		};
		24A2FFA50F90D1DD003BB5A7 /* win */ = {
			isa = PBXGroup;
			children = (
				24A2FFA60F90D1DD003BB5A7 /* adelay.vcproj */,
				24A2FFA70F90D1DD003BB5A7 /* surrounddelay.vcproj */,
			);
			name = win;
			path = /vstsdk2.4/public.sdk/samples/vst2.x/adelay/win;
			sourceTree = "<absolute>";
		};
		24A2FFA80F90D1DD003BB5A7 /* again */ = {
			isa = PBXGroup;
			children = (
				24A2FFA90F90D1DD003BB5A7 /* source */,
				24A2FFAC0F90D1DD003BB5A7 /* win */,
			);
			name = again;
			path = /vstsdk2.4/public.sdk/samples/vst2.x/again;
			sourceTree = "<absolute>";
		};
		24A2FFA90F90D1DD003BB5A7 /* source */ = {
			isa = PBXGroup;
			children = (
				24A2FFAA0F90D1DD003BB5A7 /* again.cpp */,
				24A2FFAB0F90D1DD003BB5A7 /* again.h */,
			);
			name = source;
			path = /vstsdk2.4/public.sdk/samples/vst2.x/again/source;
			sourceTree = "<absolute>";
		};
		24A2FFAC0F90D1DD003BB5A7 /* win */ = {
			isa = PBXGroup;
			children = (
				24A2FFAD0F90D1DD003BB5A7 /* again.vcproj */,
			);
			name = win;
			path = /vstsdk2.4/public.sdk/samples/vst2.x/again/win;
			sourceTree = "<absolute>";
		};
		24A2FFAE0F90D1DD003BB5A7 /* mac */ = {
			isa = PBXGroup;
			children = (
				24A2FFAF0F90D1DD003BB5A7 /* minihost-Info.plist */,
				24A2FFB00F90D1DD003BB5A7 /* vst 2.4 examples.xcodeproj */,
				24A2FFB30F90D1DD003BB5A7 /* vst2.4Info.plist */,
			);
			name = mac;
			path = /vstsdk2.4/public.sdk/samples/vst2.x/mac;
			sourceTree = "<absolute>";
		};
		24A2FFB40F90D1DD003BB5A7 /* minihost */ = {
			isa = PBXGroup;
			children = (
				24A2FFB50F90D1DD003BB5A7 /* source */,
				24A2FFB80F90D1DD003BB5A7 /* win */,
			);
			name = minihost;
			path = /vstsdk2.4/public.sdk/samples/vst2.x/minihost;
			sourceTree = "<absolute>";
		};
		24A2FFB50F90D1DD003BB5A7 /* source */ = {
			isa = PBXGroup;
			children = (
				24A2FFB60F90D1DD003BB5A7 /* minieditor.cpp */,
				24A2FFB70F90D1DD003BB5A7 /* minihost.cpp */,
			);
			name = source;
			path = /vstsdk2.4/public.sdk/samples/vst2.x/minihost/source;
			sourceTree = "<absolute>";
		};
		24A2FFB80F90D1DD003BB5A7 /* win */ = {
			isa = PBXGroup;
			children = (
				24A2FFB90F90D1DD003BB5A7 /* minihost.vcproj */,
			);
			name = win;
			path = /vstsdk2.4/public.sdk/samples/vst2.x/minihost/win;
			sourceTree = "<absolute>";
		};
		24A2FFBA0F90D1DD003BB5A7 /* vstxsynth */ = {
			isa = PBXGroup;
			children = (
				24A2FFBB0F90D1DD003BB5A7 /* resource */,
				24A2FFBE0F90D1DD003BB5A7 /* source */,
				24A2FFC30F90D1DD003BB5A7 /* win */,
			);
			name = vstxsynth;
			path = /vstsdk2.4/public.sdk/samples/vst2.x/vstxsynth;
			sourceTree = "<absolute>";
		};
		24A2FFBB0F90D1DD003BB5A7 /* resource */ = {
			isa = PBXGroup;
			children = (
				24A2FFBC0F90D1DD003BB5A7 /* vstxsynth.rc */,
				24A2FFBD0F90D1DD003BB5A7 /* vstxsynth.vstxml */,
			);
			name = resource;
			path = /vstsdk2.4/public.sdk/samples/vst2.x/vstxsynth/resource;
			sourceTree = "<absolute>";
		};
		24A2FFBE0F90D1DD003BB5A7 /* source */ = {
			isa = PBXGroup;
			children = (
				24A2FFBF0F90D1DD003BB5A7 /* gmnames.h */,
				24A2FFC00F90D1DD003BB5A7 /* vstxsynth.cpp */,
				24A2FFC10F90D1DD003BB5A7 /* vstxsynth.h */,
				24A2FFC20F90D1DD003BB5A7 /* vstxsynthproc.cpp */,
			);
			name = source;
			path = /vstsdk2.4/public.sdk/samples/vst2.x/vstxsynth/source;
			sourceTree = "<absolute>";
		};
		24A2FFC30F90D1DD003BB5A7 /* win */ = {
			isa = PBXGroup;
			children = (
				24A2FFC40F90D1DD003BB5A7 /* vstxsynth.vcproj */,
			);
			name = win;
			path = /vstsdk2.4/public.sdk/samples/vst2.x/vstxsynth/win;
			sourceTree = "<absolute>";
		};
		24A2FFC50F90D1DD003BB5A7 /* win */ = {
			isa = PBXGroup;
			children = (
				24A2FFC60F90D1DD003BB5A7 /* samples.sln */,
				24A2FFC70F90D1DD003BB5A7 /* vstplug.def */,
			);
			name = win;
			path = /vstsdk2.4/public.sdk/samples/vst2.x/win;
			sourceTree = "<absolute>";
		};
		24A2FFC80F90D1DD003BB5A7 /* win.vc2003 */ = {
			isa = PBXGroup;
			children = (
				24A2FFC90F90D1DD003BB5A7 /* adelay.vcproj */,
				24A2FFCA0F90D1DD003BB5A7 /* again.vcproj */,
				24A2FFCB0F90D1DD003BB5A7 /* minihost.vcproj */,
				24A2FFCC0F90D1DD003BB5A7 /* samples.sln */,
				24A2FFCD0F90D1DD003BB5A7 /* surrounddelay.vcproj */,
				24A2FFCE0F90D1DD003BB5A7 /* vstxsynth.vcproj */,
			);
			name = win.vc2003;
			path = /vstsdk2.4/public.sdk/samples/vst2.x/win.vc2003;
			sourceTree = "<absolute>";
		};
		24A2FFCF0F90D1DD003BB5A7 /* win.vc6 */ = {
			isa = PBXGroup;
			children = (
				24A2FFD00F90D1DD003BB5A7 /* adelay.dsp */,
				24A2FFD10F90D1DD003BB5A7 /* again.dsp */,
				24A2FFD20F90D1DD003BB5A7 /* minihost.dsp */,
				24A2FFD30F90D1DD003BB5A7 /* samples.dsw */,
				24A2FFD40F90D1DD003BB5A7 /* surrounddelay.dsp */,
				24A2FFD50F90D1DD003BB5A7 /* vstxsynth.dsp */,
			);
			name = win.vc6;
			path = /vstsdk2.4/public.sdk/samples/vst2.x/win.vc6;
			sourceTree = "<absolute>";
		};
		24A2FFD60F90D1DD003BB5A7 /* source */ = {
			isa = PBXGroup;
			children = (
				24A2FFD70F90D1DD003BB5A7 /* vst2.x */,
			);
			name = source;
			path = /vstsdk2.4/public.sdk/source;
			sourceTree = "<absolute>";
		};
		24A2FFD70F90D1DD003BB5A7 /* vst2.x */ = {
			isa = PBXGroup;
			children = (
				24A2FFD80F90D1DD003BB5A7 /* aeffeditor.h */,
				24A2FFD90F90D1DD003BB5A7 /* audioeffect.cpp */,
				24A2FFDA0F90D1DD003BB5A7 /* audioeffect.h */,
				24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */,
				24A2FFDC0F90D1DD003BB5A7 /* audioeffectx.h */,
				24A2FFDD0F90D1DD003BB5A7 /* vstplugmain.cpp */,
			);
			name = vst2.x;
			path = /vstsdk2.4/public.sdk/source/vst2.x;
			sourceTree = "<absolute>";
		};
		24A2FFDE0F90D1DD003BB5A7 /* vstgui.sf */ = {
			isa = PBXGroup;
			children = (
				24A2FFDF0F90D1DD003BB5A7 /* drawtest */,
				24A200160F90D1DD003BB5A7 /* vstgui */,
			);
			name = vstgui.sf;
			path = /vstsdk2.4/vstgui.sf;
			sourceTree = "<absolute>";
		};
		24A2FFDF0F90D1DD003BB5A7 /* drawtest */ = {
			isa = PBXGroup;
			children = (
				24A2FFE00F90D1DD003BB5A7 /* mac */,
				24A2FFEE0F90D1DD003BB5A7 /* resources */,
				24A200030F90D1DD003BB5A7 /* source */,
				24A2000F0F90D1DD003BB5A7 /* win */,
				24A200130F90D1DD003BB5A7 /* win.vc6 */,
			);
			name = drawtest;
			path = /vstsdk2.4/vstgui.sf/drawtest;
			sourceTree = "<absolute>";
		};
		24A2FFE00F90D1DD003BB5A7 /* mac */ = {
			isa = PBXGroup;
			children = (
				24A2FFE10F90D1DD003BB5A7 /* audiounit.exp */,
				24A2FFE20F90D1DD003BB5A7 /* cw_vst_prefix.pch++ */,
				24A2FFE30F90D1DD003BB5A7 /* drawtest.cw9prj */,
				24A2FFE40F90D1DD003BB5A7 /* drawtest.plc */,
				24A2FFE50F90D1DD003BB5A7 /* drawtest.xcode */,
				24A2FFE80F90D1DD003BB5A7 /* drawtest.xcodeproj */,
				24A2FFEB0F90D1DD003BB5A7 /* Info.plist */,
				24A2FFEC0F90D1DD003BB5A7 /* xcode_au_prefix.h */,
				24A2FFED0F90D1DD003BB5A7 /* xcode_vst_prefix.h */,
			);
			name = mac;
			path = /vstsdk2.4/vstgui.sf/drawtest/mac;
			sourceTree = "<absolute>";
		};
		24A2FFEE0F90D1DD003BB5A7 /* resources */ = {
			isa = PBXGroup;
			children = (
				24A2FFEF0F90D1DD003BB5A7 /* audiounit.r */,
				24A2FFF00F90D1DD003BB5A7 /* bmp00001.png */,
				24A2FFF10F90D1DD003BB5A7 /* bmp00100.png */,
				24A2FFF20F90D1DD003BB5A7 /* bmp01000.png */,
				24A2FFF30F90D1DD003BB5A7 /* bmp10001.bmp */,
				24A2FFF40F90D1DD003BB5A7 /* bmp10002.bmp */,
				24A2FFF50F90D1DD003BB5A7 /* bmp10003.bmp */,
				24A2FFF60F90D1DD003BB5A7 /* bmp10004.bmp */,
				24A2FFF70F90D1DD003BB5A7 /* bmp10005.bmp */,
				24A2FFF80F90D1DD003BB5A7 /* bmp10006.bmp */,
				24A2FFF90F90D1DD003BB5A7 /* bmp10007.bmp */,
				24A2FFFA0F90D1DD003BB5A7 /* bmp10008.bmp */,
				24A2FFFB0F90D1DD003BB5A7 /* bmp10009.bmp */,
				24A2FFFC0F90D1DD003BB5A7 /* bmp10010.bmp */,
				24A2FFFD0F90D1DD003BB5A7 /* bmp10011.bmp */,
				24A2FFFE0F90D1DD003BB5A7 /* bmp10012.bmp */,
				24A2FFFF0F90D1DD003BB5A7 /* bmp10013.bmp */,
				24A200000F90D1DD003BB5A7 /* bmp10014.bmp */,
				24A200010F90D1DD003BB5A7 /* bmp10015.bmp */,
				24A200020F90D1DD003BB5A7 /* bmp10016.bmp */,
			);
			name = resources;
			path = /vstsdk2.4/vstgui.sf/drawtest/resources;
			sourceTree = "<absolute>";
		};
/* End PBXGroup section */

/* Begin PBXHeadersBuildPhase section */
		8D01CCC70486CAD60068D4B7 /* Headers */ = {
			isa = PBXHeadersBuildPhase;
			buildActionMask = 2147483647;
			files = (
				245463B90991757100464AD3 /* Coils.h in Headers */,
				24D8287F09A9164A0093AEF8 /* xcode_vst_prefix.h in Headers */,
				24A202190F90D1DE003BB5A7 /* aeffect.h in Headers */,
				24A2021A0F90D1DE003BB5A7 /* aeffectx.h in Headers */,
				24A2021B0F90D1DE003BB5A7 /* vstfxstore.h in Headers */,
				24A2021D0F90D1DE003BB5A7 /* adelay.h in Headers */,
				24A202240F90D1DE003BB5A7 /* sdeditor.h in Headers */,
				24A202260F90D1DE003BB5A7 /* surrounddelay.h in Headers */,
				24A2022A0F90D1DE003BB5A7 /* again.h in Headers */,
				24A202330F90D1DE003BB5A7 /* gmnames.h in Headers */,
				24A202350F90D1DE003BB5A7 /* vstxsynth.h in Headers */,
				24A202460F90D1DE003BB5A7 /* aeffeditor.h in Headers */,
				24A202480F90D1DE003BB5A7 /* audioeffect.h in Headers */,
				24A2024A0F90D1DE003BB5A7 /* audioeffectx.h in Headers */,
				24A2024D0F90D1DE003BB5A7 /* cw_vst_prefix.pch++ in Headers */,
				24A202510F90D1DE003BB5A7 /* xcode_au_prefix.h in Headers */,
				24A202520F90D1DE003BB5A7 /* xcode_vst_prefix.h in Headers */,
				24A202680F90D1DE003BB5A7 /* controlsgui.h in Headers */,
				24A2026A0F90D1DE003BB5A7 /* pdrawtesteditor.h in Headers */,
				24A2026C0F90D1DE003BB5A7 /* pdrawtesteffect.h in Headers */,
				24A2026F0F90D1DE003BB5A7 /* pdrawtestview.h in Headers */,
				24A202710F90D1DE003BB5A7 /* pprimitivesviews.h in Headers */,
				24A202780F90D1DE003BB5A7 /* aeffguieditor.h in Headers */,
				24A2027A0F90D1DE003BB5A7 /* cfileselector.h in Headers */,
				24A2027D0F90D1DE003BB5A7 /* cscrollview.h in Headers */,
				24A2027F0F90D1DE003BB5A7 /* ctabview.h in Headers */,
				24A203A50F90D1DE003BB5A7 /* plugguieditor.h in Headers */,
				24A203A70F90D1DE003BB5A7 /* vstcontrols.h in Headers */,
				24A203A90F90D1DE003BB5A7 /* vstgui.h in Headers */,
				24A203AA0F90D1DE003BB5A7 /* vstkeycode.h in Headers */,
				24A203AB0F90D1DE003BB5A7 /* vstplugscarbon.h in Headers */,
				24A203AC0F90D1DE003BB5A7 /* vstplugsmac.h in Headers */,
				24A203AD0F90D1DE003BB5A7 /* vstplugsmacho.h in Headers */,
				24A203AE0F90D1DE003BB5A7 /* vstplugsquartz.h in Headers */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXHeadersBuildPhase section */

/* Begin PBXNativeTarget section */
		8D01CCC60486CAD60068D4B7 /* Coils */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 24BEAAED08919AE700E695F9 /* Build configuration list for PBXNativeTarget "Coils" */;
			buildPhases = (
				8D01CCC70486CAD60068D4B7 /* Headers */,
				8D01CCC90486CAD60068D4B7 /* Resources */,
				8D01CCCB0486CAD60068D4B7 /* Sources */,
				8D01CCCF0486CAD60068D4B7 /* Rez */,
				24CFB70807E7A07C0081BD57 /* Copy PkgInfo */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = Coils;
			productInstallPath = "$(HOME)/Library/Bundles";
			productName = "FM-Chopper";
			productReference = 2407DE920899296600EB68BF /* Coils.vst */;
			productType = "com.apple.product-type.bundle";
		};
/* End PBXNativeTarget section */

/* Begin PBXProject section */
		089C1669FE841209C02AAC07 /* Project object */ = {
			isa = PBXProject;
			buildConfigurationList = 24BEAAF108919AE700E695F9 /* Build configuration list for PBXProject "Coils" */;
			compatibilityVersion = "Xcode 2.4";
			developmentRegion = English;
			hasScannedForEncodings = 1;
			knownRegions = (
				English,
				Japanese,
				French,
				German,
			);
			mainGroup = 089C166AFE841209C02AAC07 /* FM-Chopper */;
			projectDirPath = "";
			projectReferences = (
				{
					ProductGroup = 24A203E00F90D272003BB5A7 /* Products */;
					ProjectRef = 24A2FFE50F90D1DD003BB5A7 /* drawtest.xcode */;
				},
				{
					ProductGroup = 24A203E80F90D272003BB5A7 /* Products */;
					ProjectRef = 24A2FFE80F90D1DD003BB5A7 /* drawtest.xcodeproj */;
				},
				{
					ProductGroup = 24A203CE0F90D272003BB5A7 /* Products */;
					ProjectRef = 24A2FFB00F90D1DD003BB5A7 /* vst 2.4 examples.xcodeproj */;
				},
			);
			projectRoot = "";
			targets = (
				8D01CCC60486CAD60068D4B7 /* Coils */,
			);
		};
/* End PBXProject section */

/* Begin PBXReferenceProxy section */
		24A203D70F90D272003BB5A7 /* again.vst */ = {
			isa = PBXReferenceProxy;
			fileType = wrapper.cfbundle;
			path = again.vst;
			remoteRef = 24A203D60F90D272003BB5A7 /* PBXContainerItemProxy */;
			sourceTree = BUILT_PRODUCTS_DIR;
		};
		24A203D90F90D272003BB5A7 /* adelay.vst */ = {
			isa = PBXReferenceProxy;
			fileType = wrapper.cfbundle;
			path = adelay.vst;
			remoteRef = 24A203D80F90D272003BB5A7 /* PBXContainerItemProxy */;
			sourceTree = BUILT_PRODUCTS_DIR;
		};
		24A203DB0F90D272003BB5A7 /* vstxsynth.vst */ = {
			isa = PBXReferenceProxy;
			fileType = wrapper.cfbundle;
			path = vstxsynth.vst;
			remoteRef = 24A203DA0F90D272003BB5A7 /* PBXContainerItemProxy */;
			sourceTree = BUILT_PRODUCTS_DIR;
		};
		24A203DD0F90D272003BB5A7 /* surrounddelay.vst */ = {
			isa = PBXReferenceProxy;
			fileType = wrapper.cfbundle;
			path = surrounddelay.vst;
			remoteRef = 24A203DC0F90D272003BB5A7 /* PBXContainerItemProxy */;
			sourceTree = BUILT_PRODUCTS_DIR;
		};
		24A203DF0F90D272003BB5A7 /* minihost.app */ = {
			isa = PBXReferenceProxy;
			fileType = wrapper.application;
			path = minihost.app;
			remoteRef = 24A203DE0F90D272003BB5A7 /* PBXContainerItemProxy */;
			sourceTree = BUILT_PRODUCTS_DIR;
		};
		24A203E50F90D272003BB5A7 /* drawtest.component */ = {
			isa = PBXReferenceProxy;
			fileType = wrapper.cfbundle;
			path = drawtest.component;
			remoteRef = 24A203E40F90D272003BB5A7 /* PBXContainerItemProxy */;
			sourceTree = BUILT_PRODUCTS_DIR;
		};
		24A203E70F90D272003BB5A7 /* drawtest.vst */ = {
			isa = PBXReferenceProxy;
			fileType = wrapper.cfbundle;
			path = drawtest.vst;
			remoteRef = 24A203E60F90D272003BB5A7 /* PBXContainerItemProxy */;
			sourceTree = BUILT_PRODUCTS_DIR;
		};
		24A203ED0F90D272003BB5A7 /* drawtest.component */ = {
			isa = PBXReferenceProxy;
			fileType = wrapper.cfbundle;
			path = drawtest.component;
			remoteRef = 24A203EC0F90D272003BB5A7 /* PBXContainerItemProxy */;
			sourceTree = BUILT_PRODUCTS_DIR;
		};
		24A203EF0F90D272003BB5A7 /* drawtest.vst */ = {
			isa = PBXReferenceProxy;
			fileType = wrapper.cfbundle;
			path = drawtest.vst;
			remoteRef = 24A203EE0F90D272003BB5A7 /* PBXContainerItemProxy */;
			sourceTree = BUILT_PRODUCTS_DIR;
		};
/* End PBXReferenceProxy section */

/* Begin PBXResourcesBuildPhase section */
		8D01CCC90486CAD60068D4B7 /* Resources */ = {
			isa = PBXResourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				24CFB70407E7A0220081BD57 /* PkgInfo in Resources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXResourcesBuildPhase section */

/* Begin PBXRezBuildPhase section */
		8D01CCCF0486CAD60068D4B7 /* Rez */ = {
			isa = PBXRezBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXRezBuildPhase section */

/* Begin PBXShellScriptBuildPhase section */
		24CFB70807E7A07C0081BD57 /* Copy PkgInfo */ = {
			isa = PBXShellScriptBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			inputPaths = (
			);
			name = "Copy PkgInfo";
			outputPaths = (
			);
			runOnlyForDeploymentPostprocessing = 0;
			shellPath = /bin/bash;
			shellScript = "cp mac/PkgInfo \"$BUILT_PRODUCTS_DIR/$PRODUCT_NAME.vst/Contents/\"";
		};
/* End PBXShellScriptBuildPhase section */

/* Begin PBXSourcesBuildPhase section */
		8D01CCCB0486CAD60068D4B7 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				2407DEB9089929BA00EB68BF /* Coils.cpp in Sources */,
				24D8287009A914000093AEF8 /* CoilsProc.cpp in Sources */,
				24A203CB0F90D251003BB5A7 /* audioeffect.cpp in Sources */,
				24A203CC0F90D251003BB5A7 /* audioeffectx.cpp in Sources */,
				24A203CD0F90D251003BB5A7 /* vstplugmain.cpp in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXSourcesBuildPhase section */

/* Begin XCBuildConfiguration section */
		24BEAAEE08919AE700E695F9 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				COPY_PHASE_STRIP = NO;
				FRAMEWORK_SEARCH_PATHS = "";
				GCC_DYNAMIC_NO_PIC = NO;
				GCC_ENABLE_FIX_AND_CONTINUE = YES;
				GCC_ENABLE_TRIGRAPHS = NO;
				GCC_GENERATE_DEBUGGING_SYMBOLS = YES;
				GCC_PRECOMPILE_PREFIX_HEADER = YES;
				GCC_PREFIX_HEADER = "";
				GCC_WARN_ABOUT_MISSING_PROTOTYPES = NO;
				GCC_WARN_FOUR_CHARACTER_CONSTANTS = NO;
				GCC_WARN_UNKNOWN_PRAGMAS = NO;
				HEADER_SEARCH_PATHS = "/vstsdk2.4/**";
				INFOPLIST_FILE = ./mac/Info.plist;
				LIBRARY_SEARCH_PATHS = "";
				OTHER_CFLAGS = "";
				OTHER_LDFLAGS = "";
				OTHER_REZFLAGS = "";
				PRODUCT_NAME = Gain;
				SECTORDER_FLAGS = "";
				WARNING_CFLAGS = (
					"-Wmost",
					"-Wno-four-char-constants",
					"-Wno-unknown-pragmas",
				);
				WRAPPER_EXTENSION = vst;
			};
			name = Debug;
		};
		24BEAAEF08919AE700E695F9 /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ARCHS = (
					ppc,
					i386,
					x86_64,
				);
				COPY_PHASE_STRIP = YES;
				DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
				FRAMEWORK_SEARCH_PATHS = "";
				GCC_C_LANGUAGE_STANDARD = c99;
				GCC_ENABLE_FIX_AND_CONTINUE = NO;
				GCC_ENABLE_TRIGRAPHS = NO;
				GCC_GENERATE_DEBUGGING_SYMBOLS = NO;
				GCC_MODEL_TUNING = G4;
				GCC_OPTIMIZATION_LEVEL = s;
				GCC_PRECOMPILE_PREFIX_HEADER = YES;
				GCC_PREFIX_HEADER = "";
				GCC_WARN_ABOUT_MISSING_PROTOTYPES = NO;
				GCC_WARN_FOUR_CHARACTER_CONSTANTS = NO;
				GCC_WARN_UNKNOWN_PRAGMAS = NO;
				HEADER_SEARCH_PATHS = "/vstsdk2.4/**";
				INFOPLIST_FILE = ./mac/Info.plist;
				LIBRARY_SEARCH_PATHS = "";
				MACOSX_DEPLOYMENT_TARGET = 10.4;
				OTHER_CFLAGS = "";
				OTHER_LDFLAGS = "";
				OTHER_REZFLAGS = "";
				PRODUCT_NAME = Coils;
				SDKROOT = /Developer/SDKs/MacOSX10.5.sdk;
				SECTORDER_FLAGS = "";
				SKIP_INSTALL = NO;
				STRIP_INSTALLED_PRODUCT = YES;
				STRIP_STYLE = all;
				WARNING_CFLAGS = (
					"-Wmost",
					"-Wno-four-char-constants",
					"-Wno-unknown-pragmas",
				);
				WRAPPER_EXTENSION = vst;
			};
			name = Release;
		};
		24BEAAF208919AE700E695F9 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ARCHS = "$(NATIVE_ARCH)";
				GCC_MODEL_TUNING = G5;
				GCC_OPTIMIZATION_LEVEL = 0;
				GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1";
				INFOPLIST_FILE = "";
				INFOPLIST_PREPROCESS = NO;
			};
			name = Debug;
		};
		24BEAAF308919AE700E695F9 /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ARCHS = "$(ARCHS_STANDARD_32_64_BIT_PRE_XCODE_3_1)";
				ARCHS_STANDARD_32_64_BIT_PRE_XCODE_3_1 = "x86_64 i386 ppc";
				DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
				GCC_C_LANGUAGE_STANDARD = c99;
				GCC_MODEL_TUNING = G4;
				GCC_OPTIMIZATION_LEVEL = s;
				INFOPLIST_FILE = "";
				INFOPLIST_PREPROCESS = NO;
				SDKROOT = "$(DEVELOPER_SDK_DIR)/MacOSX10.6.sdk";
			};
			name = Release;
		};
/* End XCBuildConfiguration section */

/* Begin XCConfigurationList section */
		24BEAAED08919AE700E695F9 /* Build configuration list for PBXNativeTarget "Coils" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				24BEAAEE08919AE700E695F9 /* Debug */,
				24BEAAEF08919AE700E695F9 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Debug;
		};
		24BEAAF108919AE700E695F9 /* Build configuration list for PBXProject "Coils" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				24BEAAF208919AE700E695F9 /* Debug */,
				24BEAAF308919AE700E695F9 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Debug;
		};
/* End XCConfigurationList section */
	};
	rootObject = 089C1669FE841209C02AAC07 /* Project object */;
}