Chameleon Applications

Chameleon Applications Commit Details

Date:2011-05-31 04:15:37 (12 years 10 months ago)
Author:ErmaC
Commit:303
Parents: 302
Message:Latest Chameleon trunk changes.
Changes:
A/branches/iFabio/Chameleon/i386/util/openUp.c
M/branches/iFabio/Chameleon/i386/boot2/gui.h
M/branches/iFabio/Chameleon/i386/libsaio/saio_internal.h
M/branches/iFabio/Chameleon/i386/boot2/ramdisk.c
M/branches/iFabio/Chameleon/i386/boot2/options.c
M/branches/iFabio/Chameleon/i386/boot2/Makefile
M/branches/iFabio/Chameleon/package/Resources/English.lproj/Localizable.strings
M/branches/iFabio/Chameleon/i386/libsaio/xml.c
M/branches/iFabio/Chameleon/i386/boot2/resume.c
M/branches/iFabio/Chameleon/i386/boot2/boot.c
M/branches/iFabio/Chameleon/i386/libsa/libsa.h
M/branches/iFabio/Chameleon/Make.rules
M/branches/iFabio/Chameleon/i386/boot2/modules.c
M/branches/iFabio/Chameleon/i386/libsa/string.c
M/branches/iFabio/Chameleon/i386/boot2/modules.h
M/branches/iFabio/Chameleon/i386/boot2/mboot.c
M/branches/iFabio/Chameleon/Chameleon.xcodeproj/project.pbxproj
M/branches/iFabio/Chameleon/i386/boot2/gui.c

File differences

branches/iFabio/Chameleon/Chameleon.xcodeproj/project.pbxproj
77
88
99
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
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
13561387
13571388
13581389
13591390
13601391
13611392
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
13791410
13801411
13811412
13821413
1383
1414
13841415
13851416
1386
1417
13871418
13881419
13891420
13901421
1391
1422
13921423
13931424
1394
1395
1396
1397
1398
1399
1400
1425
1426
1427
1428
1429
1430
1431
14011432
14021433
14031434
14041435
1405
1436
14061437
14071438
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
14391470
14401471
14411472
14421473
1443
1474
14441475
14451476
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
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
14911522
14921523
14931524
14941525
1495
1526
14961527
14971528
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
15291560
15301561
15311562
15321563
1533
1564
15341565
15351566
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
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
15661597
15671598
15681599
15691600
1570
1601
15711602
15721603
1573
1574
1604
1605
15751606
15761607
15771608
15781609
1579
1610
15801611
15811612
1582
1583
1613
1614
15841615
15851616
15861617
15871618
1588
1619
15891620
15901621
1591
1592
1593
1622
1623
1624
15941625
15951626
15961627
15971628
1598
1629
15991630
16001631
1601
1632
16021633
16031634
16041635
16051636
1606
1637
16071638
16081639
1609
1640
16101641
16111642
16121643
16131644
1614
1645
16151646
16161647
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
16281659
16291660
16301661
16311662
1632
1663
16331664
16341665
1635
1636
1666
1667
16371668
16381669
16391670
16401671
1641
1672
16421673
16431674
1644
1645
1646
1647
1648
1649
1675
1676
1677
1678
1679
1680
16501681
16511682
16521683
16531684
1654
1685
16551686
16561687
1657
1658
1659
1688
1689
1690
16601691
16611692
16621693
16631694
1664
1695
16651696
16661697
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
16781709
16791710
16801711
16811712
1682
1713
16831714
16841715
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
17001730
17011731
17021732
17031733
1704
1734
17051735
17061736
1707
1708
1709
1710
1737
1738
1739
1740
17111741
17121742
17131743
17141744
1715
1745
17161746
17171747
1718
1719
1720
1721
1722
1723
1724
1748
1749
1750
1751
1752
1753
1754
17251755
17261756
17271757
17281758
1729
1759
17301760
17311761
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
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
17641794
17651795
17661796
17671797
1768
1798
17691799
17701800
1771
1772
1773
1801
1802
1803
17741804
17751805
17761806
17771807
1778
1808
17791809
17801810
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
18021832
18031833
18041834
18051835
1806
1836
18071837
18081838
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
18191849
18201850
18211851
18221852
1823
1853
18241854
18251855
1826
1827
1856
1857
18281858
18291859
18301860
18311861
1832
1862
18331863
18341864
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
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
18721902
18731903
18741904
18751905
1876
1906
18771907
18781908
1879
1880
1881
1882
1909
1910
1911
1912
18831913
18841914
18851915
18861916
1887
1917
18881918
18891919
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
19051935
19061936
19071937
19081938
1909
1939
19101940
19111941
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
19241954
19251955
19261956
19271957
1928
1958
19291959
19301960
1931
1932
1961
1962
19331963
19341964
19351965
19361966
1937
1967
19381968
19391969
1940
1941
1942
1970
1971
1972
19431973
19441974
19451975
19461976
1947
1977
19481978
19491979
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
19651995
19661996
19671997
19681998
1969
1999
19702000
19712001
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
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
20492079
20502080
20512081
20522082
2053
2083
20542084
20552085
2056
2057
2058
2086
2087
2088
20592089
20602090
20612091
20622092
2063
2093
20642094
20652095
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
20782108
20792109
20802110
20812111
2082
2112
20832113
20842114
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
20982128
20992129
21002130
21012131
2102
2132
21032133
21042134
2105
2106
2107
2108
2109
2110
2111
2135
2136
2137
2138
2139
2140
2141
21122142
21132143
21142144
21152145
2116
2146
21172147
21182148
2119
2120
2121
2122
2123
2124
2125
2126
2149
2150
2151
2152
2153
2154
2155
2156
21272157
21282158
21292159
21302160
2131
2161
21322162
21332163
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
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
21662196
21672197
21682198
21692199
2170
2200
21712201
21722202
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
21842214
21852215
21862216
21872217
2188
2218
21892219
21902220
2191
2192
2193
2194
2195
2221
2222
2223
2224
2225
21962226
21972227
21982228
21992229
2200
2230
22012231
22022232
2203
2204
2233
2234
22052235
22062236
22072237
22082238
2209
2239
22102240
22112241
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
22242254
22252255
22262256
22272257
2228
2258
22292259
22302260
2231
2261
22322262
22332263
22342264
22352265
2236
2266
22372267
22382268
2239
2240
2241
2242
2243
2269
2270
2271
2272
2273
22442274
22452275
22462276
22472277
2248
2278
22492279
22502280
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
22652295
22662296
22672297
22682298
2269
2299
22702300
22712301
2272
2302
22732303
22742304
22752305
22762306
2277
2307
22782308
22792309
2280
2281
2282
2310
2311
2312
22832313
22842314
22852315
22862316
2287
2317
22882318
22892319
2290
2291
2292
2293
2320
2321
2322
2323
22942324
22952325
22962326
22972327
2298
2328
22992329
23002330
2301
2331
23022332
23032333
23042334
23052335
2306
2336
23072337
23082338
2309
2339
23102340
23112341
23122342
23132343
2314
2344
23152345
23162346
2317
2318
2319
2320
2321
2322
2323
2324
2325
2347
2348
2349
2350
2351
2352
2353
2354
2355
23262356
23272357
23282358
23292359
2330
2360
23312361
23322362
2333
2363
23342364
23352365
23362366
23372367
2338
2368
23392369
23402370
2341
2342
2343
2344
2345
2346
2347
2348
2349
2371
2372
2373
2374
2375
2376
2377
2378
2379
23502380
23512381
23522382
23532383
2354
2384
23552385
23562386
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
23832413
23842414
23852415
23862416
2387
2417
23882418
23892419
2390
2420
23912421
23922422
23932423
23942424
2395
2425
23962426
23972427
2398
2399
2400
2401
2402
2428
2429
2430
2431
2432
24032433
24042434
24052435
24062436
2407
2437
24082438
24092439
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
24412471
24422472
24432473
24442474
2445
2475
24462476
24472477
2448
2449
2478
2479
24502480
24512481
24522482
24532483
2454
2484
24552485
24562486
2457
2458
2459
2460
2487
2488
2489
2490
24612491
24622492
24632493
24642494
2465
2495
24662496
24672497
2468
2498
24692499
24702500
24712501
24722502
2473
2503
24742504
24752505
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
25012531
25022532
25032533
25042534
2505
2535
25062536
25072537
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
25202550
25212551
25222552
25232553
2524
2554
25252555
25262556
2527
2528
2557
2558
25292559
25302560
25312561
25322562
2533
2563
25342564
25352565
2536
2537
2566
2567
25382568
25392569
25402570
25412571
2542
2572
25432573
25442574
2545
2575
25462576
25472577
25482578
25492579
2550
2580
25512581
25522582
2553
2583
25542584
25552585
25562586
25572587
2558
2588
25592589
25602590
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
26672697
26682698
26692699
26702700
2671
2701
26722702
26732703
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
26912721
26922722
26932723
26942724
2695
2725
26962726
26972727
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
27122742
27132743
27142744
27152745
2716
2746
27172747
27182748
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
27352765
27362766
27372767
27382768
2739
2769
27402770
27412771
2742
2743
2772
2773
27442774
27452775
27462776
27472777
2748
2778
27492779
27502780
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
27672797
27682798
27692799
27702800
2771
2801
27722802
27732803
2774
2804
27752805
27762806
27772807
27782808
2779
2809
27802810
27812811
2782
2783
2812
2813
27842814
27852815
27862816
27872817
2788
2818
27892819
27902820
2791
2821
27922822
27932823
27942824
27952825
2796
2826
27972827
27982828
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
28132843
28142844
28152845
28162846
2817
2847
28182848
28192849
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
28452875
28462876
28472877
28482878
2849
2879
28502880
28512881
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
28632893
28642894
28652895
28662896
2867
2897
28682898
28692899
2870
2871
2900
2901
28722902
28732903
28742904
28752905
2876
2906
28772907
28782908
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
28972927
28982928
28992929
29002930
2901
2931
29022932
29032933
2904
2905
2934
2935
29062936
29072937
29082938
29092939
2910
2940
29112941
29122942
2913
2914
2943
2944
29152945
29162946
29172947
29182948
2919
2949
29202950
29212951
2922
2923
2924
2925
2926
2952
2953
2954
2955
2956
29272957
29282958
29292959
29302960
2931
2961
29322962
29332963
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
29482978
29492979
29502980
29512981
2952
2982
29532983
29542984
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
30493079
30503080
30513081
30523082
3053
3083
30543084
30553085
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
30693099
30703100
30713101
30723102
3073
3103
30743104
30753105
3076
3077
3078
3079
3080
3081
3106
3107
3108
3109
3110
3111
30823112
30833113
30843114
30853115
3086
3116
30873117
30883118
3089
3090
3091
3092
3093
3094
3119
3120
3121
3122
3123
3124
30953125
30963126
30973127
30983128
3099
3129
31003130
31013131
3102
3103
3104
3105
3132
3133
3134
3135
31063136
31073137
31083138
31093139
3110
3140
31113141
31123142
31133143
31143144
31153145
31163146
3117
3147
31183148
31193149
3120
3121
3150
31223151
31233152
31243153
31253154
3126
3155
31273156
31283157
3129
3130
3131
3132
3133
3134
3158
3159
3160
3161
3162
3163
31353164
31363165
31373166
31383167
3139
3168
31403169
31413170
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
32153244
32163245
32173246
32183247
3219
3248
32203249
32213250
3222
3223
3224
3225
3226
3227
3251
3252
3253
3254
3255
3256
32283257
32293258
32303259
32313260
3232
3261
32333262
32343263
3235
3236
3237
3238
3239
3240
3241
3242
3243
3264
3265
3266
3267
3268
3269
3270
3271
3272
32443273
32453274
32463275
32473276
3248
3277
32493278
32503279
3251
3280
32523281
32533282
32543283
32553284
3256
3285
32573286
32583287
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
33083337
33093338
33103339
33113340
3312
3341
33133342
33143343
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
33803409
33813410
33823411
33833412
3384
3413
33853414
33863415
3387
3388
3389
3390
3391
3416
3417
3418
3419
3420
3421
3422
33923423
33933424
33943425
33953426
3396
3427
33973428
33983429
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
34113452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
34123472
34133473
34143474
3415
3475
34163476
34173477
3418
3419
3420
3478
3479
3480
34213481
34223482
34233483
34243484
3425
3485
34263486
34273487
3428
3488
34293489
34303490
34313491
34323492
3433
3493
34343494
34353495
3436
3496
34373497
34383498
34393499
34403500
3441
3501
34423502
34433503
3444
3504
34453505
34463506
34473507
34483508
3449
3509
34503510
34513511
3452
3453
3454
3512
3513
3514
34553515
34563516
34573517
34583518
3459
3519
34603520
34613521
3462
3522
34633523
34643524
34653525
34663526
3467
3527
34683528
34693529
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
35013561
35023562
35033563
35043564
3505
3565
35063566
35073567
3508
3568
35093569
35103570
35113571
35123572
3513
3573
35143574
35153575
3516
3517
3518
3576
3577
3578
3579
3580
3581
3582
3583
35193584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
35203606
35213607
35223608
3523
3609
35243610
35253611
3526
3527
3528
3529
3530
3531
3612
3613
3614
3615
3616
3617
35323618
35333619
35343620
35353621
3536
3622
35373623
35383624
3539
3540
3541
3542
3543
3544
3625
3626
3627
3628
3629
3630
35453631
35463632
35473633
35483634
3549
3635
35503636
35513637
3552
3553
3554
3555
3556
3557
3558
3638
3639
3640
3641
3642
3643
3644
35593645
35603646
35613647
35623648
3563
3649
35643650
35653651
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
35813667
35823668
35833669
35843670
3585
3671
35863672
35873673
3588
3674
35893675
35903676
35913677
35923678
3593
3679
35943680
35953681
3596
3682
35973683
35983684
35993685
36003686
3601
3687
36023688
36033689
3604
3690
36053691
36063692
36073693
36083694
3609
3695
36103696
36113697
3612
3698
36133699
36143700
36153701
36163702
3617
3703
36183704
36193705
3620
3706
36213707
36223708
36233709
36243710
3625
3711
36263712
36273713
3628
3714
36293715
36303716
36313717
36323718
3633
3719
36343720
36353721
3636
3722
36373723
36383724
36393725
36403726
3641
3727
36423728
36433729
3644
3730
36453731
36463732
36473733
36483734
3649
3735
36503736
36513737
3652
3738
36533739
36543740
36553741
36563742
3657
3743
36583744
36593745
3660
3746
36613747
36623748
36633749
36643750
3665
3751
36663752
36673753
3668
3754
36693755
36703756
36713757
36723758
3673
3759
36743760
36753761
3676
3762
36773763
36783764
36793765
36803766
3681
3767
36823768
36833769
3684
3770
36853771
36863772
36873773
36883774
3689
3775
36903776
36913777
3692
3778
36933779
36943780
36953781
36963782
3697
3783
36983784
36993785
3700
3786
37013787
37023788
37033789
37043790
3705
3791
37063792
37073793
3708
3709
3710
3711
3712
3713
3714
3715
3794
3795
3796
3797
3798
3799
3800
3801
37163802
37173803
37183804
37193805
3720
3806
37213807
37223808
3723
3809
37243810
37253811
37263812
37273813
3728
3814
37293815
37303816
3731
3817
37323818
37333819
37343820
37353821
3736
3822
37373823
37383824
3739
3825
37403826
37413827
37423828
37433829
3744
3830
37453831
37463832
3747
3833
37483834
37493835
37503836
37513837
3752
3838
37533839
37543840
3755
3841
37563842
37573843
37583844
37593845
3760
3846
37613847
37623848
3763
3849
37643850
37653851
37663852
37673853
3768
3854
37693855
37703856
3771
3857
37723858
37733859
37743860
37753861
3776
3862
37773863
37783864
3779
3865
37803866
37813867
37823868
37833869
3784
3870
37853871
37863872
3787
3873
37883874
37893875
37903876
37913877
3792
3878
37933879
37943880
3795
3796
3797
3798
3799
3800
3801
3881
3882
3883
3884
3885
3886
3887
38023888
38033889
38043890
38053891
3806
3892
38073893
38083894
3809
3895
38103896
38113897
38123898
38133899
3814
3900
38153901
38163902
3817
3903
38183904
38193905
38203906
38213907
3822
3908
38233909
38243910
3825
3911
38263912
38273913
38283914
38293915
3830
3916
38313917
38323918
3833
3919
38343920
38353921
38363922
38373923
3838
3924
38393925
38403926
3841
3927
38423928
38433929
38443930
38453931
3846
3932
38473933
38483934
3849
3935
38503936
38513937
38523938
38533939
3854
3940
38553941
38563942
3857
3943
38583944
38593945
38603946
38613947
3862
3948
38633949
38643950
3865
3951
38663952
38673953
38683954
38693955
3870
3956
38713957
38723958
3873
3874
3875
3876
3877
3878
3879
3959
3960
3961
3962
3963
3964
3965
38803966
38813967
38823968
38833969
3884
3970
38853971
38863972
3887
3973
38883974
38893975
38903976
38913977
3892
3978
38933979
38943980
3895
3981
38963982
38973983
38983984
38993985
3900
3986
39013987
39023988
3903
3989
39043990
39053991
39063992
39073993
3908
3994
39093995
39103996
3911
3997
39123998
39133999
39144000
39154001
3916
4002
39174003
39184004
3919
4005
39204006
39214007
39224008
39234009
3924
4010
39254011
39264012
3927
4013
39284014
39294015
39304016
39314017
3932
4018
39334019
39344020
3935
4021
39364022
39374023
39384024
39394025
3940
4026
39414027
39424028
3943
4029
39444030
39454031
39464032
......
39894075
39904076
39914077
3992
4078
39934079
39944080
3995
3996
3997
3998
3999
4081
4082
4083
4084
4085
40004086
40014087
40024088
40034089
4004
4090
40054091
40064092
4007
4008
4009
4010
4011
4093
4094
4095
4096
4097
40124098
40134099
40144100
40154101
4016
4102
40174103
40184104
4019
4105
40204106
40214107
40224108
40234109
4024
4110
40254111
40264112
4027
4028
4029
4030
4031
4113
4114
4115
4116
4117
40324118
40334119
40344120
40354121
4036
4122
40374123
40384124
4039
4125
40404126
40414127
40424128
40434129
4044
4130
40454131
40464132
4047
4133
40484134
40494135
40504136
40514137
4052
4138
40534139
40544140
4055
4141
40564142
40574143
40584144
40594145
4060
4146
40614147
40624148
4063
4149
40644150
40654151
40664152
40674153
4068
4154
40694155
40704156
4071
4157
40724158
40734159
40744160
objects = {
/* Begin PBXFileReference section */
619A50C11391DC74001AAD40 /* APPLE_LICENSE */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = APPLE_LICENSE; sourceTree = "<group>"; };
619A50C51391DC74001AAD40 /* background.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = background.png; sourceTree = "<group>"; };
619A50C61391DC74001AAD40 /* boot.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = boot.png; sourceTree = "<group>"; };
619A50C71391DC74001AAD40 /* device_cdrom.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_cdrom.png; sourceTree = "<group>"; };
619A50C81391DC74001AAD40 /* device_ext3.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_ext3.png; sourceTree = "<group>"; };
619A50C91391DC74001AAD40 /* device_fat16.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_fat16.png; sourceTree = "<group>"; };
619A50CA1391DC74001AAD40 /* device_fat32.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_fat32.png; sourceTree = "<group>"; };
619A50CB1391DC74001AAD40 /* device_generic.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_generic.png; sourceTree = "<group>"; };
619A50CC1391DC74001AAD40 /* device_hfsplus.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_hfsplus.png; sourceTree = "<group>"; };
619A50CD1391DC74001AAD40 /* device_ntfs.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_ntfs.png; sourceTree = "<group>"; };
619A50CE1391DC74001AAD40 /* device_scroll_next.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_scroll_next.png; sourceTree = "<group>"; };
619A50CF1391DC74001AAD40 /* device_scroll_prev.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_scroll_prev.png; sourceTree = "<group>"; };
619A50D01391DC74001AAD40 /* device_selection.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_selection.png; sourceTree = "<group>"; };
619A50D11391DC74001AAD40 /* font_console.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = font_console.png; sourceTree = "<group>"; };
619A50D21391DC74001AAD40 /* font_small.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = font_small.png; sourceTree = "<group>"; };
619A50D31391DC74001AAD40 /* logo.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = logo.png; sourceTree = "<group>"; };
619A50D41391DC74001AAD40 /* menu_boot.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_boot.png; sourceTree = "<group>"; };
619A50D51391DC74001AAD40 /* menu_help.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_help.png; sourceTree = "<group>"; };
619A50D61391DC74001AAD40 /* menu_ignore_caches.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_ignore_caches.png; sourceTree = "<group>"; };
619A50D71391DC74001AAD40 /* menu_ignore_caches_disabled.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_ignore_caches_disabled.png; sourceTree = "<group>"; };
619A50D81391DC74001AAD40 /* menu_memory_info.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_memory_info.png; sourceTree = "<group>"; };
619A50D91391DC74001AAD40 /* menu_selection.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_selection.png; sourceTree = "<group>"; };
619A50DA1391DC74001AAD40 /* menu_single_user.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_single_user.png; sourceTree = "<group>"; };
619A50DB1391DC74001AAD40 /* menu_single_user_disabled.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_single_user_disabled.png; sourceTree = "<group>"; };
619A50DC1391DC74001AAD40 /* menu_verbose.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_verbose.png; sourceTree = "<group>"; };
619A50DD1391DC74001AAD40 /* menu_verbose_disabled.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_verbose_disabled.png; sourceTree = "<group>"; };
619A50DE1391DC74001AAD40 /* menu_video_info.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_video_info.png; sourceTree = "<group>"; };
619A50DF1391DC74001AAD40 /* progress_bar.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = progress_bar.png; sourceTree = "<group>"; };
619A50E01391DC74001AAD40 /* progress_bar_background.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = progress_bar_background.png; sourceTree = "<group>"; };
619A50E11391DC74001AAD40 /* text_scroll_next.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = text_scroll_next.png; sourceTree = "<group>"; };
619A50E21391DC74001AAD40 /* text_scroll_prev.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = text_scroll_prev.png; sourceTree = "<group>"; };
619A50E31391DC74001AAD40 /* theme.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = theme.plist; sourceTree = "<group>"; };
619A50E51391DC74001AAD40 /* background.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = background.png; sourceTree = "<group>"; };
619A50E61391DC74001AAD40 /* boot.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = boot.png; sourceTree = "<group>"; };
619A50E71391DC74001AAD40 /* device_befs.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_befs.png; sourceTree = "<group>"; };
619A50E81391DC74001AAD40 /* device_befs_o.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_befs_o.png; sourceTree = "<group>"; };
619A50E91391DC74001AAD40 /* device_cdrom.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_cdrom.png; sourceTree = "<group>"; };
619A50EA1391DC74001AAD40 /* device_cdrom_o.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_cdrom_o.png; sourceTree = "<group>"; };
619A50EB1391DC74001AAD40 /* device_ext3.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_ext3.png; sourceTree = "<group>"; };
619A50EC1391DC74001AAD40 /* device_ext3_o.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_ext3_o.png; sourceTree = "<group>"; };
619A50ED1391DC74001AAD40 /* device_fat.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_fat.png; sourceTree = "<group>"; };
619A50EE1391DC74001AAD40 /* device_fat_o.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_fat_o.png; sourceTree = "<group>"; };
619A50EF1391DC74001AAD40 /* device_freebsd.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_freebsd.png; sourceTree = "<group>"; };
619A50F01391DC74001AAD40 /* device_freebsd_o.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_freebsd_o.png; sourceTree = "<group>"; };
619A50F11391DC74001AAD40 /* device_generic.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_generic.png; sourceTree = "<group>"; };
619A50F21391DC74001AAD40 /* device_generic_o.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_generic_o.png; sourceTree = "<group>"; };
619A50F31391DC74001AAD40 /* device_hfsplus.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_hfsplus.png; sourceTree = "<group>"; };
619A50F41391DC74001AAD40 /* device_hfsplus_o.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_hfsplus_o.png; sourceTree = "<group>"; };
619A50F51391DC74001AAD40 /* device_hfsraid.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_hfsraid.png; sourceTree = "<group>"; };
619A50F61391DC74001AAD40 /* device_hfsraid_o.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_hfsraid_o.png; sourceTree = "<group>"; };
619A50F71391DC74001AAD40 /* device_ntfs.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_ntfs.png; sourceTree = "<group>"; };
619A50F81391DC74001AAD40 /* device_ntfs_o.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_ntfs_o.png; sourceTree = "<group>"; };
619A50F91391DC74001AAD40 /* device_openbsd.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_openbsd.png; sourceTree = "<group>"; };
619A50FA1391DC74001AAD40 /* device_openbsd_o.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_openbsd_o.png; sourceTree = "<group>"; };
619A50FB1391DC74001AAD40 /* device_scroll_next.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_scroll_next.png; sourceTree = "<group>"; };
619A50FC1391DC74001AAD40 /* device_scroll_prev.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_scroll_prev.png; sourceTree = "<group>"; };
619A50FD1391DC74001AAD40 /* device_selection.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_selection.png; sourceTree = "<group>"; };
619A50FE1391DC74001AAD40 /* font_console.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = font_console.png; sourceTree = "<group>"; };
619A50FF1391DC75001AAD40 /* font_small.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = font_small.png; sourceTree = "<group>"; };
619A51001391DC75001AAD40 /* logo.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = logo.png; sourceTree = "<group>"; };
619A51011391DC75001AAD40 /* menu_boot.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_boot.png; sourceTree = "<group>"; };
619A51021391DC75001AAD40 /* menu_help.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_help.png; sourceTree = "<group>"; };
619A51031391DC75001AAD40 /* menu_ignore_caches.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_ignore_caches.png; sourceTree = "<group>"; };
619A51041391DC75001AAD40 /* menu_ignore_caches_disabled.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_ignore_caches_disabled.png; sourceTree = "<group>"; };
619A51051391DC75001AAD40 /* menu_memory_info.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_memory_info.png; sourceTree = "<group>"; };
619A51061391DC75001AAD40 /* menu_selection.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_selection.png; sourceTree = "<group>"; };
619A51071391DC75001AAD40 /* menu_single_user.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_single_user.png; sourceTree = "<group>"; };
619A51081391DC75001AAD40 /* menu_single_user_disabled.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_single_user_disabled.png; sourceTree = "<group>"; };
619A51091391DC75001AAD40 /* menu_verbose.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_verbose.png; sourceTree = "<group>"; };
619A510A1391DC75001AAD40 /* menu_verbose_disabled.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_verbose_disabled.png; sourceTree = "<group>"; };
619A510B1391DC75001AAD40 /* menu_video_info.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_video_info.png; sourceTree = "<group>"; };
619A510C1391DC75001AAD40 /* progress_bar.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = progress_bar.png; sourceTree = "<group>"; };
619A510D1391DC75001AAD40 /* progress_bar_background.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = progress_bar_background.png; sourceTree = "<group>"; };
619A510E1391DC75001AAD40 /* text_scroll_next.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = text_scroll_next.png; sourceTree = "<group>"; };
619A510F1391DC75001AAD40 /* text_scroll_prev.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = text_scroll_prev.png; sourceTree = "<group>"; };
619A51101391DC75001AAD40 /* theme.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = theme.plist; sourceTree = "<group>"; };
619A51111391DC75001AAD40 /* thumb.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = thumb.png; sourceTree = "<group>"; };
619A51131391DC75001AAD40 /* background.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = background.png; sourceTree = "<group>"; };
619A51141391DC75001AAD40 /* boot.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = boot.png; sourceTree = "<group>"; };
619A51151391DC75001AAD40 /* device_cdrom.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_cdrom.png; sourceTree = "<group>"; };
619A51161391DC75001AAD40 /* device_ext3.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_ext3.png; sourceTree = "<group>"; };
619A51171391DC75001AAD40 /* device_fat.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_fat.png; sourceTree = "<group>"; };
619A51181391DC75001AAD40 /* device_generic.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_generic.png; sourceTree = "<group>"; };
619A51191391DC75001AAD40 /* device_hfsplus.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_hfsplus.png; sourceTree = "<group>"; };
619A511A1391DC75001AAD40 /* device_hfsraid.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_hfsraid.png; sourceTree = "<group>"; };
619A511B1391DC75001AAD40 /* device_ntfs.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_ntfs.png; sourceTree = "<group>"; };
619A511C1391DC75001AAD40 /* device_scroll_next.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_scroll_next.png; sourceTree = "<group>"; };
619A511D1391DC75001AAD40 /* device_scroll_prev.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_scroll_prev.png; sourceTree = "<group>"; };
619A511E1391DC75001AAD40 /* device_selection.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_selection.png; sourceTree = "<group>"; };
619A511F1391DC75001AAD40 /* font_console.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = font_console.png; sourceTree = "<group>"; };
619A51201391DC75001AAD40 /* font_small.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = font_small.png; sourceTree = "<group>"; };
619A51211391DC75001AAD40 /* logo.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = logo.png; sourceTree = "<group>"; };
619A51221391DC75001AAD40 /* menu_boot.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_boot.png; sourceTree = "<group>"; };
619A51231391DC75001AAD40 /* menu_help.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_help.png; sourceTree = "<group>"; };
619A51241391DC75001AAD40 /* menu_ignore_caches.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_ignore_caches.png; sourceTree = "<group>"; };
619A51251391DC75001AAD40 /* menu_ignore_caches_disabled.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_ignore_caches_disabled.png; sourceTree = "<group>"; };
619A51261391DC75001AAD40 /* menu_memory_info.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_memory_info.png; sourceTree = "<group>"; };
619A51271391DC75001AAD40 /* menu_selection.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_selection.png; sourceTree = "<group>"; };
619A51281391DC75001AAD40 /* menu_single_user.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_single_user.png; sourceTree = "<group>"; };
619A51291391DC75001AAD40 /* menu_single_user_disabled.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_single_user_disabled.png; sourceTree = "<group>"; };
619A512A1391DC75001AAD40 /* menu_verbose.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_verbose.png; sourceTree = "<group>"; };
619A512B1391DC75001AAD40 /* menu_verbose_disabled.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_verbose_disabled.png; sourceTree = "<group>"; };
619A512C1391DC75001AAD40 /* menu_video_info.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_video_info.png; sourceTree = "<group>"; };
619A512D1391DC75001AAD40 /* progress_bar.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = progress_bar.png; sourceTree = "<group>"; };
619A512E1391DC75001AAD40 /* progress_bar_background.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = progress_bar_background.png; sourceTree = "<group>"; };
619A512F1391DC75001AAD40 /* text_scroll_next.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = text_scroll_next.png; sourceTree = "<group>"; };
619A51301391DC75001AAD40 /* text_scroll_prev.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = text_scroll_prev.png; sourceTree = "<group>"; };
619A51311391DC75001AAD40 /* theme.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = theme.plist; sourceTree = "<group>"; };
619A51331391DC75001AAD40 /* background.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = background.png; sourceTree = "<group>"; };
619A51341391DC75001AAD40 /* boot.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = boot.png; sourceTree = "<group>"; };
619A51351391DC75001AAD40 /* device_cdrom.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_cdrom.png; sourceTree = "<group>"; };
619A51361391DC75001AAD40 /* device_ext3.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_ext3.png; sourceTree = "<group>"; };
619A51371391DC75001AAD40 /* device_fat.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_fat.png; sourceTree = "<group>"; };
619A51381391DC75001AAD40 /* device_generic.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_generic.png; sourceTree = "<group>"; };
619A51391391DC75001AAD40 /* device_hfsplus.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_hfsplus.png; sourceTree = "<group>"; };
619A513A1391DC75001AAD40 /* device_ntfs.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_ntfs.png; sourceTree = "<group>"; };
619A513B1391DC75001AAD40 /* device_scroll_next.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_scroll_next.png; sourceTree = "<group>"; };
619A513C1391DC75001AAD40 /* device_scroll_prev.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_scroll_prev.png; sourceTree = "<group>"; };
619A513D1391DC75001AAD40 /* device_selection.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_selection.png; sourceTree = "<group>"; };
619A513E1391DC75001AAD40 /* font_console.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = font_console.png; sourceTree = "<group>"; };
619A513F1391DC75001AAD40 /* font_small.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = font_small.png; sourceTree = "<group>"; };
619A51401391DC75001AAD40 /* logo.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = logo.png; sourceTree = "<group>"; };
619A51411391DC75001AAD40 /* menu_boot.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_boot.png; sourceTree = "<group>"; };
619A51421391DC75001AAD40 /* menu_help.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_help.png; sourceTree = "<group>"; };
619A51431391DC75001AAD40 /* menu_ignore_caches.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_ignore_caches.png; sourceTree = "<group>"; };
619A51441391DC75001AAD40 /* menu_ignore_caches_disabled.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_ignore_caches_disabled.png; sourceTree = "<group>"; };
619A51451391DC75001AAD40 /* menu_memory_info.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_memory_info.png; sourceTree = "<group>"; };
619A51461391DC75001AAD40 /* menu_selection.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_selection.png; sourceTree = "<group>"; };
619A51471391DC75001AAD40 /* menu_single_user.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_single_user.png; sourceTree = "<group>"; };
619A51481391DC75001AAD40 /* menu_single_user_disabled.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_single_user_disabled.png; sourceTree = "<group>"; };
619A51491391DC75001AAD40 /* menu_verbose.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_verbose.png; sourceTree = "<group>"; };
619A514A1391DC75001AAD40 /* menu_verbose_disabled.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_verbose_disabled.png; sourceTree = "<group>"; };
619A514B1391DC75001AAD40 /* menu_video_info.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_video_info.png; sourceTree = "<group>"; };
619A514C1391DC75001AAD40 /* progress_bar.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = progress_bar.png; sourceTree = "<group>"; };
619A514D1391DC75001AAD40 /* progress_bar_background.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = progress_bar_background.png; sourceTree = "<group>"; };
619A514E1391DC75001AAD40 /* text_scroll_next.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = text_scroll_next.png; sourceTree = "<group>"; };
619A514F1391DC75001AAD40 /* text_scroll_prev.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = text_scroll_prev.png; sourceTree = "<group>"; };
619A51501391DC75001AAD40 /* theme.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = theme.plist; sourceTree = "<group>"; };
619A51521391DC75001AAD40 /* logo.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = logo.png; sourceTree = "<group>"; };
619A51531391DC75001AAD40 /* theme.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = theme.plist; sourceTree = "<group>"; };
619A51551391DC75001AAD40 /* logo.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = logo.png; sourceTree = "<group>"; };
619A51561391DC75001AAD40 /* theme.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = theme.plist; sourceTree = "<group>"; };
619A51581391DC75001AAD40 /* font_small.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = font_small.png; sourceTree = "<group>"; };
619A51591391DC75001AAD40 /* logo.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = logo.png; sourceTree = "<group>"; };
619A515A1391DC75001AAD40 /* theme.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = theme.plist; sourceTree = "<group>"; };
619A515E1391DC75001AAD40 /* categories.pbxbtree */ = {isa = PBXFileReference; lastKnownFileType = file; path = categories.pbxbtree; sourceTree = "<group>"; };
619A515F1391DC75001AAD40 /* cdecls.pbxbtree */ = {isa = PBXFileReference; lastKnownFileType = file; path = cdecls.pbxbtree; sourceTree = "<group>"; };
619A51601391DC75001AAD40 /* decls.pbxbtree */ = {isa = PBXFileReference; lastKnownFileType = file; path = decls.pbxbtree; sourceTree = "<group>"; };
619A51611391DC75001AAD40 /* files.pbxbtree */ = {isa = PBXFileReference; lastKnownFileType = file; path = files.pbxbtree; sourceTree = "<group>"; };
619A51621391DC75001AAD40 /* imports.pbxbtree */ = {isa = PBXFileReference; lastKnownFileType = file; path = imports.pbxbtree; sourceTree = "<group>"; };
619A51631391DC75001AAD40 /* pbxindex.header */ = {isa = PBXFileReference; lastKnownFileType = file; path = pbxindex.header; sourceTree = "<group>"; };
619A51641391DC75001AAD40 /* protocols.pbxbtree */ = {isa = PBXFileReference; lastKnownFileType = file; path = protocols.pbxbtree; sourceTree = "<group>"; };
619A51651391DC75001AAD40 /* refs.pbxbtree */ = {isa = PBXFileReference; lastKnownFileType = file; path = refs.pbxbtree; sourceTree = "<group>"; };
619A51671391DC75001AAD40 /* control */ = {isa = PBXFileReference; lastKnownFileType = file; path = control; sourceTree = "<group>"; };
619A51681391DC75001AAD40 /* strings */ = {isa = PBXFileReference; lastKnownFileType = file; path = strings; sourceTree = "<group>"; };
619A51691391DC75001AAD40 /* subclasses.pbxbtree */ = {isa = PBXFileReference; lastKnownFileType = file; path = subclasses.pbxbtree; sourceTree = "<group>"; };
619A516A1391DC75001AAD40 /* symbols0.pbxsymbols */ = {isa = PBXFileReference; lastKnownFileType = file; path = symbols0.pbxsymbols; sourceTree = "<group>"; };
619A516B1391DC75001AAD40 /* Cconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Cconfig; sourceTree = "<group>"; };
619A516C1391DC75001AAD40 /* CHANGES */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = CHANGES; sourceTree = "<group>"; };
619A516D1391DC75001AAD40 /* coding_standards.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = coding_standards.txt; sourceTree = "<group>"; };
619A516E1391DC75001AAD40 /* CREDITS */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = CREDITS; sourceTree = "<group>"; };
619A51711391DC75001AAD40 /* Users_Guide0.4.pdf */ = {isa = PBXFileReference; lastKnownFileType = image.pdf; path = Users_Guide0.4.pdf; sourceTree = "<group>"; };
619A51721391DC75001AAD40 /* Users_Guide_v0.3.pdf */ = {isa = PBXFileReference; lastKnownFileType = image.pdf; path = Users_Guide_v0.3.pdf; sourceTree = "<group>"; };
619A51731391DC75001AAD40 /* UsersGuide-v0.2.pdf */ = {isa = PBXFileReference; lastKnownFileType = image.pdf; path = "UsersGuide-v0.2.pdf"; sourceTree = "<group>"; };
619A51741391DC75001AAD40 /* BootHelp.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BootHelp.txt; sourceTree = "<group>"; };
619A51751391DC75001AAD40 /* README */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = README; sourceTree = "<group>"; };
619A51761391DC75001AAD40 /* themeinfo.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = themeinfo.png; sourceTree = "<group>"; };
619A51781391DC75001AAD40 /* Chameleon 2 v0.4.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = "Chameleon 2 v0.4.xml"; sourceTree = "<group>"; };
619A51791391DC75001AAD40 /* Chameleon 2 v0.5.docx */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Chameleon 2 v0.5.docx"; sourceTree = "<group>"; };
619A517A1391DC75001AAD40 /* chameleon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = chameleon.png; sourceTree = "<group>"; };
619A517B1391DC75001AAD40 /* colorchart.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = colorchart.png; sourceTree = "<group>"; };
619A517C1391DC75001AAD40 /* install_complete.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = install_complete.png; sourceTree = "<group>"; };
619A517D1391DC75001AAD40 /* install_cust.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = install_cust.png; sourceTree = "<group>"; };
619A517E1391DC75001AAD40 /* install_dest.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = install_dest.png; sourceTree = "<group>"; };
619A517F1391DC75001AAD40 /* install_stand.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = install_stand.png; sourceTree = "<group>"; };
619A51801391DC75001AAD40 /* install_start.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = install_start.png; sourceTree = "<group>"; };
619A51811391DC75001AAD40 /* screen_format.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = screen_format.png; sourceTree = "<group>"; };
619A51821391DC75001AAD40 /* xnulogo.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = xnulogo.png; sourceTree = "<group>"; };
619A51831391DC75001AAD40 /* Users_Guide0.5.pdf */ = {isa = PBXFileReference; lastKnownFileType = image.pdf; path = Users_Guide0.5.pdf; sourceTree = "<group>"; };
619A51841391DC75001AAD40 /* GPL_V2_LICENSE */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GPL_V2_LICENSE; sourceTree = "<group>"; };
619A51871391DC75001AAD40 /* boot0.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = boot0.s; sourceTree = "<group>"; };
619A51881391DC75001AAD40 /* Cconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Cconfig; sourceTree = "<group>"; };
619A51891391DC75001AAD40 /* chain0.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = chain0.s; sourceTree = "<group>"; };
619A518A1391DC75001AAD40 /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = "<group>"; };
619A518C1391DC75001AAD40 /* boot1f32-install.sh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = "boot1f32-install.sh"; sourceTree = "<group>"; };
619A518D1391DC75001AAD40 /* boot1f32.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = boot1f32.s; sourceTree = "<group>"; };
619A518E1391DC75001AAD40 /* boot1h.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = boot1h.s; sourceTree = "<group>"; };
619A518F1391DC75001AAD40 /* boot1he.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = boot1he.s; sourceTree = "<group>"; };
619A51901391DC75001AAD40 /* boot1hp.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = boot1hp.s; sourceTree = "<group>"; };
619A51911391DC75001AAD40 /* Cconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Cconfig; sourceTree = "<group>"; };
619A51921391DC75001AAD40 /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = "<group>"; };
619A51941391DC75001AAD40 /* appleboot.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = appleboot.h; sourceTree = "<group>"; };
619A51951391DC75001AAD40 /* appleClut8.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = appleClut8.h; sourceTree = "<group>"; };
619A51961391DC75001AAD40 /* bmdecompress.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = bmdecompress.c; sourceTree = "<group>"; };
619A51971391DC75001AAD40 /* boot.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = boot.c; sourceTree = "<group>"; };
619A51981391DC75001AAD40 /* boot.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = boot.h; sourceTree = "<group>"; };
619A51991391DC75001AAD40 /* boot2.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = boot2.s; sourceTree = "<group>"; };
619A519A1391DC75001AAD40 /* Cconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Cconfig; sourceTree = "<group>"; };
619A519B1391DC75001AAD40 /* drivers.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = drivers.c; sourceTree = "<group>"; };
619A519C1391DC75001AAD40 /* graphic_utils.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = graphic_utils.c; sourceTree = "<group>"; };
619A519D1391DC75001AAD40 /* graphic_utils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = graphic_utils.h; sourceTree = "<group>"; };
619A519E1391DC75001AAD40 /* graphics.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = graphics.c; sourceTree = "<group>"; };
619A519F1391DC75001AAD40 /* graphics.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = graphics.h; sourceTree = "<group>"; };
619A51A01391DC75001AAD40 /* gui.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = gui.c; sourceTree = "<group>"; };
619A51A11391DC75001AAD40 /* gui.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gui.h; sourceTree = "<group>"; };
619A51A21391DC75001AAD40 /* IOHibernatePrivate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOHibernatePrivate.h; sourceTree = "<group>"; };
619A51A31391DC75001AAD40 /* lzss.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = lzss.c; sourceTree = "<group>"; };
619A51A41391DC75001AAD40 /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = "<group>"; };
619A51A51391DC75001AAD40 /* mboot.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mboot.c; sourceTree = "<group>"; };
619A51A61391DC75001AAD40 /* mboot.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mboot.h; sourceTree = "<group>"; };
619A51A71391DC75001AAD40 /* modules.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = modules.c; sourceTree = "<group>"; };
619A51A81391DC75001AAD40 /* modules.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = modules.h; sourceTree = "<group>"; };
619A51A91391DC75001AAD40 /* modules_support.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = modules_support.s; sourceTree = "<group>"; };
619A51AA1391DC75001AAD40 /* multiboot.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = multiboot.h; sourceTree = "<group>"; };
619A51AB1391DC75001AAD40 /* options.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = options.c; sourceTree = "<group>"; };
619A51AC1391DC75001AAD40 /* picopng.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = picopng.c; sourceTree = "<group>"; };
619A51AD1391DC75001AAD40 /* picopng.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = picopng.h; sourceTree = "<group>"; };
619A51AE1391DC75001AAD40 /* prompt.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = prompt.c; sourceTree = "<group>"; };
619A51AF1391DC75001AAD40 /* ramdisk.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ramdisk.c; sourceTree = "<group>"; };
619A51B01391DC75001AAD40 /* ramdisk.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ramdisk.h; sourceTree = "<group>"; };
619A51B11391DC75001AAD40 /* resume.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = resume.c; sourceTree = "<group>"; };
619A51B21391DC75001AAD40 /* WKdm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WKdm.h; sourceTree = "<group>"; };
619A51B31391DC75001AAD40 /* WKdmDecompress.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = WKdmDecompress.c; sourceTree = "<group>"; };
619A51B41391DC75001AAD40 /* Cconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Cconfig; sourceTree = "<group>"; };
619A51B61391DC75001AAD40 /* cdboot.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = cdboot.s; sourceTree = "<group>"; };
619A51B71391DC75001AAD40 /* cdboothdd.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = cdboothdd.s; sourceTree = "<group>"; };
619A51B81391DC75001AAD40 /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = "<group>"; };
619A51BA1391DC75001AAD40 /* cconfig.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = cconfig.c; sourceTree = "<group>"; };
619A51BB1391DC75001AAD40 /* checklist.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = checklist.c; sourceTree = "<group>"; };
619A51BC1391DC75001AAD40 /* confdata.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = confdata.c; sourceTree = "<group>"; };
619A51BD1391DC75001AAD40 /* dialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dialog.h; sourceTree = "<group>"; };
619A51BE1391DC75001AAD40 /* expr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = expr.c; sourceTree = "<group>"; };
619A51BF1391DC75001AAD40 /* expr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = expr.h; sourceTree = "<group>"; };
619A51C01391DC75001AAD40 /* inputbox.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = inputbox.c; sourceTree = "<group>"; };
619A51C11391DC75001AAD40 /* lex.zconf.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = lex.zconf.c; sourceTree = "<group>"; };
619A51C21391DC75001AAD40 /* lkc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lkc.h; sourceTree = "<group>"; };
619A51C31391DC75001AAD40 /* lkc_proto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lkc_proto.h; sourceTree = "<group>"; };
619A51C51391DC75001AAD40 /* .gitignore */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = .gitignore; sourceTree = "<group>"; };
619A51C61391DC75001AAD40 /* BIG.FAT.WARNING */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BIG.FAT.WARNING; sourceTree = "<group>"; };
619A51C71391DC75001AAD40 /* check-lxdialog.sh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = "check-lxdialog.sh"; sourceTree = "<group>"; };
619A51C81391DC75001AAD40 /* checklist.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = checklist.c; sourceTree = "<group>"; };
619A51C91391DC75001AAD40 /* dialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dialog.h; sourceTree = "<group>"; };
619A51CA1391DC75001AAD40 /* inputbox.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = inputbox.c; sourceTree = "<group>"; };
619A51CB1391DC75001AAD40 /* menubox.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = menubox.c; sourceTree = "<group>"; };
619A51CC1391DC75001AAD40 /* textbox.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = textbox.c; sourceTree = "<group>"; };
619A51CD1391DC75001AAD40 /* util.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = util.c; sourceTree = "<group>"; };
619A51CE1391DC75001AAD40 /* yesno.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = yesno.c; sourceTree = "<group>"; };
619A51CF1391DC75001AAD40 /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = "<group>"; };
619A51D01391DC75001AAD40 /* menu.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = menu.c; sourceTree = "<group>"; };
619A51D11391DC75001AAD40 /* menubox.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = menubox.c; sourceTree = "<group>"; };
619A51D21391DC75001AAD40 /* nconf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nconf.h; sourceTree = "<group>"; };
619A51D31391DC75001AAD40 /* symbol.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = symbol.c; sourceTree = "<group>"; };
619A51D41391DC75001AAD40 /* textbox.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = textbox.c; sourceTree = "<group>"; };
619A51D51391DC75001AAD40 /* util.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = util.c; sourceTree = "<group>"; };
619A51D61391DC75001AAD40 /* yesno.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = yesno.c; sourceTree = "<group>"; };
619A51D71391DC75001AAD40 /* zconf.hash.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = zconf.hash.c; sourceTree = "<group>"; };
619A51D81391DC75001AAD40 /* zconf.tab.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = zconf.tab.c; sourceTree = "<group>"; };
619A51DA1391DC75001AAD40 /* Limits */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Limits; sourceTree = "<group>"; };
619A51DB1391DC75001AAD40 /* README */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = README; sourceTree = "<group>"; };
619A51DD1391DC75001AAD40 /* _structs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _structs.h; sourceTree = "<group>"; };
619A51DE1391DC75001AAD40 /* _types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _types.h; sourceTree = "<group>"; };
619A51E01391DC75001AAD40 /* alignment.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = alignment.h; sourceTree = "<group>"; };
619A51E11391DC75001AAD40 /* byte_order.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = byte_order.h; sourceTree = "<group>"; };
619A51E31391DC75001AAD40 /* alignment.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = alignment.h; sourceTree = "<group>"; };
619A51E41391DC75001AAD40 /* asm_help.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = asm_help.h; sourceTree = "<group>"; };
619A51E51391DC75001AAD40 /* byte_order.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = byte_order.h; sourceTree = "<group>"; };
619A51E61391DC75001AAD40 /* cpu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cpu.h; sourceTree = "<group>"; };
619A51E71391DC75001AAD40 /* desc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = desc.h; sourceTree = "<group>"; };
619A51E81391DC75001AAD40 /* fenv.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fenv.h; sourceTree = "<group>"; };
619A51E91391DC75001AAD40 /* fpu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fpu.h; sourceTree = "<group>"; };
619A51EA1391DC75001AAD40 /* frame.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = frame.h; sourceTree = "<group>"; };
619A51EB1391DC75001AAD40 /* io.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = io.h; sourceTree = "<group>"; };
619A51EC1391DC75001AAD40 /* math.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = math.h; sourceTree = "<group>"; };
619A51ED1391DC75001AAD40 /* pio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pio.h; sourceTree = "<group>"; };
619A51EE1391DC75001AAD40 /* reg_help.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = reg_help.h; sourceTree = "<group>"; };
619A51EF1391DC75001AAD40 /* sel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sel.h; sourceTree = "<group>"; };
619A51F01391DC75001AAD40 /* table.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = table.h; sourceTree = "<group>"; };
619A51F11391DC75001AAD40 /* tss.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tss.h; sourceTree = "<group>"; };
619A51F31391DC75001AAD40 /* alignment.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = alignment.h; sourceTree = "<group>"; };
619A51F41391DC75001AAD40 /* asm_help.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = asm_help.h; sourceTree = "<group>"; };
619A51F51391DC75001AAD40 /* basic_regs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = basic_regs.h; sourceTree = "<group>"; };
619A51F61391DC75001AAD40 /* byte_order.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = byte_order.h; sourceTree = "<group>"; };
619A51F71391DC75001AAD40 /* cframe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cframe.h; sourceTree = "<group>"; };
619A51F81391DC75001AAD40 /* fenv.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fenv.h; sourceTree = "<group>"; };
619A51F91391DC75001AAD40 /* fp_regs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fp_regs.h; sourceTree = "<group>"; };
619A51FA1391DC75001AAD40 /* macro_help.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = macro_help.h; sourceTree = "<group>"; };
619A51FB1391DC75001AAD40 /* math.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = math.h; sourceTree = "<group>"; };
619A51FC1391DC75001AAD40 /* mode_independent_asm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mode_independent_asm.h; sourceTree = "<group>"; };
619A51FD1391DC75001AAD40 /* pseudo_inst.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pseudo_inst.h; sourceTree = "<group>"; };
619A51FE1391DC75001AAD40 /* reg_help.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = reg_help.h; sourceTree = "<group>"; };
619A51FF1391DC75001AAD40 /* assert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = assert.h; sourceTree = "<group>"; };
619A52001391DC75001AAD40 /* ctype.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ctype.h; sourceTree = "<group>"; };
619A52021391DC75001AAD40 /* device_port.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = device_port.h; sourceTree = "<group>"; };
619A52031391DC75001AAD40 /* device_types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = device_types.h; sourceTree = "<group>"; };
619A52041391DC75001AAD40 /* errno.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = errno.h; sourceTree = "<group>"; };
619A52051391DC75001AAD40 /* float.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = float.h; sourceTree = "<group>"; };
619A52071391DC75001AAD40 /* hfs_encodings.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = hfs_encodings.h; sourceTree = "<group>"; };
619A52081391DC75001AAD40 /* hfs_format.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = hfs_format.h; sourceTree = "<group>"; };
619A52091391DC75001AAD40 /* hfs_mount.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = hfs_mount.h; sourceTree = "<group>"; };
619A520B1391DC75001AAD40 /* _limits.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _limits.h; sourceTree = "<group>"; };
619A520C1391DC75001AAD40 /* _param.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _param.h; sourceTree = "<group>"; };
619A520D1391DC75001AAD40 /* _structs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _structs.h; sourceTree = "<group>"; };
619A520E1391DC75001AAD40 /* _types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _types.h; sourceTree = "<group>"; };
619A520F1391DC75001AAD40 /* eflags.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = eflags.h; sourceTree = "<group>"; };
619A52101391DC75001AAD40 /* endian.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = endian.h; sourceTree = "<group>"; };
619A52111391DC75001AAD40 /* fasttrap_isa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fasttrap_isa.h; sourceTree = "<group>"; };
619A52121391DC75001AAD40 /* limits.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = limits.h; sourceTree = "<group>"; };
619A52131391DC75001AAD40 /* param.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = param.h; sourceTree = "<group>"; };
619A52141391DC75001AAD40 /* profile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = profile.h; sourceTree = "<group>"; };
619A52151391DC75001AAD40 /* setjmp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = setjmp.h; sourceTree = "<group>"; };
619A52161391DC75001AAD40 /* signal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = signal.h; sourceTree = "<group>"; };
619A52171391DC75001AAD40 /* types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = types.h; sourceTree = "<group>"; };
619A52181391DC75001AAD40 /* user_ldt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = user_ldt.h; sourceTree = "<group>"; };
619A52191391DC75001AAD40 /* vmparam.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vmparam.h; sourceTree = "<group>"; };
619A521A1391DC75001AAD40 /* inttypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = inttypes.h; sourceTree = "<group>"; };
619A521D1391DC75001AAD40 /* IOACPIPlatformDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOACPIPlatformDevice.h; sourceTree = "<group>"; };
619A521E1391DC75001AAD40 /* IOACPIPlatformExpert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOACPIPlatformExpert.h; sourceTree = "<group>"; };
619A521F1391DC75001AAD40 /* IOACPITypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOACPITypes.h; sourceTree = "<group>"; };
619A52201391DC75001AAD40 /* assert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = assert.h; sourceTree = "<group>"; };
619A52221391DC75001AAD40 /* ATADeviceNub.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ATADeviceNub.h; sourceTree = "<group>"; };
619A52231391DC75001AAD40 /* ATATimerEventSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ATATimerEventSource.h; sourceTree = "<group>"; };
619A52241391DC75001AAD40 /* IOATABusCommand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOATABusCommand.h; sourceTree = "<group>"; };
619A52251391DC75001AAD40 /* IOATABusInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOATABusInfo.h; sourceTree = "<group>"; };
619A52261391DC75001AAD40 /* IOATACommand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOATACommand.h; sourceTree = "<group>"; };
619A52271391DC75001AAD40 /* IOATAController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOATAController.h; sourceTree = "<group>"; };
619A52281391DC75001AAD40 /* IOATADevConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOATADevConfig.h; sourceTree = "<group>"; };
619A52291391DC75001AAD40 /* IOATADevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOATADevice.h; sourceTree = "<group>"; };
619A522A1391DC75001AAD40 /* IOATARegI386.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOATARegI386.h; sourceTree = "<group>"; };
619A522B1391DC75001AAD40 /* IOATATypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOATATypes.h; sourceTree = "<group>"; };
619A522C1391DC75001AAD40 /* IOPCIATA.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOPCIATA.h; sourceTree = "<group>"; };
619A522D1391DC75001AAD40 /* MacIOATA.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MacIOATA.h; sourceTree = "<group>"; };
619A522F1391DC75001AAD40 /* IOAudioControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOAudioControl.h; sourceTree = "<group>"; };
619A52301391DC75001AAD40 /* IOAudioControlUserClient.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOAudioControlUserClient.h; sourceTree = "<group>"; };
619A52311391DC75001AAD40 /* IOAudioDebug.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOAudioDebug.h; sourceTree = "<group>"; };
619A52321391DC75001AAD40 /* IOAudioDefines.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOAudioDefines.h; sourceTree = "<group>"; };
619A52331391DC75001AAD40 /* IOAudioDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOAudioDevice.h; sourceTree = "<group>"; };
619A52341391DC75001AAD40 /* IOAudioEngine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOAudioEngine.h; sourceTree = "<group>"; };
619A52351391DC75001AAD40 /* IOAudioEngineUserClient.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOAudioEngineUserClient.h; sourceTree = "<group>"; };
619A52361391DC75001AAD40 /* IOAudioLevelControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOAudioLevelControl.h; sourceTree = "<group>"; };
619A52371391DC75001AAD40 /* IOAudioPort.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOAudioPort.h; sourceTree = "<group>"; };
619A52381391DC75001AAD40 /* IOAudioSelectorControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOAudioSelectorControl.h; sourceTree = "<group>"; };
619A52391391DC75001AAD40 /* IOAudioStream.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOAudioStream.h; sourceTree = "<group>"; };
619A523A1391DC75001AAD40 /* IOAudioToggleControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOAudioToggleControl.h; sourceTree = "<group>"; };
619A523B1391DC75001AAD40 /* IOAudioTypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOAudioTypes.h; sourceTree = "<group>"; };
619A523D1391DC75001AAD40 /* IOFireWireAVCCommand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireAVCCommand.h; sourceTree = "<group>"; };
619A523E1391DC75001AAD40 /* IOFireWireAVCConsts.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireAVCConsts.h; sourceTree = "<group>"; };
619A523F1391DC75001AAD40 /* IOFireWireAVCRequestSpace.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireAVCRequestSpace.h; sourceTree = "<group>"; };
619A52401391DC75001AAD40 /* IOFireWireAVCTargetSpace.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireAVCTargetSpace.h; sourceTree = "<group>"; };
619A52411391DC75001AAD40 /* IOFireWireAVCUnit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireAVCUnit.h; sourceTree = "<group>"; };
619A52421391DC75001AAD40 /* IOFireWireAVCUserClientCommon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireAVCUserClientCommon.h; sourceTree = "<group>"; };
619A52431391DC75001AAD40 /* IOFireWirePCRSpace.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWirePCRSpace.h; sourceTree = "<group>"; };
619A52451391DC75001AAD40 /* Bluetooth.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Bluetooth.h; sourceTree = "<group>"; };
619A52461391DC75001AAD40 /* BluetoothAssignedNumbers.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BluetoothAssignedNumbers.h; sourceTree = "<group>"; };
619A52471391DC75001AAD40 /* IOBluetoothHCIController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOBluetoothHCIController.h; sourceTree = "<group>"; };
619A52481391DC75001AAD40 /* IOBluetoothHCIRequest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOBluetoothHCIRequest.h; sourceTree = "<group>"; };
619A52491391DC75001AAD40 /* IOBluetoothHIDDriver.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOBluetoothHIDDriver.h; sourceTree = "<group>"; };
619A524A1391DC75001AAD40 /* IOBluetoothHIDDriverTypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOBluetoothHIDDriverTypes.h; sourceTree = "<group>"; };
619A524B1391DC75001AAD40 /* IOBluetoothInternal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOBluetoothInternal.h; sourceTree = "<group>"; };
619A524C1391DC75001AAD40 /* IOBluetoothTypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOBluetoothTypes.h; sourceTree = "<group>"; };
619A524E1391DC75001AAD40 /* IOConfigDirectory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOConfigDirectory.h; sourceTree = "<group>"; };
619A524F1391DC75001AAD40 /* IOFireWireBus.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireBus.h; sourceTree = "<group>"; };
619A52501391DC75001AAD40 /* IOFireWireController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireController.h; sourceTree = "<group>"; };
619A52511391DC75001AAD40 /* IOFireWireDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireDevice.h; sourceTree = "<group>"; };
619A52521391DC75001AAD40 /* IOFireWireFamilyCommon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireFamilyCommon.h; sourceTree = "<group>"; };
619A52531391DC75001AAD40 /* IOFireWireIRMAllocation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireIRMAllocation.h; sourceTree = "<group>"; };
619A52541391DC75001AAD40 /* IOFireWireLocalNode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireLocalNode.h; sourceTree = "<group>"; };
619A52551391DC75001AAD40 /* IOFireWireMultiIsochReceive.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireMultiIsochReceive.h; sourceTree = "<group>"; };
619A52561391DC75001AAD40 /* IOFireWireNub.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireNub.h; sourceTree = "<group>"; };
619A52571391DC75001AAD40 /* IOFireWirePowerManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWirePowerManager.h; sourceTree = "<group>"; };
619A52581391DC75001AAD40 /* IOFireWireUnit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireUnit.h; sourceTree = "<group>"; };
619A52591391DC75001AAD40 /* IOFWAddressSpace.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFWAddressSpace.h; sourceTree = "<group>"; };
619A525A1391DC75001AAD40 /* IOFWAsyncStreamListener.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFWAsyncStreamListener.h; sourceTree = "<group>"; };
619A525B1391DC75001AAD40 /* IOFWCommand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFWCommand.h; sourceTree = "<group>"; };
619A525C1391DC75001AAD40 /* IOFWDCL.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFWDCL.h; sourceTree = "<group>"; };
619A525D1391DC75001AAD40 /* IOFWDCLPool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFWDCLPool.h; sourceTree = "<group>"; };
619A525E1391DC75001AAD40 /* IOFWDCLProgram.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFWDCLProgram.h; sourceTree = "<group>"; };
619A525F1391DC75001AAD40 /* IOFWDCLTranslator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFWDCLTranslator.h; sourceTree = "<group>"; };
619A52601391DC75001AAD40 /* IOFWIsochChannel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFWIsochChannel.h; sourceTree = "<group>"; };
619A52611391DC75001AAD40 /* IOFWIsochPort.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFWIsochPort.h; sourceTree = "<group>"; };
619A52621391DC75001AAD40 /* IOFWLocalIsochPort.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFWLocalIsochPort.h; sourceTree = "<group>"; };
619A52631391DC75001AAD40 /* IOFWPHYPacketListener.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFWPHYPacketListener.h; sourceTree = "<group>"; };
619A52641391DC75001AAD40 /* IOFWPhysicalAddressSpace.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFWPhysicalAddressSpace.h; sourceTree = "<group>"; };
619A52651391DC75001AAD40 /* IOFWPseudoAddressSpace.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFWPseudoAddressSpace.h; sourceTree = "<group>"; };
619A52661391DC75001AAD40 /* IOFWRegs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFWRegs.h; sourceTree = "<group>"; };
619A52671391DC75001AAD40 /* IOFWSimpleContiguousPhysicalAddressSpace.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFWSimpleContiguousPhysicalAddressSpace.h; sourceTree = "<group>"; };
619A52681391DC75001AAD40 /* IOFWSimplePhysicalAddressSpace.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFWSimplePhysicalAddressSpace.h; sourceTree = "<group>"; };
619A52691391DC75001AAD40 /* IOFWSyncer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFWSyncer.h; sourceTree = "<group>"; };
619A526A1391DC75001AAD40 /* IOFWUserObjectExporter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFWUserObjectExporter.h; sourceTree = "<group>"; };
619A526B1391DC75001AAD40 /* IOFWUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFWUtils.h; sourceTree = "<group>"; };
619A526C1391DC75001AAD40 /* IOLocalConfigDirectory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOLocalConfigDirectory.h; sourceTree = "<group>"; };
619A526D1391DC75001AAD40 /* IORemoteConfigDirectory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IORemoteConfigDirectory.h; sourceTree = "<group>"; };
619A526F1391DC75001AAD40 /* IOAccelClientConnect.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOAccelClientConnect.h; sourceTree = "<group>"; };
619A52701391DC75001AAD40 /* IOAccelerator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOAccelerator.h; sourceTree = "<group>"; };
619A52711391DC75001AAD40 /* IOAccelSurfaceConnect.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOAccelSurfaceConnect.h; sourceTree = "<group>"; };
619A52721391DC75001AAD40 /* IOAccelTypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOAccelTypes.h; sourceTree = "<group>"; };
619A52731391DC75001AAD40 /* IODisplay.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IODisplay.h; sourceTree = "<group>"; };
619A52741391DC75001AAD40 /* IOFramebuffer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFramebuffer.h; sourceTree = "<group>"; };
619A52751391DC75001AAD40 /* IOFramebufferShared.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFramebufferShared.h; sourceTree = "<group>"; };
619A52761391DC75001AAD40 /* IOGraphicsDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOGraphicsDevice.h; sourceTree = "<group>"; };
619A52771391DC75001AAD40 /* IOGraphicsEngine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOGraphicsEngine.h; sourceTree = "<group>"; };
619A52781391DC75001AAD40 /* IOGraphicsInterfaceTypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOGraphicsInterfaceTypes.h; sourceTree = "<group>"; };
619A52791391DC75001AAD40 /* IOGraphicsTypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOGraphicsTypes.h; sourceTree = "<group>"; };
619A527B1391DC75001AAD40 /* IOHIDDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOHIDDevice.h; sourceTree = "<group>"; };
619A527C1391DC75001AAD40 /* IOHIDElement.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOHIDElement.h; sourceTree = "<group>"; };
619A527D1391DC75001AAD40 /* IOHIDInterface.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOHIDInterface.h; sourceTree = "<group>"; };
619A527E1391DC75001AAD40 /* IOHIDKeys.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOHIDKeys.h; sourceTree = "<group>"; };
619A527F1391DC75001AAD40 /* IOHIDUsageTables.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOHIDUsageTables.h; sourceTree = "<group>"; };
619A52811391DC75001AAD40 /* IOHIDEventDriver.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOHIDEventDriver.h; sourceTree = "<group>"; };
619A52821391DC75001AAD40 /* IOHIDEventService.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOHIDEventService.h; sourceTree = "<group>"; };
619A52841391DC75001AAD40 /* ev_keymap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ev_keymap.h; sourceTree = "<group>"; };
619A52851391DC75001AAD40 /* IOHIDDescriptorParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOHIDDescriptorParser.h; sourceTree = "<group>"; };
619A52861391DC75001AAD40 /* IOHIDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOHIDevice.h; sourceTree = "<group>"; };
619A52871391DC75001AAD40 /* IOHIDParameter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOHIDParameter.h; sourceTree = "<group>"; };
619A52881391DC75001AAD40 /* IOHIDShared.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOHIDShared.h; sourceTree = "<group>"; };
619A52891391DC75001AAD40 /* IOHIDSystem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOHIDSystem.h; sourceTree = "<group>"; };
619A528A1391DC75001AAD40 /* IOHIDTypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOHIDTypes.h; sourceTree = "<group>"; };
619A528B1391DC75001AAD40 /* IOHIDUsageTables.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOHIDUsageTables.h; sourceTree = "<group>"; };
619A528C1391DC75001AAD40 /* IOHIKeyboard.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOHIKeyboard.h; sourceTree = "<group>"; };
619A528D1391DC75001AAD40 /* IOHIKeyboardMapper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOHIKeyboardMapper.h; sourceTree = "<group>"; };
619A528E1391DC75001AAD40 /* IOHIPointing.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOHIPointing.h; sourceTree = "<group>"; };
619A528F1391DC75001AAD40 /* IOLLEvent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOLLEvent.h; sourceTree = "<group>"; };
619A52911391DC75001AAD40 /* IOI2CInterface.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOI2CInterface.h; sourceTree = "<group>"; };
619A52921391DC75001AAD40 /* IOBSD.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOBSD.h; sourceTree = "<group>"; };
619A52931391DC75001AAD40 /* IOBufferMemoryDescriptor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOBufferMemoryDescriptor.h; sourceTree = "<group>"; };
619A52941391DC75001AAD40 /* IOCatalogue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOCatalogue.h; sourceTree = "<group>"; };
619A52951391DC75001AAD40 /* IOCommand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOCommand.h; sourceTree = "<group>"; };
619A52961391DC75001AAD40 /* IOCommandGate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOCommandGate.h; sourceTree = "<group>"; };
619A52971391DC75001AAD40 /* IOCommandPool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOCommandPool.h; sourceTree = "<group>"; };
619A52981391DC75001AAD40 /* IOConditionLock.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOConditionLock.h; sourceTree = "<group>"; };
619A52991391DC75001AAD40 /* IODataQueue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IODataQueue.h; sourceTree = "<group>"; };
619A529A1391DC75001AAD40 /* IODataQueueShared.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IODataQueueShared.h; sourceTree = "<group>"; };
619A529B1391DC75001AAD40 /* IODeviceMemory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IODeviceMemory.h; sourceTree = "<group>"; };
619A529C1391DC75001AAD40 /* IODeviceTreeSupport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IODeviceTreeSupport.h; sourceTree = "<group>"; };
619A529D1391DC75001AAD40 /* IODMACommand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IODMACommand.h; sourceTree = "<group>"; };
619A529E1391DC75001AAD40 /* IODMAController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IODMAController.h; sourceTree = "<group>"; };
619A529F1391DC75001AAD40 /* IODMAEventSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IODMAEventSource.h; sourceTree = "<group>"; };
619A52A01391DC75001AAD40 /* IOEventSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOEventSource.h; sourceTree = "<group>"; };
619A52A11391DC75001AAD40 /* IOFilterInterruptEventSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFilterInterruptEventSource.h; sourceTree = "<group>"; };
619A52A21391DC75001AAD40 /* IOInterleavedMemoryDescriptor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOInterleavedMemoryDescriptor.h; sourceTree = "<group>"; };
619A52A31391DC75001AAD40 /* IOInterruptController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOInterruptController.h; sourceTree = "<group>"; };
619A52A41391DC75001AAD40 /* IOInterruptEventSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOInterruptEventSource.h; sourceTree = "<group>"; };
619A52A51391DC75001AAD40 /* IOInterrupts.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOInterrupts.h; sourceTree = "<group>"; };
619A52A61391DC75001AAD40 /* IOKitDebug.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOKitDebug.h; sourceTree = "<group>"; };
619A52A71391DC75001AAD40 /* IOKitKeys.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOKitKeys.h; sourceTree = "<group>"; };
619A52A81391DC75001AAD40 /* IOKitServer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOKitServer.h; sourceTree = "<group>"; };
619A52A91391DC75001AAD40 /* IOLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOLib.h; sourceTree = "<group>"; };
619A52AA1391DC75001AAD40 /* IOLocks.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOLocks.h; sourceTree = "<group>"; };
619A52AB1391DC75001AAD40 /* IOMapper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOMapper.h; sourceTree = "<group>"; };
619A52AC1391DC75001AAD40 /* IOMemoryCursor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOMemoryCursor.h; sourceTree = "<group>"; };
619A52AD1391DC75001AAD40 /* IOMemoryDescriptor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOMemoryDescriptor.h; sourceTree = "<group>"; };
619A52AE1391DC75001AAD40 /* IOMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOMessage.h; sourceTree = "<group>"; };
619A52AF1391DC75001AAD40 /* IOMultiMemoryDescriptor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOMultiMemoryDescriptor.h; sourceTree = "<group>"; };
619A52B01391DC75001AAD40 /* IONotifier.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IONotifier.h; sourceTree = "<group>"; };
619A52B11391DC75001AAD40 /* IONVRAM.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IONVRAM.h; sourceTree = "<group>"; };
619A52B21391DC75001AAD40 /* IOPlatformExpert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOPlatformExpert.h; sourceTree = "<group>"; };
619A52B31391DC75001AAD40 /* IORangeAllocator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IORangeAllocator.h; sourceTree = "<group>"; };
619A52B41391DC75001AAD40 /* IORegistryEntry.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IORegistryEntry.h; sourceTree = "<group>"; };
619A52B51391DC75001AAD40 /* IOReturn.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOReturn.h; sourceTree = "<group>"; };
619A52B61391DC75001AAD40 /* IOService.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOService.h; sourceTree = "<group>"; };
619A52B71391DC75001AAD40 /* IOServicePM.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOServicePM.h; sourceTree = "<group>"; };
619A52B81391DC75001AAD40 /* IOSharedDataQueue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOSharedDataQueue.h; sourceTree = "<group>"; };
619A52B91391DC75001AAD40 /* IOSharedLock.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOSharedLock.h; sourceTree = "<group>"; };
619A52BA1391DC75001AAD40 /* IOSubMemoryDescriptor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOSubMemoryDescriptor.h; sourceTree = "<group>"; };
619A52BB1391DC75001AAD40 /* IOSyncer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOSyncer.h; sourceTree = "<group>"; };
619A52BC1391DC75001AAD40 /* IOTimerEventSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOTimerEventSource.h; sourceTree = "<group>"; };
619A52BD1391DC75001AAD40 /* IOTimeStamp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOTimeStamp.h; sourceTree = "<group>"; };
619A52BE1391DC75001AAD40 /* IOTypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOTypes.h; sourceTree = "<group>"; };
619A52BF1391DC75001AAD40 /* IOUserClient.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOUserClient.h; sourceTree = "<group>"; };
619A52C01391DC75001AAD40 /* IOWorkLoop.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOWorkLoop.h; sourceTree = "<group>"; };
619A52C21391DC75001AAD40 /* IOMacOSTypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOMacOSTypes.h; sourceTree = "<group>"; };
619A52C31391DC75001AAD40 /* IOMacOSVideo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOMacOSVideo.h; sourceTree = "<group>"; };
619A52C41391DC75001AAD40 /* IONDRVFramebuffer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IONDRVFramebuffer.h; sourceTree = "<group>"; };
619A52C51391DC75001AAD40 /* IONDRVLibraries.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IONDRVLibraries.h; sourceTree = "<group>"; };
619A52C61391DC75001AAD40 /* IONDRVSupport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IONDRVSupport.h; sourceTree = "<group>"; };
619A52C81391DC75001AAD40 /* IOBasicOutputQueue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOBasicOutputQueue.h; sourceTree = "<group>"; };
619A52C91391DC75001AAD40 /* IOEthernetController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOEthernetController.h; sourceTree = "<group>"; };
619A52CA1391DC75001AAD40 /* IOEthernetInterface.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOEthernetInterface.h; sourceTree = "<group>"; };
619A52CB1391DC75001AAD40 /* IOEthernetStats.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOEthernetStats.h; sourceTree = "<group>"; };
619A52CC1391DC75001AAD40 /* IOGatedOutputQueue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOGatedOutputQueue.h; sourceTree = "<group>"; };
619A52CD1391DC75001AAD40 /* IOKernelDebugger.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOKernelDebugger.h; sourceTree = "<group>"; };
619A52CE1391DC75001AAD40 /* IOMbufMemoryCursor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOMbufMemoryCursor.h; sourceTree = "<group>"; };
619A52CF1391DC75001AAD40 /* IONetworkController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IONetworkController.h; sourceTree = "<group>"; };
619A52D01391DC75001AAD40 /* IONetworkData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IONetworkData.h; sourceTree = "<group>"; };
619A52D11391DC75001AAD40 /* IONetworkInterface.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IONetworkInterface.h; sourceTree = "<group>"; };
619A52D21391DC75001AAD40 /* IONetworkMedium.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IONetworkMedium.h; sourceTree = "<group>"; };
619A52D31391DC75001AAD40 /* IONetworkStats.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IONetworkStats.h; sourceTree = "<group>"; };
619A52D41391DC75001AAD40 /* IOOutputQueue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOOutputQueue.h; sourceTree = "<group>"; };
619A52D51391DC75001AAD40 /* IOPacketQueue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOPacketQueue.h; sourceTree = "<group>"; };
619A52D71391DC75001AAD40 /* IONVRAMController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IONVRAMController.h; sourceTree = "<group>"; };
619A52D81391DC75001AAD40 /* OSMessageNotification.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OSMessageNotification.h; sourceTree = "<group>"; };
619A52DA1391DC75001AAD40 /* IOAGPDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOAGPDevice.h; sourceTree = "<group>"; };
619A52DB1391DC75001AAD40 /* IOPCIBridge.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOPCIBridge.h; sourceTree = "<group>"; };
619A52DC1391DC75001AAD40 /* IOPCIDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOPCIDevice.h; sourceTree = "<group>"; };
619A52DE1391DC75001AAD40 /* AppleMacIO.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppleMacIO.h; sourceTree = "<group>"; };
619A52DF1391DC75001AAD40 /* AppleMacIODevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppleMacIODevice.h; sourceTree = "<group>"; };
619A52E01391DC75001AAD40 /* AppleNMI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppleNMI.h; sourceTree = "<group>"; };
619A52E11391DC75001AAD40 /* ApplePlatformExpert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ApplePlatformExpert.h; sourceTree = "<group>"; };
619A52E31391DC75001AAD40 /* IOPwrController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOPwrController.h; sourceTree = "<group>"; };
619A52E51391DC75001AAD40 /* IODBDMA.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IODBDMA.h; sourceTree = "<group>"; };
619A52E71391DC75001AAD40 /* IOPM.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOPM.h; sourceTree = "<group>"; };
619A52E81391DC75001AAD40 /* IOPMDeprecated.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOPMDeprecated.h; sourceTree = "<group>"; };
619A52E91391DC75001AAD40 /* IOPMLibDefs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOPMLibDefs.h; sourceTree = "<group>"; };
619A52EA1391DC75001AAD40 /* IOPMPowerSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOPMPowerSource.h; sourceTree = "<group>"; };
619A52EB1391DC75001AAD40 /* IOPMPowerSourceList.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOPMPowerSourceList.h; sourceTree = "<group>"; };
619A52EC1391DC75001AAD40 /* IOPMpowerState.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOPMpowerState.h; sourceTree = "<group>"; };
619A52ED1391DC75001AAD40 /* IOPMPrivate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOPMPrivate.h; sourceTree = "<group>"; };
619A52EE1391DC75001AAD40 /* IOPowerConnection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOPowerConnection.h; sourceTree = "<group>"; };
619A52EF1391DC75001AAD40 /* RootDomain.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RootDomain.h; sourceTree = "<group>"; };
619A52F11391DC75001AAD40 /* IORTCController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IORTCController.h; sourceTree = "<group>"; };
619A52F31391DC75001AAD40 /* IOFireWireSBP2Login.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireSBP2Login.h; sourceTree = "<group>"; };
619A52F41391DC75001AAD40 /* IOFireWireSBP2LSIWorkaroundDescriptor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireSBP2LSIWorkaroundDescriptor.h; sourceTree = "<group>"; };
619A52F51391DC75001AAD40 /* IOFireWireSBP2LUN.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireSBP2LUN.h; sourceTree = "<group>"; };
619A52F61391DC75001AAD40 /* IOFireWireSBP2ManagementORB.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireSBP2ManagementORB.h; sourceTree = "<group>"; };
619A52F71391DC75001AAD40 /* IOFireWireSBP2ORB.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireSBP2ORB.h; sourceTree = "<group>"; };
619A52F81391DC75001AAD40 /* IOFireWireSBP2Target.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireSBP2Target.h; sourceTree = "<group>"; };
619A52F91391DC75001AAD40 /* IOFireWireSBP2UserClient.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireSBP2UserClient.h; sourceTree = "<group>"; };
619A52FA1391DC75001AAD40 /* IOFireWireSBP2UserClientCommon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireSBP2UserClientCommon.h; sourceTree = "<group>"; };
619A52FB1391DC75001AAD40 /* IOFireWireSerialBusProtocolTransport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireSerialBusProtocolTransport.h; sourceTree = "<group>"; };
619A52FD1391DC75001AAD40 /* IOBDServices.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOBDServices.h; sourceTree = "<group>"; };
619A52FE1391DC75001AAD40 /* IOBlockStorageServices.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOBlockStorageServices.h; sourceTree = "<group>"; };
619A52FF1391DC75001AAD40 /* IOCompactDiscServices.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOCompactDiscServices.h; sourceTree = "<group>"; };
619A53001391DC75001AAD40 /* IODVDServices.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IODVDServices.h; sourceTree = "<group>"; };
619A53011391DC75001AAD40 /* IOReducedBlockServices.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOReducedBlockServices.h; sourceTree = "<group>"; };
619A53021391DC75001AAD40 /* IOSCSIBlockCommandsDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOSCSIBlockCommandsDevice.h; sourceTree = "<group>"; };
619A53031391DC75001AAD40 /* IOSCSIMultimediaCommandsDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOSCSIMultimediaCommandsDevice.h; sourceTree = "<group>"; };
619A53041391DC75001AAD40 /* IOSCSIPeripheralDeviceNub.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOSCSIPeripheralDeviceNub.h; sourceTree = "<group>"; };
619A53051391DC75001AAD40 /* IOSCSIPeripheralDeviceType00.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOSCSIPeripheralDeviceType00.h; sourceTree = "<group>"; };
619A53061391DC75001AAD40 /* IOSCSIPeripheralDeviceType05.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOSCSIPeripheralDeviceType05.h; sourceTree = "<group>"; };
619A53071391DC75001AAD40 /* IOSCSIPeripheralDeviceType07.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOSCSIPeripheralDeviceType07.h; sourceTree = "<group>"; };
619A53081391DC75001AAD40 /* IOSCSIPeripheralDeviceType0E.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOSCSIPeripheralDeviceType0E.h; sourceTree = "<group>"; };
619A53091391DC75001AAD40 /* IOSCSIPrimaryCommandsDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOSCSIPrimaryCommandsDevice.h; sourceTree = "<group>"; };
619A530A1391DC75001AAD40 /* IOSCSIProtocolInterface.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOSCSIProtocolInterface.h; sourceTree = "<group>"; };
619A530B1391DC75001AAD40 /* IOSCSIProtocolServices.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOSCSIProtocolServices.h; sourceTree = "<group>"; };
619A530C1391DC75001AAD40 /* IOSCSIReducedBlockCommandsDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOSCSIReducedBlockCommandsDevice.h; sourceTree = "<group>"; };
619A530D1391DC75001AAD40 /* SCSICmds_INQUIRY_Definitions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SCSICmds_INQUIRY_Definitions.h; sourceTree = "<group>"; };
619A530E1391DC75001AAD40 /* SCSICmds_MODE_Definitions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SCSICmds_MODE_Definitions.h; sourceTree = "<group>"; };
619A530F1391DC75001AAD40 /* SCSICmds_READ_CAPACITY_Definitions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SCSICmds_READ_CAPACITY_Definitions.h; sourceTree = "<group>"; };
619A53101391DC75001AAD40 /* SCSICmds_REPORT_LUNS_Definitions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SCSICmds_REPORT_LUNS_Definitions.h; sourceTree = "<group>"; };
619A53111391DC75001AAD40 /* SCSICmds_REQUEST_SENSE_Defs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SCSICmds_REQUEST_SENSE_Defs.h; sourceTree = "<group>"; };
619A53121391DC75001AAD40 /* SCSICommandDefinitions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SCSICommandDefinitions.h; sourceTree = "<group>"; };
619A53131391DC75001AAD40 /* SCSICommandOperationCodes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SCSICommandOperationCodes.h; sourceTree = "<group>"; };
619A53141391DC75001AAD40 /* SCSIPort.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SCSIPort.h; sourceTree = "<group>"; };
619A53151391DC75001AAD40 /* SCSITask.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SCSITask.h; sourceTree = "<group>"; };
619A53171391DC75001AAD40 /* IOSCSIParallelInterfaceController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOSCSIParallelInterfaceController.h; sourceTree = "<group>"; };
619A53191391DC75001AAD40 /* IOModemSerialStreamSync.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOModemSerialStreamSync.h; sourceTree = "<group>"; };
619A531A1391DC75001AAD40 /* IORS232SerialStreamSync.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IORS232SerialStreamSync.h; sourceTree = "<group>"; };
619A531B1391DC75001AAD40 /* IOSerialDriverSync.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOSerialDriverSync.h; sourceTree = "<group>"; };
619A531C1391DC75001AAD40 /* IOSerialKeys.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOSerialKeys.h; sourceTree = "<group>"; };
619A531D1391DC75001AAD40 /* IOSerialStreamSync.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOSerialStreamSync.h; sourceTree = "<group>"; };
619A53201391DC75001AAD40 /* IOATAPIProtocolTransport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOATAPIProtocolTransport.h; sourceTree = "<group>"; };
619A53211391DC75001AAD40 /* IOATAStorageDefines.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOATAStorageDefines.h; sourceTree = "<group>"; };
619A53221391DC75001AAD40 /* IOAppleLabelScheme.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOAppleLabelScheme.h; sourceTree = "<group>"; };
619A53231391DC75001AAD40 /* IOApplePartitionScheme.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOApplePartitionScheme.h; sourceTree = "<group>"; };
619A53241391DC75001AAD40 /* IOBDBlockStorageDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOBDBlockStorageDevice.h; sourceTree = "<group>"; };
619A53251391DC75001AAD40 /* IOBDBlockStorageDriver.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOBDBlockStorageDriver.h; sourceTree = "<group>"; };
619A53261391DC75001AAD40 /* IOBDMedia.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOBDMedia.h; sourceTree = "<group>"; };
619A53271391DC75001AAD40 /* IOBDMediaBSDClient.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOBDMediaBSDClient.h; sourceTree = "<group>"; };
619A53281391DC75001AAD40 /* IOBDTypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOBDTypes.h; sourceTree = "<group>"; };
619A53291391DC75001AAD40 /* IOBlockStorageDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOBlockStorageDevice.h; sourceTree = "<group>"; };
619A532A1391DC75001AAD40 /* IOBlockStorageDriver.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOBlockStorageDriver.h; sourceTree = "<group>"; };
619A532B1391DC75001AAD40 /* IOCDBlockStorageDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOCDBlockStorageDevice.h; sourceTree = "<group>"; };
619A532C1391DC75001AAD40 /* IOCDBlockStorageDriver.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOCDBlockStorageDriver.h; sourceTree = "<group>"; };
619A532D1391DC75001AAD40 /* IOCDMedia.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOCDMedia.h; sourceTree = "<group>"; };
619A532E1391DC75001AAD40 /* IOCDMediaBSDClient.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOCDMediaBSDClient.h; sourceTree = "<group>"; };
619A532F1391DC75001AAD40 /* IOCDPartitionScheme.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOCDPartitionScheme.h; sourceTree = "<group>"; };
619A53301391DC75001AAD40 /* IOCDTypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOCDTypes.h; sourceTree = "<group>"; };
619A53311391DC75001AAD40 /* IODVDBlockStorageDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IODVDBlockStorageDevice.h; sourceTree = "<group>"; };
619A53321391DC75001AAD40 /* IODVDBlockStorageDriver.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IODVDBlockStorageDriver.h; sourceTree = "<group>"; };
619A53331391DC75001AAD40 /* IODVDMedia.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IODVDMedia.h; sourceTree = "<group>"; };
619A53341391DC75001AAD40 /* IODVDMediaBSDClient.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IODVDMediaBSDClient.h; sourceTree = "<group>"; };
619A53351391DC75001AAD40 /* IODVDTypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IODVDTypes.h; sourceTree = "<group>"; };
619A53361391DC75001AAD40 /* IOFDiskPartitionScheme.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFDiskPartitionScheme.h; sourceTree = "<group>"; };
619A53371391DC75001AAD40 /* IOFilterScheme.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFilterScheme.h; sourceTree = "<group>"; };
619A53381391DC75001AAD40 /* IOFireWireStorageCharacteristics.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireStorageCharacteristics.h; sourceTree = "<group>"; };
619A53391391DC75001AAD40 /* IOGUIDPartitionScheme.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOGUIDPartitionScheme.h; sourceTree = "<group>"; };
619A533A1391DC75001AAD40 /* IOMedia.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOMedia.h; sourceTree = "<group>"; };
619A533B1391DC75001AAD40 /* IOMediaBSDClient.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOMediaBSDClient.h; sourceTree = "<group>"; };
619A533C1391DC75001AAD40 /* IOPartitionScheme.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOPartitionScheme.h; sourceTree = "<group>"; };
619A533D1391DC75001AAD40 /* IOStorage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOStorage.h; sourceTree = "<group>"; };
619A533E1391DC75001AAD40 /* IOStorageDeviceCharacteristics.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOStorageDeviceCharacteristics.h; sourceTree = "<group>"; };
619A533F1391DC75001AAD40 /* IOStorageProtocolCharacteristics.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOStorageProtocolCharacteristics.h; sourceTree = "<group>"; };
619A53411391DC75001AAD40 /* IOStream.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOStream.h; sourceTree = "<group>"; };
619A53421391DC75001AAD40 /* IOStreamFamily.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOStreamFamily.h; sourceTree = "<group>"; };
619A53431391DC75001AAD40 /* IOStreamShared.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOStreamShared.h; sourceTree = "<group>"; };
619A53441391DC75001AAD40 /* IOStreamUserClient.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOStreamUserClient.h; sourceTree = "<group>"; };
619A53451391DC75001AAD40 /* system.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = system.h; sourceTree = "<group>"; };
619A53471391DC75001AAD40 /* IOWatchDogTimer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOWatchDogTimer.h; sourceTree = "<group>"; };
619A53491391DC75001AAD40 /* IOUFIStorageServices.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOUFIStorageServices.h; sourceTree = "<group>"; };
619A534A1391DC75001AAD40 /* IOUSBBus.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOUSBBus.h; sourceTree = "<group>"; };
619A534B1391DC75001AAD40 /* IOUSBCommand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOUSBCommand.h; sourceTree = "<group>"; };
619A534C1391DC75001AAD40 /* IOUSBCompositeDriver.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOUSBCompositeDriver.h; sourceTree = "<group>"; };
619A534D1391DC75001AAD40 /* IOUSBController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOUSBController.h; sourceTree = "<group>"; };
619A534E1391DC75001AAD40 /* IOUSBControllerListElement.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOUSBControllerListElement.h; sourceTree = "<group>"; };
619A534F1391DC75001AAD40 /* IOUSBControllerV2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOUSBControllerV2.h; sourceTree = "<group>"; };
619A53501391DC75001AAD40 /* IOUSBControllerV3.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOUSBControllerV3.h; sourceTree = "<group>"; };
619A53511391DC75001AAD40 /* IOUSBDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOUSBDevice.h; sourceTree = "<group>"; };
619A53521391DC75001AAD40 /* IOUSBHIDDriver.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOUSBHIDDriver.h; sourceTree = "<group>"; };
619A53531391DC75001AAD40 /* IOUSBHubDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOUSBHubDevice.h; sourceTree = "<group>"; };
619A53541391DC75001AAD40 /* IOUSBHubPolicyMaker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOUSBHubPolicyMaker.h; sourceTree = "<group>"; };
619A53551391DC75001AAD40 /* IOUSBInterface.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOUSBInterface.h; sourceTree = "<group>"; };
619A53561391DC75001AAD40 /* IOUSBLog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOUSBLog.h; sourceTree = "<group>"; };
619A53571391DC75001AAD40 /* IOUSBMassStorageClass.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOUSBMassStorageClass.h; sourceTree = "<group>"; };
619A53581391DC75001AAD40 /* IOUSBMassStorageUFISubclass.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOUSBMassStorageUFISubclass.h; sourceTree = "<group>"; };
619A53591391DC75001AAD40 /* IOUSBNub.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOUSBNub.h; sourceTree = "<group>"; };
619A535A1391DC75001AAD40 /* IOUSBPipe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOUSBPipe.h; sourceTree = "<group>"; };
619A535B1391DC75001AAD40 /* IOUSBRootHubDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOUSBRootHubDevice.h; sourceTree = "<group>"; };
619A535C1391DC75001AAD40 /* IOUSBUserClient.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOUSBUserClient.h; sourceTree = "<group>"; };
619A535D1391DC75001AAD40 /* IOUSBWorkLoop.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOUSBWorkLoop.h; sourceTree = "<group>"; };
619A535E1391DC75001AAD40 /* USB.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = USB.h; sourceTree = "<group>"; };
619A535F1391DC75001AAD40 /* USBHub.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = USBHub.h; sourceTree = "<group>"; };
619A53601391DC75001AAD40 /* USBSpec.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = USBSpec.h; sourceTree = "<group>"; };
619A53611391DC75001AAD40 /* USBTracepoints.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = USBTracepoints.h; sourceTree = "<group>"; };
619A53631391DC75001AAD40 /* _OSByteOrder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _OSByteOrder.h; sourceTree = "<group>"; };
619A53651391DC75001AAD40 /* md5.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = md5.h; sourceTree = "<group>"; };
619A53661391DC75001AAD40 /* sha1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sha1.h; sourceTree = "<group>"; };
619A53681391DC75001AAD40 /* _OSByteOrder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _OSByteOrder.h; sourceTree = "<group>"; };
619A53691391DC75001AAD40 /* OSByteOrder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OSByteOrder.h; sourceTree = "<group>"; };
619A536B1391DC75001AAD40 /* OSByteOrder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OSByteOrder.h; sourceTree = "<group>"; };
619A536C1391DC75001AAD40 /* OSAtomic.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OSAtomic.h; sourceTree = "<group>"; };
619A536D1391DC75001AAD40 /* OSByteOrder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OSByteOrder.h; sourceTree = "<group>"; };
619A536E1391DC75001AAD40 /* OSCacheControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OSCacheControl.h; sourceTree = "<group>"; };
619A536F1391DC75001AAD40 /* OSDebug.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OSDebug.h; sourceTree = "<group>"; };
619A53701391DC75001AAD40 /* OSKextLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OSKextLib.h; sourceTree = "<group>"; };
619A53711391DC75001AAD40 /* OSReturn.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OSReturn.h; sourceTree = "<group>"; };
619A53721391DC75001AAD40 /* OSTypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OSTypes.h; sourceTree = "<group>"; };
619A53741391DC75001AAD40 /* OSByteOrder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OSByteOrder.h; sourceTree = "<group>"; };
619A53751391DC75001AAD40 /* limits.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = limits.h; sourceTree = "<group>"; };
619A53761391DC75001AAD40 /* locale.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = locale.h; sourceTree = "<group>"; };
619A53781391DC75001AAD40 /* audit_triggers.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = audit_triggers.defs; sourceTree = "<group>"; };
619A53791391DC75001AAD40 /* boolean.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = boolean.h; sourceTree = "<group>"; };
619A537A1391DC75001AAD40 /* bootstrap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = bootstrap.h; sourceTree = "<group>"; };
619A537B1391DC75001AAD40 /* clock.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = clock.defs; sourceTree = "<group>"; };
619A537C1391DC75001AAD40 /* clock.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = clock.h; sourceTree = "<group>"; };
619A537D1391DC75001AAD40 /* clock_priv.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = clock_priv.defs; sourceTree = "<group>"; };
619A537E1391DC75001AAD40 /* clock_priv.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = clock_priv.h; sourceTree = "<group>"; };
619A537F1391DC75001AAD40 /* clock_reply.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = clock_reply.defs; sourceTree = "<group>"; };
619A53801391DC75001AAD40 /* clock_reply.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = clock_reply.h; sourceTree = "<group>"; };
619A53811391DC75001AAD40 /* clock_types.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = clock_types.defs; sourceTree = "<group>"; };
619A53821391DC75001AAD40 /* clock_types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = clock_types.h; sourceTree = "<group>"; };
619A53831391DC75001AAD40 /* error.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = error.h; sourceTree = "<group>"; };
619A53841391DC75001AAD40 /* exc.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = exc.defs; sourceTree = "<group>"; };
619A53851391DC75001AAD40 /* exc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = exc.h; sourceTree = "<group>"; };
619A53861391DC75001AAD40 /* exception.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = exception.h; sourceTree = "<group>"; };
619A53871391DC75001AAD40 /* exception_types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = exception_types.h; sourceTree = "<group>"; };
619A53881391DC75001AAD40 /* host_info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = host_info.h; sourceTree = "<group>"; };
619A53891391DC75001AAD40 /* host_notify.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = host_notify.h; sourceTree = "<group>"; };
619A538A1391DC75001AAD40 /* host_notify_reply.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = host_notify_reply.defs; sourceTree = "<group>"; };
619A538B1391DC75001AAD40 /* host_priv.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = host_priv.defs; sourceTree = "<group>"; };
619A538C1391DC75001AAD40 /* host_priv.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = host_priv.h; sourceTree = "<group>"; };
619A538D1391DC75001AAD40 /* host_reboot.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = host_reboot.h; sourceTree = "<group>"; };
619A538E1391DC75001AAD40 /* host_security.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = host_security.defs; sourceTree = "<group>"; };
619A538F1391DC75001AAD40 /* host_security.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = host_security.h; sourceTree = "<group>"; };
619A53901391DC75001AAD40 /* host_special_ports.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = host_special_ports.h; sourceTree = "<group>"; };
619A53921391DC75001AAD40 /* _structs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _structs.h; sourceTree = "<group>"; };
619A53931391DC75001AAD40 /* asm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = asm.h; sourceTree = "<group>"; };
619A53941391DC75001AAD40 /* boolean.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = boolean.h; sourceTree = "<group>"; };
619A53951391DC75001AAD40 /* exception.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = exception.h; sourceTree = "<group>"; };
619A53961391DC75001AAD40 /* fp_reg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fp_reg.h; sourceTree = "<group>"; };
619A53971391DC75001AAD40 /* kern_return.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = kern_return.h; sourceTree = "<group>"; };
619A53981391DC75001AAD40 /* machine_types.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = machine_types.defs; sourceTree = "<group>"; };
619A53991391DC75001AAD40 /* ndr_def.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ndr_def.h; sourceTree = "<group>"; };
619A539A1391DC75001AAD40 /* processor_info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = processor_info.h; sourceTree = "<group>"; };
619A539B1391DC75001AAD40 /* rpc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rpc.h; sourceTree = "<group>"; };
619A539C1391DC75001AAD40 /* sdt_isa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sdt_isa.h; sourceTree = "<group>"; };
619A539D1391DC75001AAD40 /* task.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = task.h; sourceTree = "<group>"; };
619A539E1391DC75001AAD40 /* thread_act.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thread_act.h; sourceTree = "<group>"; };
619A539F1391DC75001AAD40 /* thread_state.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thread_state.h; sourceTree = "<group>"; };
619A53A01391DC75001AAD40 /* thread_status.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thread_status.h; sourceTree = "<group>"; };
619A53A11391DC75001AAD40 /* vm_param.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vm_param.h; sourceTree = "<group>"; };
619A53A21391DC75001AAD40 /* vm_types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vm_types.h; sourceTree = "<group>"; };
619A53A31391DC75001AAD40 /* kern_return.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = kern_return.h; sourceTree = "<group>"; };
619A53A41391DC75001AAD40 /* kmod.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = kmod.h; sourceTree = "<group>"; };
619A53A51391DC75001AAD40 /* ledger.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = ledger.defs; sourceTree = "<group>"; };
619A53A61391DC75001AAD40 /* ledger.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ledger.h; sourceTree = "<group>"; };
619A53A71391DC75001AAD40 /* lock_set.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = lock_set.defs; sourceTree = "<group>"; };
619A53A81391DC75001AAD40 /* lock_set.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lock_set.h; sourceTree = "<group>"; };
619A53A91391DC75001AAD40 /* mach.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mach.h; sourceTree = "<group>"; };
619A53AA1391DC75001AAD40 /* mach_error.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mach_error.h; sourceTree = "<group>"; };
619A53AB1391DC75001AAD40 /* mach_exc.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = mach_exc.defs; sourceTree = "<group>"; };
619A53AC1391DC75001AAD40 /* mach_host.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = mach_host.defs; sourceTree = "<group>"; };
619A53AD1391DC75001AAD40 /* mach_host.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mach_host.h; sourceTree = "<group>"; };
619A53AE1391DC75001AAD40 /* mach_init.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mach_init.h; sourceTree = "<group>"; };
619A53AF1391DC75001AAD40 /* mach_interface.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mach_interface.h; sourceTree = "<group>"; };
619A53B01391DC75001AAD40 /* mach_param.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mach_param.h; sourceTree = "<group>"; };
619A53B11391DC75001AAD40 /* mach_port.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = mach_port.defs; sourceTree = "<group>"; };
619A53B21391DC75001AAD40 /* mach_port.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mach_port.h; sourceTree = "<group>"; };
619A53B31391DC75001AAD40 /* mach_syscalls.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mach_syscalls.h; sourceTree = "<group>"; };
619A53B41391DC75001AAD40 /* mach_time.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mach_time.h; sourceTree = "<group>"; };
619A53B51391DC75001AAD40 /* mach_traps.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mach_traps.h; sourceTree = "<group>"; };
619A53B61391DC75001AAD40 /* mach_types.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = mach_types.defs; sourceTree = "<group>"; };
619A53B71391DC75001AAD40 /* mach_types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mach_types.h; sourceTree = "<group>"; };
619A53B81391DC75001AAD40 /* mach_vm.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = mach_vm.defs; sourceTree = "<group>"; };
619A53B91391DC75001AAD40 /* mach_vm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mach_vm.h; sourceTree = "<group>"; };
619A53BB1391DC75001AAD40 /* asm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = asm.h; sourceTree = "<group>"; };
619A53BC1391DC75001AAD40 /* boolean.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = boolean.h; sourceTree = "<group>"; };
619A53BD1391DC75001AAD40 /* exception.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = exception.h; sourceTree = "<group>"; };
619A53BE1391DC75001AAD40 /* kern_return.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = kern_return.h; sourceTree = "<group>"; };
619A53BF1391DC75001AAD40 /* machine_types.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = machine_types.defs; sourceTree = "<group>"; };
619A53C01391DC75001AAD40 /* ndr_def.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ndr_def.h; sourceTree = "<group>"; };
619A53C11391DC75001AAD40 /* processor_info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = processor_info.h; sourceTree = "<group>"; };
619A53C21391DC75001AAD40 /* rpc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rpc.h; sourceTree = "<group>"; };
619A53C31391DC75001AAD40 /* sdt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sdt.h; sourceTree = "<group>"; };
619A53C41391DC75001AAD40 /* sdt_isa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sdt_isa.h; sourceTree = "<group>"; };
619A53C51391DC75001AAD40 /* thread_state.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thread_state.h; sourceTree = "<group>"; };
619A53C61391DC75001AAD40 /* thread_status.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thread_status.h; sourceTree = "<group>"; };
619A53C71391DC75001AAD40 /* vm_param.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vm_param.h; sourceTree = "<group>"; };
619A53C81391DC75001AAD40 /* vm_types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vm_types.h; sourceTree = "<group>"; };
619A53C91391DC75001AAD40 /* machine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = machine.h; sourceTree = "<group>"; };
619A53CA1391DC75001AAD40 /* memory_object_types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = memory_object_types.h; sourceTree = "<group>"; };
619A53CB1391DC75001AAD40 /* message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = message.h; sourceTree = "<group>"; };
619A53CC1391DC75001AAD40 /* mig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mig.h; sourceTree = "<group>"; };
619A53CD1391DC75001AAD40 /* mig_errors.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mig_errors.h; sourceTree = "<group>"; };
619A53CE1391DC75001AAD40 /* ndr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ndr.h; sourceTree = "<group>"; };
619A53CF1391DC75001AAD40 /* notify.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = notify.defs; sourceTree = "<group>"; };
619A53D01391DC75001AAD40 /* notify.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = notify.h; sourceTree = "<group>"; };
619A53D11391DC75001AAD40 /* policy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = policy.h; sourceTree = "<group>"; };
619A53D21391DC75001AAD40 /* port.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = port.h; sourceTree = "<group>"; };
619A53D31391DC75001AAD40 /* port_obj.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = port_obj.h; sourceTree = "<group>"; };
619A53D51391DC75001AAD40 /* _structs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _structs.h; sourceTree = "<group>"; };
619A53D61391DC75001AAD40 /* asm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = asm.h; sourceTree = "<group>"; };
619A53D71391DC75001AAD40 /* boolean.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = boolean.h; sourceTree = "<group>"; };
619A53D81391DC75001AAD40 /* exception.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = exception.h; sourceTree = "<group>"; };
619A53D91391DC75001AAD40 /* kern_return.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = kern_return.h; sourceTree = "<group>"; };
619A53DA1391DC75001AAD40 /* machine_types.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = machine_types.defs; sourceTree = "<group>"; };
619A53DB1391DC75001AAD40 /* ndr_def.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ndr_def.h; sourceTree = "<group>"; };
619A53DC1391DC75001AAD40 /* processor_info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = processor_info.h; sourceTree = "<group>"; };
619A53DD1391DC75001AAD40 /* rpc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rpc.h; sourceTree = "<group>"; };
619A53DE1391DC75001AAD40 /* sdt_isa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sdt_isa.h; sourceTree = "<group>"; };
619A53DF1391DC75001AAD40 /* task.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = task.h; sourceTree = "<group>"; };
619A53E01391DC75001AAD40 /* thread_act.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thread_act.h; sourceTree = "<group>"; };
619A53E11391DC75001AAD40 /* thread_state.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thread_state.h; sourceTree = "<group>"; };
619A53E21391DC75001AAD40 /* thread_status.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thread_status.h; sourceTree = "<group>"; };
619A53E31391DC75001AAD40 /* vm_param.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vm_param.h; sourceTree = "<group>"; };
619A53E41391DC75001AAD40 /* vm_types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vm_types.h; sourceTree = "<group>"; };
619A53E51391DC75001AAD40 /* processor.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = processor.defs; sourceTree = "<group>"; };
619A53E61391DC75001AAD40 /* processor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = processor.h; sourceTree = "<group>"; };
619A53E71391DC75001AAD40 /* processor_info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = processor_info.h; sourceTree = "<group>"; };
619A53E81391DC75001AAD40 /* processor_set.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = processor_set.defs; sourceTree = "<group>"; };
619A53E91391DC75001AAD40 /* processor_set.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = processor_set.h; sourceTree = "<group>"; };
619A53EA1391DC75001AAD40 /* rpc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rpc.h; sourceTree = "<group>"; };
619A53EB1391DC75001AAD40 /* sdt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sdt.h; sourceTree = "<group>"; };
619A53EC1391DC75001AAD40 /* security.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = security.defs; sourceTree = "<group>"; };
619A53ED1391DC75001AAD40 /* semaphore.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = semaphore.h; sourceTree = "<group>"; };
619A53EE1391DC75001AAD40 /* shared_memory_server.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = shared_memory_server.h; sourceTree = "<group>"; };
619A53EF1391DC75001AAD40 /* shared_region.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = shared_region.h; sourceTree = "<group>"; };
619A53F01391DC75001AAD40 /* std_types.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = std_types.defs; sourceTree = "<group>"; };
619A53F11391DC75001AAD40 /* std_types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = std_types.h; sourceTree = "<group>"; };
619A53F21391DC75001AAD40 /* sync.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sync.h; sourceTree = "<group>"; };
619A53F31391DC75001AAD40 /* sync_policy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sync_policy.h; sourceTree = "<group>"; };
619A53F41391DC75001AAD40 /* task.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = task.defs; sourceTree = "<group>"; };
619A53F51391DC75001AAD40 /* task.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = task.h; sourceTree = "<group>"; };
619A53F61391DC75001AAD40 /* task_access.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = task_access.defs; sourceTree = "<group>"; };
619A53F71391DC75001AAD40 /* task_info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = task_info.h; sourceTree = "<group>"; };
619A53F81391DC75001AAD40 /* task_ledger.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = task_ledger.h; sourceTree = "<group>"; };
619A53F91391DC75001AAD40 /* task_policy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = task_policy.h; sourceTree = "<group>"; };
619A53FA1391DC75001AAD40 /* task_special_ports.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = task_special_ports.h; sourceTree = "<group>"; };
619A53FB1391DC75001AAD40 /* thread_act.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = thread_act.defs; sourceTree = "<group>"; };
619A53FC1391DC75001AAD40 /* thread_act.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thread_act.h; sourceTree = "<group>"; };
619A53FD1391DC75001AAD40 /* thread_info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thread_info.h; sourceTree = "<group>"; };
619A53FE1391DC75001AAD40 /* thread_policy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thread_policy.h; sourceTree = "<group>"; };
619A53FF1391DC75001AAD40 /* thread_special_ports.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thread_special_ports.h; sourceTree = "<group>"; };
619A54001391DC75001AAD40 /* thread_status.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thread_status.h; sourceTree = "<group>"; };
619A54011391DC75001AAD40 /* thread_switch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thread_switch.h; sourceTree = "<group>"; };
619A54021391DC75001AAD40 /* time_value.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = time_value.h; sourceTree = "<group>"; };
619A54031391DC75001AAD40 /* vm_attributes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vm_attributes.h; sourceTree = "<group>"; };
619A54041391DC75001AAD40 /* vm_behavior.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vm_behavior.h; sourceTree = "<group>"; };
619A54051391DC75001AAD40 /* vm_inherit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vm_inherit.h; sourceTree = "<group>"; };
619A54061391DC75001AAD40 /* vm_map.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = vm_map.defs; sourceTree = "<group>"; };
619A54071391DC75001AAD40 /* vm_map.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vm_map.h; sourceTree = "<group>"; };
619A54081391DC75001AAD40 /* vm_param.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vm_param.h; sourceTree = "<group>"; };
619A54091391DC75001AAD40 /* vm_prot.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vm_prot.h; sourceTree = "<group>"; };
619A540A1391DC75001AAD40 /* vm_purgable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vm_purgable.h; sourceTree = "<group>"; };
619A540B1391DC75001AAD40 /* vm_region.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vm_region.h; sourceTree = "<group>"; };
619A540C1391DC75001AAD40 /* vm_statistics.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vm_statistics.h; sourceTree = "<group>"; };
619A540D1391DC75001AAD40 /* vm_sync.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vm_sync.h; sourceTree = "<group>"; };
619A540E1391DC75001AAD40 /* vm_task.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vm_task.h; sourceTree = "<group>"; };
619A540F1391DC75001AAD40 /* vm_types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vm_types.h; sourceTree = "<group>"; };
619A54111391DC75001AAD40 /* task.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = task.h; sourceTree = "<group>"; };
619A54121391DC75001AAD40 /* thread_act.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thread_act.h; sourceTree = "<group>"; };
619A54141391DC75001AAD40 /* arch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = arch.h; sourceTree = "<group>"; };
619A54151391DC75001AAD40 /* compact_unwind_encoding.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = compact_unwind_encoding.h; sourceTree = "<group>"; };
619A54161391DC75001AAD40 /* dyld.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dyld.h; sourceTree = "<group>"; };
619A54171391DC75001AAD40 /* dyld_images.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dyld_images.h; sourceTree = "<group>"; };
619A54181391DC75001AAD40 /* fat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fat.h; sourceTree = "<group>"; };
619A54191391DC75001AAD40 /* getsect.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = getsect.h; sourceTree = "<group>"; };
619A541B1391DC75001AAD40 /* swap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = swap.h; sourceTree = "<group>"; };
619A541C1391DC75001AAD40 /* ldsyms.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ldsyms.h; sourceTree = "<group>"; };
619A541D1391DC75001AAD40 /* loader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = loader.h; sourceTree = "<group>"; };
619A541E1391DC75001AAD40 /* nlist.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nlist.h; sourceTree = "<group>"; };
619A54201391DC75001AAD40 /* reloc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = reloc.h; sourceTree = "<group>"; };
619A54211391DC75001AAD40 /* swap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = swap.h; sourceTree = "<group>"; };
619A54221391DC75001AAD40 /* ranlib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ranlib.h; sourceTree = "<group>"; };
619A54231391DC75001AAD40 /* reloc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = reloc.h; sourceTree = "<group>"; };
619A54241391DC75001AAD40 /* stab.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stab.h; sourceTree = "<group>"; };
619A54251391DC75001AAD40 /* swap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = swap.h; sourceTree = "<group>"; };
619A54271391DC75001AAD40 /* reloc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = reloc.h; sourceTree = "<group>"; };
619A54291391DC75001AAD40 /* _limits.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _limits.h; sourceTree = "<group>"; };
619A542A1391DC75001AAD40 /* _param.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _param.h; sourceTree = "<group>"; };
619A542B1391DC75001AAD40 /* _structs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _structs.h; sourceTree = "<group>"; };
619A542C1391DC75001AAD40 /* _types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _types.h; sourceTree = "<group>"; };
619A542D1391DC75001AAD40 /* byte_order.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = byte_order.h; sourceTree = "<group>"; };
619A542E1391DC75001AAD40 /* endian.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = endian.h; sourceTree = "<group>"; };
619A542F1391DC75001AAD40 /* fasttrap_isa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fasttrap_isa.h; sourceTree = "<group>"; };
619A54301391DC75001AAD40 /* limits.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = limits.h; sourceTree = "<group>"; };
619A54311391DC75001AAD40 /* param.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = param.h; sourceTree = "<group>"; };
619A54321391DC75001AAD40 /* profile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = profile.h; sourceTree = "<group>"; };
619A54331391DC75001AAD40 /* setjmp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = setjmp.h; sourceTree = "<group>"; };
619A54341391DC75001AAD40 /* signal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = signal.h; sourceTree = "<group>"; };
619A54351391DC75001AAD40 /* types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = types.h; sourceTree = "<group>"; };
619A54361391DC75001AAD40 /* vmparam.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vmparam.h; sourceTree = "<group>"; };
619A54371391DC75001AAD40 /* math.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = math.h; sourceTree = "<group>"; };
619A54391391DC75001AAD40 /* bootp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = bootp.h; sourceTree = "<group>"; };
619A543A1391DC75001AAD40 /* icmp6.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = icmp6.h; sourceTree = "<group>"; };
619A543B1391DC75001AAD40 /* icmp_var.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = icmp_var.h; sourceTree = "<group>"; };
619A543C1391DC75001AAD40 /* if_ether.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = if_ether.h; sourceTree = "<group>"; };
619A543D1391DC75001AAD40 /* igmp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = igmp.h; sourceTree = "<group>"; };
619A543E1391DC75001AAD40 /* igmp_var.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = igmp_var.h; sourceTree = "<group>"; };
619A543F1391DC75001AAD40 /* in.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = in.h; sourceTree = "<group>"; };
619A54401391DC75001AAD40 /* in_pcb.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = in_pcb.h; sourceTree = "<group>"; };
619A54411391DC75001AAD40 /* in_systm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = in_systm.h; sourceTree = "<group>"; };
619A54421391DC75001AAD40 /* in_var.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = in_var.h; sourceTree = "<group>"; };
619A54431391DC75001AAD40 /* ip.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ip.h; sourceTree = "<group>"; };
619A54441391DC75001AAD40 /* ip6.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ip6.h; sourceTree = "<group>"; };
619A54451391DC75001AAD40 /* ip_fw.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ip_fw.h; sourceTree = "<group>"; };
619A54461391DC75001AAD40 /* ip_fw2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ip_fw2.h; sourceTree = "<group>"; };
619A54471391DC75001AAD40 /* ip_icmp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ip_icmp.h; sourceTree = "<group>"; };
619A54481391DC75001AAD40 /* ip_mroute.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ip_mroute.h; sourceTree = "<group>"; };
619A54491391DC75001AAD40 /* ip_var.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ip_var.h; sourceTree = "<group>"; };
619A544A1391DC75001AAD40 /* tcp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tcp.h; sourceTree = "<group>"; };
619A544B1391DC75001AAD40 /* tcp_fsm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tcp_fsm.h; sourceTree = "<group>"; };
619A544C1391DC75001AAD40 /* tcp_seq.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tcp_seq.h; sourceTree = "<group>"; };
619A544D1391DC75001AAD40 /* tcp_timer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tcp_timer.h; sourceTree = "<group>"; };
619A544E1391DC75001AAD40 /* tcp_var.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tcp_var.h; sourceTree = "<group>"; };
619A544F1391DC75001AAD40 /* tcpip.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tcpip.h; sourceTree = "<group>"; };
619A54501391DC75001AAD40 /* udp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = udp.h; sourceTree = "<group>"; };
619A54511391DC75001AAD40 /* udp_var.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = udp_var.h; sourceTree = "<group>"; };
619A54531391DC75001AAD40 /* ah.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ah.h; sourceTree = "<group>"; };
619A54541391DC75001AAD40 /* esp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = esp.h; sourceTree = "<group>"; };
619A54551391DC75001AAD40 /* in6.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = in6.h; sourceTree = "<group>"; };
619A54561391DC75001AAD40 /* in6_var.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = in6_var.h; sourceTree = "<group>"; };
619A54571391DC75001AAD40 /* ip6_fw.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ip6_fw.h; sourceTree = "<group>"; };
619A54581391DC75001AAD40 /* ip6_mroute.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ip6_mroute.h; sourceTree = "<group>"; };
619A54591391DC75001AAD40 /* ipcomp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ipcomp.h; sourceTree = "<group>"; };
619A545A1391DC75001AAD40 /* ipsec.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ipsec.h; sourceTree = "<group>"; };
619A545B1391DC75001AAD40 /* nd6.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nd6.h; sourceTree = "<group>"; };
619A545C1391DC75001AAD40 /* pim6.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pim6.h; sourceTree = "<group>"; };
619A545D1391DC75001AAD40 /* raw_ip6.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = raw_ip6.h; sourceTree = "<group>"; };
619A545E1391DC75001AAD40 /* runetype.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = runetype.h; sourceTree = "<group>"; };
619A54601391DC75001AAD40 /* _common.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _common.h; sourceTree = "<group>"; };
619A54611391DC75001AAD40 /* _stdio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _stdio.h; sourceTree = "<group>"; };
619A54621391DC75001AAD40 /* setjmp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = setjmp.h; sourceTree = "<group>"; };
619A54631391DC75001AAD40 /* signal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = signal.h; sourceTree = "<group>"; };
619A54641391DC75001AAD40 /* stdarg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stdarg.h; sourceTree = "<group>"; };
619A54651391DC75001AAD40 /* stdbool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stdbool.h; sourceTree = "<group>"; };
619A54661391DC75001AAD40 /* stddef.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stddef.h; sourceTree = "<group>"; };
619A54671391DC75001AAD40 /* stdint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stdint.h; sourceTree = "<group>"; };
619A54681391DC75001AAD40 /* stdio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stdio.h; sourceTree = "<group>"; };
619A54691391DC75001AAD40 /* stdlib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stdlib.h; sourceTree = "<group>"; };
619A546A1391DC75001AAD40 /* string.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = string.h; sourceTree = "<group>"; };
619A546C1391DC75001AAD40 /* _endian.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _endian.h; sourceTree = "<group>"; };
619A546D1391DC75001AAD40 /* _select.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _select.h; sourceTree = "<group>"; };
619A546E1391DC75001AAD40 /* _structs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _structs.h; sourceTree = "<group>"; };
619A546F1391DC75001AAD40 /* _types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _types.h; sourceTree = "<group>"; };
619A54701391DC75001AAD40 /* appleapiopts.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = appleapiopts.h; sourceTree = "<group>"; };
619A54711391DC75001AAD40 /* buf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = buf.h; sourceTree = "<group>"; };
619A54721391DC75001AAD40 /* cdefs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cdefs.h; sourceTree = "<group>"; };
619A54731391DC75001AAD40 /* disk.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = disk.h; sourceTree = "<group>"; };
619A54741391DC75001AAD40 /* kernel_types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = kernel_types.h; sourceTree = "<group>"; };
619A54751391DC75001AAD40 /* param.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = param.h; sourceTree = "<group>"; };
619A54761391DC75001AAD40 /* reboot.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = reboot.h; sourceTree = "<group>"; };
619A54771391DC75001AAD40 /* select.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = select.h; sourceTree = "<group>"; };
619A54781391DC75001AAD40 /* socket.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = socket.h; sourceTree = "<group>"; };
619A54791391DC75001AAD40 /* syscall.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = syscall.h; sourceTree = "<group>"; };
619A547A1391DC75001AAD40 /* syslimits.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = syslimits.h; sourceTree = "<group>"; };
619A547B1391DC75001AAD40 /* time.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = time.h; sourceTree = "<group>"; };
619A547C1391DC75001AAD40 /* types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = types.h; sourceTree = "<group>"; };
619A547D1391DC75001AAD40 /* unistd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = unistd.h; sourceTree = "<group>"; };
619A547E1391DC75001AAD40 /* time.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = time.h; sourceTree = "<group>"; };
619A54811391DC75001AAD40 /* ffs_extern.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ffs_extern.h; sourceTree = "<group>"; };
619A54821391DC75001AAD40 /* fs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fs.h; sourceTree = "<group>"; };
619A54841391DC75001AAD40 /* dinode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dinode.h; sourceTree = "<group>"; };
619A54851391DC75001AAD40 /* dir.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dir.h; sourceTree = "<group>"; };
619A54861391DC75001AAD40 /* inode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = inode.h; sourceTree = "<group>"; };
619A54871391DC75001AAD40 /* ufs_extern.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ufs_extern.h; sourceTree = "<group>"; };
619A54881391DC75001AAD40 /* ufsmount.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ufsmount.h; sourceTree = "<group>"; };
619A54891391DC75001AAD40 /* unistd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = unistd.h; sourceTree = "<group>"; };
619A548A1391DC75001AAD40 /* unwind.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = unwind.h; sourceTree = "<group>"; };
619A548C1391DC75001AAD40 /* Cconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Cconfig; sourceTree = "<group>"; };
619A548D1391DC75001AAD40 /* efi_tables.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = efi_tables.c; sourceTree = "<group>"; };
619A548E1391DC75001AAD40 /* efi_tables.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = efi_tables.h; sourceTree = "<group>"; };
619A548F1391DC75001AAD40 /* error.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = error.c; sourceTree = "<group>"; };
619A54901391DC75001AAD40 /* libsa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = libsa.h; sourceTree = "<group>"; };
619A54911391DC75001AAD40 /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = "<group>"; };
619A54921391DC75001AAD40 /* memory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = memory.h; sourceTree = "<group>"; };
619A54931391DC75001AAD40 /* prf.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = prf.c; sourceTree = "<group>"; };
619A54941391DC75001AAD40 /* printf.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = printf.c; sourceTree = "<group>"; };
619A54951391DC75001AAD40 /* qsort.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = qsort.c; sourceTree = "<group>"; };
619A54961391DC75001AAD40 /* setjmp.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = setjmp.s; sourceTree = "<group>"; };
619A54971391DC75001AAD40 /* string.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = string.c; sourceTree = "<group>"; };
619A54981391DC75001AAD40 /* strtol.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strtol.c; sourceTree = "<group>"; };
619A54991391DC75001AAD40 /* zalloc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = zalloc.c; sourceTree = "<group>"; };
619A549B1391DC75001AAD40 /* acpi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = acpi.h; sourceTree = "<group>"; };
619A549C1391DC75001AAD40 /* acpi_patcher.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = acpi_patcher.c; sourceTree = "<group>"; };
619A549D1391DC75001AAD40 /* acpi_patcher.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = acpi_patcher.h; sourceTree = "<group>"; };
619A549E1391DC75001AAD40 /* allocate.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = allocate.c; sourceTree = "<group>"; };
619A549F1391DC75001AAD40 /* aml_generator.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = aml_generator.c; sourceTree = "<group>"; };
619A54A01391DC75001AAD40 /* aml_generator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = aml_generator.h; sourceTree = "<group>"; };
619A54A11391DC75001AAD40 /* asm.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = asm.s; sourceTree = "<group>"; };
619A54A21391DC75001AAD40 /* ati.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ati.c; sourceTree = "<group>"; };
619A54A31391DC75001AAD40 /* ati_reg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ati_reg.h; sourceTree = "<group>"; };
619A54A41391DC75001AAD40 /* befs.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = befs.c; sourceTree = "<group>"; };
619A54A51391DC75001AAD40 /* befs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = befs.h; sourceTree = "<group>"; };
619A54A61391DC75001AAD40 /* bios.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = bios.h; sourceTree = "<group>"; };
619A54A71391DC75001AAD40 /* bios.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = bios.s; sourceTree = "<group>"; };
619A54A81391DC75001AAD40 /* biosfn.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = biosfn.c; sourceTree = "<group>"; };
619A54A91391DC75001AAD40 /* bootargs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = bootargs.h; sourceTree = "<group>"; };
619A54AA1391DC75001AAD40 /* bootstruct.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = bootstruct.c; sourceTree = "<group>"; };
619A54AB1391DC75001AAD40 /* bootstruct.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = bootstruct.h; sourceTree = "<group>"; };
619A54AC1391DC75001AAD40 /* cache.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = cache.c; sourceTree = "<group>"; };
619A54AD1391DC75001AAD40 /* Cconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Cconfig; sourceTree = "<group>"; };
619A54AE1391DC75001AAD40 /* console.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = console.c; sourceTree = "<group>"; };
619A54AF1391DC75001AAD40 /* convert.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = convert.c; sourceTree = "<group>"; };
619A54B01391DC75001AAD40 /* convert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = convert.h; sourceTree = "<group>"; };
619A54B11391DC75001AAD40 /* cpu.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = cpu.c; sourceTree = "<group>"; };
619A54B21391DC75001AAD40 /* cpu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cpu.h; sourceTree = "<group>"; };
619A54B31391DC75001AAD40 /* device_inject.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = device_inject.c; sourceTree = "<group>"; };
619A54B41391DC75001AAD40 /* device_inject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = device_inject.h; sourceTree = "<group>"; };
619A54B51391DC75001AAD40 /* device_tree.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = device_tree.c; sourceTree = "<group>"; };
619A54B61391DC75001AAD40 /* device_tree.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = device_tree.h; sourceTree = "<group>"; };
619A54B71391DC75001AAD40 /* disk.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = disk.c; sourceTree = "<group>"; };
619A54B81391DC75001AAD40 /* disk.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = disk.h; sourceTree = "<group>"; };
619A54B91391DC75001AAD40 /* dram_controllers.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = dram_controllers.c; sourceTree = "<group>"; };
619A54BA1391DC75001AAD40 /* dram_controllers.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dram_controllers.h; sourceTree = "<group>"; };
619A54BB1391DC75001AAD40 /* efi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = efi.h; sourceTree = "<group>"; };
619A54BC1391DC75001AAD40 /* ext2fs.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ext2fs.c; sourceTree = "<group>"; };
619A54BD1391DC75001AAD40 /* ext2fs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ext2fs.h; sourceTree = "<group>"; };
619A54BE1391DC75001AAD40 /* fake_efi.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = fake_efi.c; sourceTree = "<group>"; };
619A54BF1391DC75001AAD40 /* fake_efi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fake_efi.h; sourceTree = "<group>"; };
619A54C01391DC75001AAD40 /* fdisk.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fdisk.h; sourceTree = "<group>"; };
619A54C11391DC75001AAD40 /* freebsd.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = freebsd.c; sourceTree = "<group>"; };
619A54C21391DC75001AAD40 /* freebsd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = freebsd.h; sourceTree = "<group>"; };
619A54C31391DC75001AAD40 /* hfs.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = hfs.c; sourceTree = "<group>"; };
619A54C41391DC75001AAD40 /* hfs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = hfs.h; sourceTree = "<group>"; };
619A54C51391DC75001AAD40 /* hfs_CaseTables.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = hfs_CaseTables.h; sourceTree = "<group>"; };
619A54C61391DC75001AAD40 /* hfs_compare.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = hfs_compare.c; sourceTree = "<group>"; };
619A54C71391DC75001AAD40 /* hpet.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = hpet.c; sourceTree = "<group>"; };
619A54C81391DC75001AAD40 /* hpet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = hpet.h; sourceTree = "<group>"; };
619A54C91391DC75001AAD40 /* io_inline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = io_inline.h; sourceTree = "<group>"; };
619A54CA1391DC75001AAD40 /* libsaio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = libsaio.h; sourceTree = "<group>"; };
619A54CB1391DC75001AAD40 /* load.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = load.c; sourceTree = "<group>"; };
619A54CC1391DC75001AAD40 /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = "<group>"; };
619A54CD1391DC75001AAD40 /* md5c.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = md5c.c; sourceTree = "<group>"; };
619A54CE1391DC75001AAD40 /* memvendors.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = memvendors.h; sourceTree = "<group>"; };
619A54CF1391DC75001AAD40 /* misc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = misc.c; sourceTree = "<group>"; };
619A54D01391DC75001AAD40 /* msdos.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = msdos.c; sourceTree = "<group>"; };
619A54D11391DC75001AAD40 /* msdos.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = msdos.h; sourceTree = "<group>"; };
619A54D21391DC75001AAD40 /* msdos_private.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = msdos_private.h; sourceTree = "<group>"; };
619A54D31391DC75001AAD40 /* nbp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = nbp.c; sourceTree = "<group>"; };
619A54D41391DC75001AAD40 /* nbp_cmd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nbp_cmd.h; sourceTree = "<group>"; };
619A54D51391DC75001AAD40 /* ntfs.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ntfs.c; sourceTree = "<group>"; };
619A54D61391DC75001AAD40 /* ntfs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ntfs.h; sourceTree = "<group>"; };
619A54D71391DC75001AAD40 /* ntfs_private.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ntfs_private.h; sourceTree = "<group>"; };
619A54D81391DC75001AAD40 /* nvidia.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = nvidia.c; sourceTree = "<group>"; };
619A54D91391DC75001AAD40 /* nvidia.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nvidia.h; sourceTree = "<group>"; };
619A54DA1391DC75001AAD40 /* openbsd.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = openbsd.c; sourceTree = "<group>"; };
619A54DB1391DC75001AAD40 /* openbsd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = openbsd.h; sourceTree = "<group>"; };
619A54DC1391DC75001AAD40 /* pci.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = pci.c; sourceTree = "<group>"; };
619A54DD1391DC75001AAD40 /* pci.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pci.h; sourceTree = "<group>"; };
619A54DE1391DC75001AAD40 /* pci_root.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = pci_root.c; sourceTree = "<group>"; };
619A54DF1391DC75001AAD40 /* pci_root.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pci_root.h; sourceTree = "<group>"; };
619A54E01391DC75001AAD40 /* pci_setup.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = pci_setup.c; sourceTree = "<group>"; };
619A54E11391DC75001AAD40 /* platform.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = platform.c; sourceTree = "<group>"; };
619A54E21391DC75001AAD40 /* platform.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = platform.h; sourceTree = "<group>"; };
619A54E31391DC75001AAD40 /* saio_internal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = saio_internal.h; sourceTree = "<group>"; };
619A54E41391DC75001AAD40 /* saio_types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = saio_types.h; sourceTree = "<group>"; };
619A54E51391DC75001AAD40 /* sl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sl.h; sourceTree = "<group>"; };
619A54E61391DC75001AAD40 /* smbios.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = smbios.c; sourceTree = "<group>"; };
619A54E71391DC75001AAD40 /* smbios.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = smbios.h; sourceTree = "<group>"; };
619A54E81391DC75001AAD40 /* smbios_decode.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = smbios_decode.c; sourceTree = "<group>"; };
619A54E91391DC75001AAD40 /* smbios_getters.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = smbios_getters.c; sourceTree = "<group>"; };
619A54EA1391DC75001AAD40 /* smbios_getters.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = smbios_getters.h; sourceTree = "<group>"; };
619A54EB1391DC75001AAD40 /* spd.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = spd.c; sourceTree = "<group>"; };
619A54EC1391DC75001AAD40 /* spd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = spd.h; sourceTree = "<group>"; };
619A54ED1391DC75001AAD40 /* stringTable.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = stringTable.c; sourceTree = "<group>"; };
619A54EE1391DC75001AAD40 /* sys.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = sys.c; sourceTree = "<group>"; };
619A54EF1391DC75001AAD40 /* table.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = table.c; sourceTree = "<group>"; };
619A54F01391DC75001AAD40 /* ufs.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ufs.c; sourceTree = "<group>"; };
619A54F11391DC75001AAD40 /* ufs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ufs.h; sourceTree = "<group>"; };
619A54F21391DC75001AAD40 /* ufs_byteorder.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ufs_byteorder.c; sourceTree = "<group>"; };
619A54F31391DC75001AAD40 /* ufs_byteorder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ufs_byteorder.h; sourceTree = "<group>"; };
619A54F41391DC75001AAD40 /* usb.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = usb.c; sourceTree = "<group>"; };
619A54F51391DC75001AAD40 /* vbe.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = vbe.c; sourceTree = "<group>"; };
619A54F61391DC75001AAD40 /* vbe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vbe.h; sourceTree = "<group>"; };
619A54F71391DC75001AAD40 /* xml.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = xml.c; sourceTree = "<group>"; };
619A54F81391DC75001AAD40 /* xml.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = xml.h; sourceTree = "<group>"; };
619A54F91391DC75001AAD40 /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = "<group>"; };
619A54FA1391DC75001AAD40 /* MakeInc.dir */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = MakeInc.dir; sourceTree = "<group>"; };
619A54FB1391DC75001AAD40 /* MakePaths.dir */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = MakePaths.dir; sourceTree = "<group>"; };
619A54FE1391DC75001AAD40 /* AMDGraphicsEnabler.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = AMDGraphicsEnabler.c; sourceTree = "<group>"; };
619A54FF1391DC75001AAD40 /* ati.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ati.c; sourceTree = "<group>"; };
619A55001391DC75001AAD40 /* ati_reg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ati_reg.h; sourceTree = "<group>"; };
619A55011391DC75001AAD40 /* Cconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Cconfig; sourceTree = "<group>"; };
619A55021391DC75001AAD40 /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = "<group>"; };
619A55031391DC75001AAD40 /* Readme.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Readme.txt; sourceTree = "<group>"; };
619A55051391DC75001AAD40 /* ati.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ati.c; sourceTree = "<group>"; };
619A55061391DC75001AAD40 /* ati.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ati.h; sourceTree = "<group>"; };
619A55071391DC75001AAD40 /* ATiGraphicsEnabler.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ATiGraphicsEnabler.c; sourceTree = "<group>"; };
619A55081391DC75001AAD40 /* Cconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Cconfig; sourceTree = "<group>"; };
619A55091391DC75001AAD40 /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = "<group>"; };
619A550A1391DC75001AAD40 /* Readme.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Readme.txt; sourceTree = "<group>"; };
619A550B1391DC75001AAD40 /* Cconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Cconfig; sourceTree = "<group>"; };
619A550D1391DC75001AAD40 /* Cconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Cconfig; sourceTree = "<group>"; };
619A550E1391DC75001AAD40 /* HelloWorld.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = HelloWorld.cpp; sourceTree = "<group>"; };
619A55101391DC75001AAD40 /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = "<group>"; };
619A55121391DC75001AAD40 /* modules */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = modules; sourceTree = "<group>"; };
619A55131391DC75001AAD40 /* types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = types.h; sourceTree = "<group>"; };
619A55151391DC75001AAD40 /* Cconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Cconfig; sourceTree = "<group>"; };
619A55161391DC75001AAD40 /* gma.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = gma.c; sourceTree = "<group>"; };
619A55171391DC75001AAD40 /* gma.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gma.h; sourceTree = "<group>"; };
619A55181391DC75001AAD40 /* IntelGraphicsEnabler.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = IntelGraphicsEnabler.c; sourceTree = "<group>"; };
619A55191391DC75001AAD40 /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = "<group>"; };
619A551A1391DC75001AAD40 /* Readme.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Readme.txt; sourceTree = "<group>"; };
619A551C1391DC75001AAD40 /* __ashldi3.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = __ashldi3.c; sourceTree = "<group>"; };
619A551D1391DC75001AAD40 /* __ashrdi3.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = __ashrdi3.c; sourceTree = "<group>"; };
619A551E1391DC75001AAD40 /* __clzsi2.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = __clzsi2.c; sourceTree = "<group>"; };
619A551F1391DC75001AAD40 /* __divdi3.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = __divdi3.c; sourceTree = "<group>"; };
619A55201391DC75001AAD40 /* __divsi3.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = __divsi3.c; sourceTree = "<group>"; };
619A55211391DC75001AAD40 /* __lshrdi3.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = __lshrdi3.c; sourceTree = "<group>"; };
619A55221391DC75001AAD40 /* __moddi3.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = __moddi3.c; sourceTree = "<group>"; };
619A55231391DC75001AAD40 /* __modsi3.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = __modsi3.c; sourceTree = "<group>"; };
619A55241391DC75001AAD40 /* __udivdi3.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = __udivdi3.c; sourceTree = "<group>"; };
619A55251391DC75001AAD40 /* __udivmoddi4.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = __udivmoddi4.c; sourceTree = "<group>"; };
619A55261391DC75001AAD40 /* __udivmodsi4.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = __udivmodsi4.c; sourceTree = "<group>"; };
619A55271391DC75001AAD40 /* __udivsi3.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = __udivsi3.c; sourceTree = "<group>"; };
619A55281391DC75001AAD40 /* __umoddi3.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = __umoddi3.c; sourceTree = "<group>"; };
619A55291391DC75001AAD40 /* __umodsi3.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = __umodsi3.c; sourceTree = "<group>"; };
619A552A1391DC75001AAD40 /* atexit.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = atexit.c; sourceTree = "<group>"; };
619A552B1391DC75001AAD40 /* atexit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = atexit.h; sourceTree = "<group>"; };
619A552C1391DC75001AAD40 /* atoi.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = atoi.c; sourceTree = "<group>"; };
619A552D1391DC75001AAD40 /* atol.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = atol.c; sourceTree = "<group>"; };
619A552E1391DC75001AAD40 /* atoll.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = atoll.c; sourceTree = "<group>"; };
619A552F1391DC75001AAD40 /* atox.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = atox.c; sourceTree = "<group>"; };
619A55301391DC75001AAD40 /* bsearch.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = bsearch.c; sourceTree = "<group>"; };
619A55311391DC75001AAD40 /* calloc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = calloc.c; sourceTree = "<group>"; };
619A55321391DC75001AAD40 /* Cconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Cconfig; sourceTree = "<group>"; };
619A55331391DC75001AAD40 /* exit.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = exit.c; sourceTree = "<group>"; };
619A55341391DC75001AAD40 /* jrand48.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = jrand48.c; sourceTree = "<group>"; };
619A55351391DC75001AAD40 /* klibc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = klibc.c; sourceTree = "<group>"; };
619A55361391DC75001AAD40 /* LICENSE */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = LICENSE; sourceTree = "<group>"; };
619A55371391DC75001AAD40 /* limits.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = limits.h; sourceTree = "<group>"; };
619A55381391DC75001AAD40 /* lrand48.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = lrand48.c; sourceTree = "<group>"; };
619A55391391DC75001AAD40 /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = "<group>"; };
619A553A1391DC75001AAD40 /* memccpy.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = memccpy.c; sourceTree = "<group>"; };
619A553B1391DC75001AAD40 /* memchr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = memchr.c; sourceTree = "<group>"; };
619A553C1391DC75001AAD40 /* memmem.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = memmem.c; sourceTree = "<group>"; };
619A553D1391DC75001AAD40 /* memmove.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = memmove.c; sourceTree = "<group>"; };
619A553E1391DC75001AAD40 /* memrchr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = memrchr.c; sourceTree = "<group>"; };
619A553F1391DC75001AAD40 /* memswap.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = memswap.c; sourceTree = "<group>"; };
619A55401391DC75001AAD40 /* mrand48.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mrand48.c; sourceTree = "<group>"; };
619A55411391DC75001AAD40 /* nrand48.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = nrand48.c; sourceTree = "<group>"; };
619A55421391DC75001AAD40 /* onexit.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = onexit.c; sourceTree = "<group>"; };
619A55431391DC75001AAD40 /* qsort.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = qsort.c; sourceTree = "<group>"; };
619A55441391DC75001AAD40 /* Readme.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Readme.txt; sourceTree = "<group>"; };
619A55451391DC75001AAD40 /* seed48.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = seed48.c; sourceTree = "<group>"; };
619A55461391DC75001AAD40 /* sha1hash.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = sha1hash.c; sourceTree = "<group>"; };
619A55471391DC75001AAD40 /* snprintf.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = snprintf.c; sourceTree = "<group>"; };
619A55481391DC75001AAD40 /* srand48.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = srand48.c; sourceTree = "<group>"; };
619A55491391DC75001AAD40 /* sscanf.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = sscanf.c; sourceTree = "<group>"; };
619A554A1391DC75001AAD40 /* strcasecmp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strcasecmp.c; sourceTree = "<group>"; };
619A554B1391DC75001AAD40 /* strdup.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strdup.c; sourceTree = "<group>"; };
619A554C1391DC75001AAD40 /* strlcat.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strlcat.c; sourceTree = "<group>"; };
619A554D1391DC75001AAD40 /* strncasecmp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strncasecmp.c; sourceTree = "<group>"; };
619A554E1391DC75001AAD40 /* strndup.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strndup.c; sourceTree = "<group>"; };
619A554F1391DC75001AAD40 /* strnlen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strnlen.c; sourceTree = "<group>"; };
619A55501391DC75001AAD40 /* strntoimax.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strntoimax.c; sourceTree = "<group>"; };
619A55511391DC75001AAD40 /* strntoumax.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strntoumax.c; sourceTree = "<group>"; };
619A55521391DC75001AAD40 /* strpbrk.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strpbrk.c; sourceTree = "<group>"; };
619A55531391DC75001AAD40 /* strsep.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strsep.c; sourceTree = "<group>"; };
619A55541391DC75001AAD40 /* strtoimax.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strtoimax.c; sourceTree = "<group>"; };
619A55551391DC75001AAD40 /* strtok.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strtok.c; sourceTree = "<group>"; };
619A55561391DC75001AAD40 /* strtok_r.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strtok_r.c; sourceTree = "<group>"; };
619A55571391DC75001AAD40 /* strtol.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strtol.c; sourceTree = "<group>"; };
619A55581391DC75001AAD40 /* strtoll.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strtoll.c; sourceTree = "<group>"; };
619A55591391DC75001AAD40 /* strtotimespec.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strtotimespec.c; sourceTree = "<group>"; };
619A555A1391DC75001AAD40 /* strtotimeval.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strtotimeval.c; sourceTree = "<group>"; };
619A555B1391DC75001AAD40 /* strtotimex.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strtotimex.c; sourceTree = "<group>"; };
619A555C1391DC75001AAD40 /* strtoul.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strtoul.c; sourceTree = "<group>"; };
619A555D1391DC75001AAD40 /* strtoull.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strtoull.c; sourceTree = "<group>"; };
619A555E1391DC75001AAD40 /* strtoumax.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strtoumax.c; sourceTree = "<group>"; };
619A555F1391DC75001AAD40 /* strtox.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strtox.c; sourceTree = "<group>"; };
619A55601391DC75001AAD40 /* strxspn.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strxspn.c; sourceTree = "<group>"; };
619A55611391DC75001AAD40 /* strxspn.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = strxspn.h; sourceTree = "<group>"; };
619A55621391DC75001AAD40 /* version */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = version; sourceTree = "<group>"; };
619A55631391DC75001AAD40 /* vsnprintf.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = vsnprintf.c; sourceTree = "<group>"; };
619A55641391DC75001AAD40 /* vsscanf.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = vsscanf.c; sourceTree = "<group>"; };
619A55651391DC75001AAD40 /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = "<group>"; };
619A55661391DC75001AAD40 /* MakeInc.dir */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = MakeInc.dir; sourceTree = "<group>"; };
619A55671391DC75001AAD40 /* Modules.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Modules.txt; sourceTree = "<group>"; };
619A55691391DC75001AAD40 /* Cconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Cconfig; sourceTree = "<group>"; };
619A556A1391DC75001AAD40 /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = "<group>"; };
619A556B1391DC75001AAD40 /* nvidia.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = nvidia.c; sourceTree = "<group>"; };
619A556C1391DC75001AAD40 /* nvidia.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nvidia.h; sourceTree = "<group>"; };
619A556D1391DC75001AAD40 /* NVIDIAGraphicsEnabler.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = NVIDIAGraphicsEnabler.c; sourceTree = "<group>"; };
619A556E1391DC75001AAD40 /* Readme.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Readme.txt; sourceTree = "<group>"; };
619A55701391DC75001AAD40 /* 915resolution.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = 915resolution.c; sourceTree = "<group>"; };
619A55711391DC75001AAD40 /* 915resolution.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = 915resolution.h; sourceTree = "<group>"; };
619A55721391DC75001AAD40 /* Cconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Cconfig; sourceTree = "<group>"; };
619A55731391DC75001AAD40 /* edid.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = edid.c; sourceTree = "<group>"; };
619A55751391DC75001AAD40 /* edid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = edid.h; sourceTree = "<group>"; };
619A55761391DC75001AAD40 /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = "<group>"; };
619A55771391DC75001AAD40 /* Readme.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Readme.txt; sourceTree = "<group>"; };
619A55781391DC75001AAD40 /* Resolution.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Resolution.c; sourceTree = "<group>"; };
619A55791391DC75001AAD40 /* shortatombios.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = shortatombios.h; sourceTree = "<group>"; };
619A557B1391DC75001AAD40 /* abi.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = abi.cpp; sourceTree = "<group>"; };
619A557C1391DC75001AAD40 /* algorithm.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = algorithm.cpp; sourceTree = "<group>"; };
619A557D1391DC75001AAD40 /* associative_base.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = associative_base.cpp; sourceTree = "<group>"; };
619A557E1391DC75001AAD40 /* bitset.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = bitset.cpp; sourceTree = "<group>"; };
619A557F1391DC75001AAD40 /* Cconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Cconfig; sourceTree = "<group>"; };
619A55801391DC75001AAD40 /* char_traits.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = char_traits.cpp; sourceTree = "<group>"; };
619A55811391DC75001AAD40 /* complex.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = complex.cpp; sourceTree = "<group>"; };
619A55821391DC75001AAD40 /* del_op.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = del_op.cpp; sourceTree = "<group>"; };
619A55831391DC75001AAD40 /* del_opnt.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = del_opnt.cpp; sourceTree = "<group>"; };
619A55841391DC75001AAD40 /* del_opv.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = del_opv.cpp; sourceTree = "<group>"; };
619A55851391DC75001AAD40 /* del_opvnt.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = del_opvnt.cpp; sourceTree = "<group>"; };
619A55861391DC75001AAD40 /* deque.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = deque.cpp; sourceTree = "<group>"; };
619A55871391DC75001AAD40 /* eh_alloc.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = eh_alloc.cpp; sourceTree = "<group>"; };
619A55881391DC75001AAD40 /* eh_globals.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = eh_globals.cpp; sourceTree = "<group>"; };
619A55891391DC75001AAD40 /* exception.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = exception.cpp; sourceTree = "<group>"; };
619A558A1391DC75001AAD40 /* fstream.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = fstream.cpp; sourceTree = "<group>"; };
619A558B1391DC75001AAD40 /* func_exception.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = func_exception.cpp; sourceTree = "<group>"; };
619A558D1391DC75001AAD40 /* algorithm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = algorithm; sourceTree = "<group>"; };
619A558E1391DC75001AAD40 /* associative_base */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = associative_base; sourceTree = "<group>"; };
619A558F1391DC75001AAD40 /* basic_definitions */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = basic_definitions; sourceTree = "<group>"; };
619A55901391DC75001AAD40 /* bitset */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = bitset; sourceTree = "<group>"; };
619A55911391DC75001AAD40 /* cassert */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = cassert; sourceTree = "<group>"; };
619A55921391DC75001AAD40 /* cctype */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = cctype; sourceTree = "<group>"; };
619A55931391DC75001AAD40 /* cerrno */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = cerrno; sourceTree = "<group>"; };
619A55941391DC75001AAD40 /* cfloat */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = cfloat; sourceTree = "<group>"; };
619A55951391DC75001AAD40 /* char_traits */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = char_traits; sourceTree = "<group>"; };
619A55961391DC75001AAD40 /* climits */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = climits; sourceTree = "<group>"; };
619A55971391DC75001AAD40 /* clocale */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = clocale; sourceTree = "<group>"; };
619A55981391DC75001AAD40 /* cmath */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = cmath; sourceTree = "<group>"; };
619A55991391DC75001AAD40 /* complex */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = complex; sourceTree = "<group>"; };
619A559A1391DC75001AAD40 /* csetjmp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = csetjmp; sourceTree = "<group>"; };
619A559B1391DC75001AAD40 /* csignal */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = csignal; sourceTree = "<group>"; };
619A559C1391DC75001AAD40 /* cstdarg */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = cstdarg; sourceTree = "<group>"; };
619A559D1391DC75001AAD40 /* cstddef */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = cstddef; sourceTree = "<group>"; };
619A559E1391DC75001AAD40 /* cstdio */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = cstdio; sourceTree = "<group>"; };
619A559F1391DC75001AAD40 /* cstdlib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = cstdlib; sourceTree = "<group>"; };
619A55A01391DC75001AAD40 /* cstring */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = cstring; sourceTree = "<group>"; };
619A55A11391DC75001AAD40 /* ctime */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ctime; sourceTree = "<group>"; };
619A55A21391DC75001AAD40 /* cwchar */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = cwchar; sourceTree = "<group>"; };
619A55A31391DC75001AAD40 /* cwctype */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = cwctype; sourceTree = "<group>"; };
619A55A41391DC75001AAD40 /* deque */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = deque; sourceTree = "<group>"; };
619A55A51391DC75001AAD40 /* exception */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = exception; sourceTree = "<group>"; };
619A55A61391DC75001AAD40 /* fstream */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = fstream; sourceTree = "<group>"; };
619A55A71391DC75001AAD40 /* func_exception */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = func_exception; sourceTree = "<group>"; };
619A55A81391DC75001AAD40 /* functional */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = functional; sourceTree = "<group>"; };
619A55A91391DC75001AAD40 /* iomanip */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = iomanip; sourceTree = "<group>"; };
619A55AA1391DC75001AAD40 /* ios */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ios; sourceTree = "<group>"; };
619A55AB1391DC75001AAD40 /* iosfwd */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = iosfwd; sourceTree = "<group>"; };
619A55AC1391DC75001AAD40 /* iostream */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = iostream; sourceTree = "<group>"; };
619A55AD1391DC75001AAD40 /* istream */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = istream; sourceTree = "<group>"; };
619A55AE1391DC75001AAD40 /* istream_helpers */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = istream_helpers; sourceTree = "<group>"; };
619A55AF1391DC75001AAD40 /* iterator */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = iterator; sourceTree = "<group>"; };
619A55B01391DC75001AAD40 /* iterator_base */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = iterator_base; sourceTree = "<group>"; };
619A55B11391DC75001AAD40 /* limits */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = limits; sourceTree = "<group>"; };
619A55B21391DC75001AAD40 /* list */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = list; sourceTree = "<group>"; };
619A55B31391DC75001AAD40 /* locale */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = locale; sourceTree = "<group>"; };
619A55B41391DC75001AAD40 /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = "<group>"; };
619A55B51391DC75001AAD40 /* map */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = map; sourceTree = "<group>"; };
619A55B61391DC75001AAD40 /* map.old */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = map.old; sourceTree = "<group>"; };
619A55B71391DC75001AAD40 /* memory */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = memory; sourceTree = "<group>"; };
619A55B81391DC75001AAD40 /* new */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = new; sourceTree = "<group>"; };
619A55B91391DC75001AAD40 /* numeric */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = numeric; sourceTree = "<group>"; };
619A55BA1391DC75001AAD40 /* ostream */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ostream; sourceTree = "<group>"; };
619A55BB1391DC75001AAD40 /* ostream_helpers */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ostream_helpers; sourceTree = "<group>"; };
619A55BC1391DC75001AAD40 /* queue */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = queue; sourceTree = "<group>"; };
619A55BD1391DC75001AAD40 /* set */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = set; sourceTree = "<group>"; };
619A55BE1391DC75001AAD40 /* set.old */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = set.old; sourceTree = "<group>"; };
619A55BF1391DC75001AAD40 /* sstream */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = sstream; sourceTree = "<group>"; };
619A55C01391DC75001AAD40 /* stack */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = stack; sourceTree = "<group>"; };
619A55C11391DC75001AAD40 /* stdexcept */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = stdexcept; sourceTree = "<group>"; };
619A55C21391DC75001AAD40 /* streambuf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = streambuf; sourceTree = "<group>"; };
619A55C31391DC75001AAD40 /* string */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = string; sourceTree = "<group>"; };
619A55C41391DC75001AAD40 /* string_iostream */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = string_iostream; sourceTree = "<group>"; };
619A55C51391DC75001AAD40 /* support */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = support; sourceTree = "<group>"; };
619A55C61391DC75001AAD40 /* system_configuration.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = system_configuration.h; sourceTree = "<group>"; };
619A55C71391DC75001AAD40 /* type_traits */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = type_traits; sourceTree = "<group>"; };
619A55C81391DC75001AAD40 /* typeinfo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = typeinfo; sourceTree = "<group>"; };
619A55C91391DC75001AAD40 /* types */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = types; sourceTree = "<group>"; };
619A55CA1391DC75001AAD40 /* unwind-cxx.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "unwind-cxx.h"; sourceTree = "<group>"; };
619A55CB1391DC75001AAD40 /* utility */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = utility; sourceTree = "<group>"; };
619A55CC1391DC75001AAD40 /* valarray */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = valarray; sourceTree = "<group>"; };
619A55CD1391DC75001AAD40 /* vector */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = vector; sourceTree = "<group>"; };
619A55CE1391DC75001AAD40 /* iomanip.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = iomanip.cpp; sourceTree = "<group>"; };
619A55CF1391DC75001AAD40 /* ios.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ios.cpp; sourceTree = "<group>"; };
619A55D01391DC75001AAD40 /* iostream.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = iostream.cpp; sourceTree = "<group>"; };
619A55D11391DC75001AAD40 /* istream.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = istream.cpp; sourceTree = "<group>"; };
619A55D21391DC75001AAD40 /* iterator.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = iterator.cpp; sourceTree = "<group>"; };
619A55D31391DC75001AAD40 /* limits.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = limits.cpp; sourceTree = "<group>"; };
619A55D41391DC75001AAD40 /* list.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = list.cpp; sourceTree = "<group>"; };
619A55D51391DC75001AAD40 /* locale.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = locale.cpp; sourceTree = "<group>"; };
619A55D61391DC75001AAD40 /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = "<group>"; };
619A55D71391DC75001AAD40 /* map.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = map.cpp; sourceTree = "<group>"; };
619A55D81391DC75001AAD40 /* new_handler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = new_handler.cpp; sourceTree = "<group>"; };
619A55D91391DC75001AAD40 /* new_op.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = new_op.cpp; sourceTree = "<group>"; };
619A55DA1391DC75001AAD40 /* new_opnt.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = new_opnt.cpp; sourceTree = "<group>"; };
619A55DB1391DC75001AAD40 /* new_opv.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = new_opv.cpp; sourceTree = "<group>"; };
619A55DC1391DC75001AAD40 /* new_opvnt.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = new_opvnt.cpp; sourceTree = "<group>"; };
619A55DD1391DC75001AAD40 /* numeric.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = numeric.cpp; sourceTree = "<group>"; };
619A55DE1391DC75001AAD40 /* ostream.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ostream.cpp; sourceTree = "<group>"; };
619A55DF1391DC75001AAD40 /* queue.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = queue.cpp; sourceTree = "<group>"; };
619A55E01391DC75001AAD40 /* Readme.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Readme.txt; sourceTree = "<group>"; };
619A55E11391DC75001AAD40 /* set.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = set.cpp; sourceTree = "<group>"; };
619A55E21391DC75001AAD40 /* sstream.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sstream.cpp; sourceTree = "<group>"; };
619A55E31391DC75001AAD40 /* stack.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = stack.cpp; sourceTree = "<group>"; };
619A55E41391DC75001AAD40 /* stdexcept.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = stdexcept.cpp; sourceTree = "<group>"; };
619A55E51391DC75001AAD40 /* streambuf.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = streambuf.cpp; sourceTree = "<group>"; };
619A55E61391DC75001AAD40 /* string.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = string.cpp; sourceTree = "<group>"; };
619A55E71391DC75001AAD40 /* support.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = support.cpp; sourceTree = "<group>"; };
619A55E81391DC75001AAD40 /* typeinfo.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = typeinfo.cpp; sourceTree = "<group>"; };
619A55E91391DC75001AAD40 /* uClibc++.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = "uClibc++.c"; sourceTree = "<group>"; };
619A55EA1391DC75001AAD40 /* utility.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = utility.cpp; sourceTree = "<group>"; };
619A55EB1391DC75001AAD40 /* valarray.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = valarray.cpp; sourceTree = "<group>"; };
619A55EC1391DC75001AAD40 /* vector.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = vector.cpp; sourceTree = "<group>"; };
619A55EE1391DC75001AAD40 /* bdmesg.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = bdmesg.c; sourceTree = "<group>"; };
619A55EF1391DC75001AAD40 /* Cconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Cconfig; sourceTree = "<group>"; };
619A55F01391DC75001AAD40 /* dyldsymboltool.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = dyldsymboltool.c; sourceTree = "<group>"; };
619A55F11391DC75001AAD40 /* machOconv.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = machOconv.c; sourceTree = "<group>"; };
619A55F21391DC75001AAD40 /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = "<group>"; };
619A55F31391DC75001AAD40 /* Make.rules */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Make.rules; sourceTree = "<group>"; };
619A55F41391DC75001AAD40 /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = "<group>"; };
619A55F51391DC75001AAD40 /* MEMTEST86_LICENSE */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = MEMTEST86_LICENSE; sourceTree = "<group>"; };
619A55F71391DC75001AAD40 /* builddmg */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = builddmg; sourceTree = "<group>"; };
619A55F81391DC75001AAD40 /* buildpkg */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = buildpkg; sourceTree = "<group>"; };
619A55FB1391DC75001AAD40 /* EFI Mounter.app */ = {isa = PBXFileReference; lastKnownFileType = wrapper.application; path = "EFI Mounter.app"; sourceTree = "<group>"; };
619A55FF1391DC75001AAD40 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
619A56011391DC75001AAD40 /* Chameleon */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.bundle"; path = Chameleon; sourceTree = "<group>"; };
619A56031391DC75001AAD40 /* advanced.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = advanced.png; sourceTree = "<group>"; };
619A56041391DC75001AAD40 /* background.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = background.png; sourceTree = "<group>"; };
619A56051391DC75001AAD40 /* cdBootCreator.sh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = cdBootCreator.sh; sourceTree = "<group>"; };
619A56061391DC75001AAD40 /* CDROM.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = CDROM.png; sourceTree = "<group>"; };
619A56071391DC75001AAD40 /* cham.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = cham.png; sourceTree = "<group>"; };
619A56081391DC75001AAD40 /* Chameleon.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; path = Chameleon.icns; sourceTree = "<group>"; };
619A56091391DC75001AAD40 /* Chameleon.tiff */ = {isa = PBXFileReference; lastKnownFileType = image.tiff; path = Chameleon.tiff; sourceTree = "<group>"; };
619A560A1391DC75001AAD40 /* chamsmall.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = chamsmall.png; sourceTree = "<group>"; };
619A560B1391DC75001AAD40 /* CHANGES */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = CHANGES; sourceTree = "<group>"; };
619A560C1391DC75001AAD40 /* chip.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = chip.png; sourceTree = "<group>"; };
619A560D1391DC75001AAD40 /* CREDITS */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = CREDITS; sourceTree = "<group>"; };
619A560E1391DC75001AAD40 /* disk.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = disk.png; sourceTree = "<group>"; };
619A56101391DC75001AAD40 /* English */ = {isa = PBXFileReference; lastKnownFileType = file.bplist; name = English; path = English.lproj/Chameleon.nib; sourceTree = "<group>"; };
619A56121391DC75001AAD40 /* English */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/Chameleon.strings; sourceTree = "<group>"; };
619A56141391DC75001AAD40 /* English */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = "<group>"; };
619A56161391DC75001AAD40 /* English */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/Localizable.strings; sourceTree = "<group>"; };
619A56171391DC75001AAD40 /* extractAcpi.sh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = extractAcpi.sh; sourceTree = "<group>"; };
619A56181391DC75001AAD40 /* flag.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = flag.png; sourceTree = "<group>"; };
619A56191391DC75001AAD40 /* footer.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = footer.png; sourceTree = "<group>"; };
619A561A1391DC75001AAD40 /* French */ = {isa = PBXFileReference; lastKnownFileType = file.bplist; name = French; path = French.lproj/Chameleon.nib; sourceTree = "<group>"; };
619A561B1391DC75001AAD40 /* French */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.strings; name = French; path = French.lproj/Chameleon.strings; sourceTree = "<group>"; };
619A561C1391DC75001AAD40 /* French */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.strings; name = French; path = French.lproj/Localizable.strings; sourceTree = "<group>"; };
619A561D1391DC75001AAD40 /* German */ = {isa = PBXFileReference; lastKnownFileType = file.bplist; name = German; path = German.lproj/Chameleon.nib; sourceTree = "<group>"; };
619A561E1391DC75001AAD40 /* German */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.strings; name = German; path = German.lproj/Chameleon.strings; sourceTree = "<group>"; };
619A561F1391DC75001AAD40 /* German */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.strings; name = German; path = German.lproj/Localizable.strings; sourceTree = "<group>"; };
619A56201391DC75001AAD40 /* getDevProp.sh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = getDevProp.sh; sourceTree = "<group>"; };
619A56211391DC75001AAD40 /* gfxutil */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.executable"; path = gfxutil; sourceTree = "<group>"; };
619A56221391DC75001AAD40 /* Italian */ = {isa = PBXFileReference; lastKnownFileType = file.bplist; name = Italian; path = Italian.lproj/Chameleon.nib; sourceTree = "<group>"; };
619A56231391DC75001AAD40 /* Italian */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.strings; name = Italian; path = Italian.lproj/Chameleon.strings; sourceTree = "<group>"; };
619A56241391DC75001AAD40 /* Italian */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.strings; name = Italian; path = Italian.lproj/Localizable.strings; sourceTree = "<group>"; };
619A56251391DC75001AAD40 /* Linux.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Linux.png; sourceTree = "<group>"; };
619A56261391DC75001AAD40 /* MacOSX.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = MacOSX.png; sourceTree = "<group>"; };
619A56271391DC75001AAD40 /* name.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = name.png; sourceTree = "<group>"; };
619A56281391DC75001AAD40 /* plug.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = plug.png; sourceTree = "<group>"; };
619A56291391DC75001AAD40 /* README */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = README; sourceTree = "<group>"; };
619A562A1391DC75001AAD40 /* Spanish */ = {isa = PBXFileReference; lastKnownFileType = file.bplist; name = Spanish; path = Spanish.lproj/Chameleon.nib; sourceTree = "<group>"; };
619A562B1391DC75001AAD40 /* Spanish */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.strings; name = Spanish; path = Spanish.lproj/Chameleon.strings; sourceTree = "<group>"; };
619A562C1391DC75001AAD40 /* Spanish */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.strings; name = Spanish; path = Spanish.lproj/Localizable.strings; sourceTree = "<group>"; };
619A562D1391DC75001AAD40 /* syringe.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = syringe.png; sourceTree = "<group>"; };
619A562E1391DC75001AAD40 /* TODO */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = TODO; sourceTree = "<group>"; };
619A562F1391DC75001AAD40 /* version */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = version; sourceTree = "<group>"; };
619A56301391DC75001AAD40 /* Windows.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Windows.png; sourceTree = "<group>"; };
619A56311391DC75001AAD40 /* wrench.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = wrench.png; sourceTree = "<group>"; };
619A56331391DC75001AAD40 /* smbios.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = smbios.plist; sourceTree = "<group>"; };
619A56341391DC75001AAD40 /* Distribution */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = Distribution; sourceTree = "<group>"; };
619A56361391DC75001AAD40 /* BootHelp.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BootHelp.txt; sourceTree = "<group>"; };
619A56371391DC75001AAD40 /* README */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = README; sourceTree = "<group>"; };
619A56381391DC75001AAD40 /* Users_Guide0.5.pdf */ = {isa = PBXFileReference; lastKnownFileType = image.pdf; path = Users_Guide0.5.pdf; sourceTree = "<group>"; };
619A56391391DC75001AAD40 /* fdisk440 */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.executable"; path = fdisk440; sourceTree = "<group>"; };
619A563A1391DC75001AAD40 /* Icon.zip */ = {isa = PBXFileReference; lastKnownFileType = archive.zip; path = Icon.zip; sourceTree = "<group>"; };
619A563C1391DC75001AAD40 /* AHCIPortInjector.kext */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.kernel-extension"; path = AHCIPortInjector.kext; sourceTree = "<group>"; };
619A563D1391DC75001AAD40 /* ATAPortInjector.kext */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.kernel-extension"; path = ATAPortInjector.kext; sourceTree = "<group>"; };
619A563E1391DC75001AAD40 /* FakeSMC.kext */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.kernel-extension"; path = FakeSMC.kext; sourceTree = "<group>"; };
619A563F1391DC75001AAD40 /* IOAHCIBlockStorageInjector.kext */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.kernel-extension"; path = IOAHCIBlockStorageInjector.kext; sourceTree = "<group>"; };
619A56401391DC75001AAD40 /* IOATAFamily.kext */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.kernel-extension"; path = IOATAFamily.kext; sourceTree = "<group>"; };
619A56411391DC75001AAD40 /* JMicronATAInjector.kext */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.kernel-extension"; path = JMicronATAInjector.kext; sourceTree = "<group>"; };
619A56431391DC75001AAD40 /* background.tiff */ = {isa = PBXFileReference; lastKnownFileType = image.tiff; path = background.tiff; sourceTree = "<group>"; };
619A56451391DC75001AAD40 /* English */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = English; path = English.lproj/Conclusion.rtfd; sourceTree = "<group>"; };
619A56471391DC75001AAD40 /* English */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; name = English; path = English.lproj/Description.html; sourceTree = "<group>"; };
619A56491391DC75001AAD40 /* English */ = {isa = PBXFileReference; lastKnownFileType = text.rtf; name = English; path = English.lproj/License.rtf; sourceTree = "<group>"; };
619A564B1391DC75001AAD40 /* English */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/Localizable.strings; sourceTree = "<group>"; };
619A564D1391DC75001AAD40 /* English */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = English; path = English.lproj/Welcome.rtfd; sourceTree = "<group>"; };
619A56511391DC75001AAD40 /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = postinstall; sourceTree = "<group>"; };
619A56531391DC75001AAD40 /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = postinstall; sourceTree = "<group>"; };
619A56551391DC75001AAD40 /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = postinstall; sourceTree = "<group>"; };
619A56571391DC75001AAD40 /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = postinstall; sourceTree = "<group>"; };
619A56591391DC75001AAD40 /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = postinstall; sourceTree = "<group>"; };
619A565B1391DC75001AAD40 /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = postinstall; sourceTree = "<group>"; };
619A565D1391DC75001AAD40 /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = postinstall; sourceTree = "<group>"; };
619A565F1391DC75001AAD40 /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = postinstall; sourceTree = "<group>"; };
619A56611391DC75001AAD40 /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = postinstall; sourceTree = "<group>"; };
619A56631391DC75001AAD40 /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = postinstall; sourceTree = "<group>"; };
619A56651391DC75001AAD40 /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = postinstall; sourceTree = "<group>"; };
619A56671391DC75001AAD40 /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = postinstall; sourceTree = "<group>"; };
619A56691391DC75001AAD40 /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = postinstall; sourceTree = "<group>"; };
619A566B1391DC75001AAD40 /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = postinstall; sourceTree = "<group>"; };
619A566D1391DC75001AAD40 /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = postinstall; sourceTree = "<group>"; };
619A56701391DC75001AAD40 /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = postinstall; sourceTree = "<group>"; };
619A56721391DC75001AAD40 /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = postinstall; sourceTree = "<group>"; };
619A56741391DC75001AAD40 /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = postinstall; sourceTree = "<group>"; };
619A56761391DC75001AAD40 /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = postinstall; sourceTree = "<group>"; };
619A56781391DC75001AAD40 /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = postinstall; sourceTree = "<group>"; };
619A567A1391DC75001AAD40 /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = postinstall; sourceTree = "<group>"; };
619A567C1391DC75001AAD40 /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = postinstall; sourceTree = "<group>"; };
619A567E1391DC75001AAD40 /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = postinstall; sourceTree = "<group>"; };
619A56801391DC75001AAD40 /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = postinstall; sourceTree = "<group>"; };
619A56831391DC75001AAD40 /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = postinstall; sourceTree = "<group>"; };
619A56851391DC75001AAD40 /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = postinstall; sourceTree = "<group>"; };
619A56871391DC75001AAD40 /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = postinstall; sourceTree = "<group>"; };
619A56891391DC75001AAD40 /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = postinstall; sourceTree = "<group>"; };
619A568B1391DC75001AAD40 /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = postinstall; sourceTree = "<group>"; };
619A568D1391DC75001AAD40 /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = postinstall; sourceTree = "<group>"; };
619A568F1391DC75001AAD40 /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = postinstall; sourceTree = "<group>"; };
619A56911391DC75001AAD40 /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = postinstall; sourceTree = "<group>"; };
619A56941391DC75001AAD40 /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = postinstall; sourceTree = "<group>"; };
619A56961391DC75001AAD40 /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = postinstall; sourceTree = "<group>"; };
619A56981391DC75001AAD40 /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = postinstall; sourceTree = "<group>"; };
619A569A1391DC75001AAD40 /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = postinstall; sourceTree = "<group>"; };
619A569C1391DC75001AAD40 /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = postinstall; sourceTree = "<group>"; };
619A569E1391DC75001AAD40 /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = postinstall; sourceTree = "<group>"; };
619A56A01391DC75001AAD40 /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = postinstall; sourceTree = "<group>"; };
619A56A21391DC75001AAD40 /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = postinstall; sourceTree = "<group>"; };
619A56A31391DC75001AAD40 /* slimpkg */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = slimpkg; sourceTree = "<group>"; };
619A56A41391DC75001AAD40 /* smbios.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = smbios.plist; sourceTree = "<group>"; };
619A56A51391DC75001AAD40 /* README */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = README; sourceTree = "<group>"; };
619A56A61391DC75001AAD40 /* TODO */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = TODO; sourceTree = "<group>"; };
619A56A71391DC75001AAD40 /* version */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = version; sourceTree = "<group>"; };
618C269213947DEB005E47FA /* APPLE_LICENSE */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = APPLE_LICENSE; sourceTree = "<group>"; };
618C269613947DEB005E47FA /* background.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = background.png; sourceTree = "<group>"; };
618C269713947DEB005E47FA /* boot.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = boot.png; sourceTree = "<group>"; };
618C269813947DEB005E47FA /* device_cdrom.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_cdrom.png; sourceTree = "<group>"; };
618C269913947DEB005E47FA /* device_ext3.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_ext3.png; sourceTree = "<group>"; };
618C269A13947DEB005E47FA /* device_fat16.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_fat16.png; sourceTree = "<group>"; };
618C269B13947DEB005E47FA /* device_fat32.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_fat32.png; sourceTree = "<group>"; };
618C269C13947DEB005E47FA /* device_generic.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_generic.png; sourceTree = "<group>"; };
618C269D13947DEB005E47FA /* device_hfsplus.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_hfsplus.png; sourceTree = "<group>"; };
618C269E13947DEB005E47FA /* device_ntfs.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_ntfs.png; sourceTree = "<group>"; };
618C269F13947DEB005E47FA /* device_scroll_next.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_scroll_next.png; sourceTree = "<group>"; };
618C26A013947DEB005E47FA /* device_scroll_prev.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_scroll_prev.png; sourceTree = "<group>"; };
618C26A113947DEB005E47FA /* device_selection.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_selection.png; sourceTree = "<group>"; };
618C26A213947DEB005E47FA /* font_console.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = font_console.png; sourceTree = "<group>"; };
618C26A313947DEB005E47FA /* font_small.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = font_small.png; sourceTree = "<group>"; };
618C26A413947DEB005E47FA /* logo.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = logo.png; sourceTree = "<group>"; };
618C26A513947DEB005E47FA /* menu_boot.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_boot.png; sourceTree = "<group>"; };
618C26A613947DEB005E47FA /* menu_help.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_help.png; sourceTree = "<group>"; };
618C26A713947DEB005E47FA /* menu_ignore_caches.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_ignore_caches.png; sourceTree = "<group>"; };
618C26A813947DEB005E47FA /* menu_ignore_caches_disabled.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_ignore_caches_disabled.png; sourceTree = "<group>"; };
618C26A913947DEB005E47FA /* menu_memory_info.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_memory_info.png; sourceTree = "<group>"; };
618C26AA13947DEB005E47FA /* menu_selection.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_selection.png; sourceTree = "<group>"; };
618C26AB13947DEB005E47FA /* menu_single_user.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_single_user.png; sourceTree = "<group>"; };
618C26AC13947DEB005E47FA /* menu_single_user_disabled.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_single_user_disabled.png; sourceTree = "<group>"; };
618C26AD13947DEB005E47FA /* menu_verbose.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_verbose.png; sourceTree = "<group>"; };
618C26AE13947DEB005E47FA /* menu_verbose_disabled.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_verbose_disabled.png; sourceTree = "<group>"; };
618C26AF13947DEB005E47FA /* menu_video_info.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_video_info.png; sourceTree = "<group>"; };
618C26B013947DEB005E47FA /* progress_bar.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = progress_bar.png; sourceTree = "<group>"; };
618C26B113947DEB005E47FA /* progress_bar_background.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = progress_bar_background.png; sourceTree = "<group>"; };
618C26B213947DEB005E47FA /* text_scroll_next.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = text_scroll_next.png; sourceTree = "<group>"; };
618C26B313947DEB005E47FA /* text_scroll_prev.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = text_scroll_prev.png; sourceTree = "<group>"; };
618C26B413947DEB005E47FA /* theme.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = theme.plist; sourceTree = "<group>"; };
618C26B613947DEB005E47FA /* background.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = background.png; sourceTree = "<group>"; };
618C26B713947DEB005E47FA /* boot.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = boot.png; sourceTree = "<group>"; };
618C26B813947DEB005E47FA /* device_befs.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_befs.png; sourceTree = "<group>"; };
618C26B913947DEB005E47FA /* device_befs_o.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_befs_o.png; sourceTree = "<group>"; };
618C26BA13947DEB005E47FA /* device_cdrom.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_cdrom.png; sourceTree = "<group>"; };
618C26BB13947DEB005E47FA /* device_cdrom_o.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_cdrom_o.png; sourceTree = "<group>"; };
618C26BC13947DEB005E47FA /* device_ext3.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_ext3.png; sourceTree = "<group>"; };
618C26BD13947DEB005E47FA /* device_ext3_o.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_ext3_o.png; sourceTree = "<group>"; };
618C26BE13947DEB005E47FA /* device_fat.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_fat.png; sourceTree = "<group>"; };
618C26BF13947DEB005E47FA /* device_fat_o.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_fat_o.png; sourceTree = "<group>"; };
618C26C013947DEB005E47FA /* device_freebsd.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_freebsd.png; sourceTree = "<group>"; };
618C26C113947DEB005E47FA /* device_freebsd_o.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_freebsd_o.png; sourceTree = "<group>"; };
618C26C213947DEB005E47FA /* device_generic.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_generic.png; sourceTree = "<group>"; };
618C26C313947DEB005E47FA /* device_generic_o.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_generic_o.png; sourceTree = "<group>"; };
618C26C413947DEB005E47FA /* device_hfsplus.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_hfsplus.png; sourceTree = "<group>"; };
618C26C513947DEB005E47FA /* device_hfsplus_o.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_hfsplus_o.png; sourceTree = "<group>"; };
618C26C613947DEB005E47FA /* device_hfsraid.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_hfsraid.png; sourceTree = "<group>"; };
618C26C713947DEB005E47FA /* device_hfsraid_o.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_hfsraid_o.png; sourceTree = "<group>"; };
618C26C813947DEB005E47FA /* device_ntfs.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_ntfs.png; sourceTree = "<group>"; };
618C26C913947DEB005E47FA /* device_ntfs_o.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_ntfs_o.png; sourceTree = "<group>"; };
618C26CA13947DEB005E47FA /* device_openbsd.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_openbsd.png; sourceTree = "<group>"; };
618C26CB13947DEB005E47FA /* device_openbsd_o.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_openbsd_o.png; sourceTree = "<group>"; };
618C26CC13947DEB005E47FA /* device_scroll_next.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_scroll_next.png; sourceTree = "<group>"; };
618C26CD13947DEB005E47FA /* device_scroll_prev.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_scroll_prev.png; sourceTree = "<group>"; };
618C26CE13947DEB005E47FA /* device_selection.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_selection.png; sourceTree = "<group>"; };
618C26CF13947DEB005E47FA /* font_console.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = font_console.png; sourceTree = "<group>"; };
618C26D013947DEB005E47FA /* font_small.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = font_small.png; sourceTree = "<group>"; };
618C26D113947DEB005E47FA /* logo.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = logo.png; sourceTree = "<group>"; };
618C26D213947DEB005E47FA /* menu_boot.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_boot.png; sourceTree = "<group>"; };
618C26D313947DEB005E47FA /* menu_help.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_help.png; sourceTree = "<group>"; };
618C26D413947DEB005E47FA /* menu_ignore_caches.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_ignore_caches.png; sourceTree = "<group>"; };
618C26D513947DEB005E47FA /* menu_ignore_caches_disabled.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_ignore_caches_disabled.png; sourceTree = "<group>"; };
618C26D613947DEB005E47FA /* menu_memory_info.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_memory_info.png; sourceTree = "<group>"; };
618C26D713947DEB005E47FA /* menu_selection.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_selection.png; sourceTree = "<group>"; };
618C26D813947DEB005E47FA /* menu_single_user.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_single_user.png; sourceTree = "<group>"; };
618C26D913947DEB005E47FA /* menu_single_user_disabled.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_single_user_disabled.png; sourceTree = "<group>"; };
618C26DA13947DEB005E47FA /* menu_verbose.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_verbose.png; sourceTree = "<group>"; };
618C26DB13947DEB005E47FA /* menu_verbose_disabled.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_verbose_disabled.png; sourceTree = "<group>"; };
618C26DC13947DEB005E47FA /* menu_video_info.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_video_info.png; sourceTree = "<group>"; };
618C26DD13947DEB005E47FA /* progress_bar.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = progress_bar.png; sourceTree = "<group>"; };
618C26DE13947DEB005E47FA /* progress_bar_background.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = progress_bar_background.png; sourceTree = "<group>"; };
618C26DF13947DEB005E47FA /* text_scroll_next.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = text_scroll_next.png; sourceTree = "<group>"; };
618C26E013947DEB005E47FA /* text_scroll_prev.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = text_scroll_prev.png; sourceTree = "<group>"; };
618C26E113947DEB005E47FA /* theme.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = theme.plist; sourceTree = "<group>"; };
618C26E213947DEB005E47FA /* thumb.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = thumb.png; sourceTree = "<group>"; };
618C26E413947DEB005E47FA /* background.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = background.png; sourceTree = "<group>"; };
618C26E513947DEB005E47FA /* boot.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = boot.png; sourceTree = "<group>"; };
618C26E613947DEB005E47FA /* device_cdrom.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_cdrom.png; sourceTree = "<group>"; };
618C26E713947DEB005E47FA /* device_ext3.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_ext3.png; sourceTree = "<group>"; };
618C26E813947DEB005E47FA /* device_fat.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_fat.png; sourceTree = "<group>"; };
618C26E913947DEB005E47FA /* device_generic.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_generic.png; sourceTree = "<group>"; };
618C26EA13947DEB005E47FA /* device_hfsplus.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_hfsplus.png; sourceTree = "<group>"; };
618C26EB13947DEB005E47FA /* device_hfsraid.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_hfsraid.png; sourceTree = "<group>"; };
618C26EC13947DEB005E47FA /* device_ntfs.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_ntfs.png; sourceTree = "<group>"; };
618C26ED13947DEB005E47FA /* device_scroll_next.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_scroll_next.png; sourceTree = "<group>"; };
618C26EE13947DEB005E47FA /* device_scroll_prev.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_scroll_prev.png; sourceTree = "<group>"; };
618C26EF13947DEB005E47FA /* device_selection.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_selection.png; sourceTree = "<group>"; };
618C26F013947DEB005E47FA /* font_console.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = font_console.png; sourceTree = "<group>"; };
618C26F113947DEB005E47FA /* font_small.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = font_small.png; sourceTree = "<group>"; };
618C26F213947DEB005E47FA /* logo.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = logo.png; sourceTree = "<group>"; };
618C26F313947DEB005E47FA /* menu_boot.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_boot.png; sourceTree = "<group>"; };
618C26F413947DEB005E47FA /* menu_help.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_help.png; sourceTree = "<group>"; };
618C26F513947DEB005E47FA /* menu_ignore_caches.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_ignore_caches.png; sourceTree = "<group>"; };
618C26F613947DEB005E47FA /* menu_ignore_caches_disabled.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_ignore_caches_disabled.png; sourceTree = "<group>"; };
618C26F713947DEB005E47FA /* menu_memory_info.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_memory_info.png; sourceTree = "<group>"; };
618C26F813947DEB005E47FA /* menu_selection.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_selection.png; sourceTree = "<group>"; };
618C26F913947DEB005E47FA /* menu_single_user.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_single_user.png; sourceTree = "<group>"; };
618C26FA13947DEB005E47FA /* menu_single_user_disabled.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_single_user_disabled.png; sourceTree = "<group>"; };
618C26FB13947DEB005E47FA /* menu_verbose.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_verbose.png; sourceTree = "<group>"; };
618C26FC13947DEB005E47FA /* menu_verbose_disabled.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_verbose_disabled.png; sourceTree = "<group>"; };
618C26FD13947DEB005E47FA /* menu_video_info.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_video_info.png; sourceTree = "<group>"; };
618C26FE13947DEB005E47FA /* progress_bar.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = progress_bar.png; sourceTree = "<group>"; };
618C26FF13947DEB005E47FA /* progress_bar_background.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = progress_bar_background.png; sourceTree = "<group>"; };
618C270013947DEB005E47FA /* text_scroll_next.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = text_scroll_next.png; sourceTree = "<group>"; };
618C270113947DEB005E47FA /* text_scroll_prev.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = text_scroll_prev.png; sourceTree = "<group>"; };
618C270213947DEB005E47FA /* theme.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = theme.plist; sourceTree = "<group>"; };
618C270413947DEB005E47FA /* background.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = background.png; sourceTree = "<group>"; };
618C270513947DEB005E47FA /* boot.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = boot.png; sourceTree = "<group>"; };
618C270613947DEB005E47FA /* device_cdrom.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_cdrom.png; sourceTree = "<group>"; };
618C270713947DEB005E47FA /* device_ext3.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_ext3.png; sourceTree = "<group>"; };
618C270813947DEB005E47FA /* device_fat.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_fat.png; sourceTree = "<group>"; };
618C270913947DEB005E47FA /* device_generic.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_generic.png; sourceTree = "<group>"; };
618C270A13947DEB005E47FA /* device_hfsplus.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_hfsplus.png; sourceTree = "<group>"; };
618C270B13947DEB005E47FA /* device_ntfs.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_ntfs.png; sourceTree = "<group>"; };
618C270C13947DEB005E47FA /* device_scroll_next.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_scroll_next.png; sourceTree = "<group>"; };
618C270D13947DEB005E47FA /* device_scroll_prev.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_scroll_prev.png; sourceTree = "<group>"; };
618C270E13947DEB005E47FA /* device_selection.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_selection.png; sourceTree = "<group>"; };
618C270F13947DEB005E47FA /* font_console.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = font_console.png; sourceTree = "<group>"; };
618C271013947DEB005E47FA /* font_small.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = font_small.png; sourceTree = "<group>"; };
618C271113947DEB005E47FA /* logo.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = logo.png; sourceTree = "<group>"; };
618C271213947DEB005E47FA /* menu_boot.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_boot.png; sourceTree = "<group>"; };
618C271313947DEB005E47FA /* menu_help.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_help.png; sourceTree = "<group>"; };
618C271413947DEB005E47FA /* menu_ignore_caches.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_ignore_caches.png; sourceTree = "<group>"; };
618C271513947DEB005E47FA /* menu_ignore_caches_disabled.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_ignore_caches_disabled.png; sourceTree = "<group>"; };
618C271613947DEB005E47FA /* menu_memory_info.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_memory_info.png; sourceTree = "<group>"; };
618C271713947DEB005E47FA /* menu_selection.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_selection.png; sourceTree = "<group>"; };
618C271813947DEB005E47FA /* menu_single_user.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_single_user.png; sourceTree = "<group>"; };
618C271913947DEB005E47FA /* menu_single_user_disabled.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_single_user_disabled.png; sourceTree = "<group>"; };
618C271A13947DEB005E47FA /* menu_verbose.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_verbose.png; sourceTree = "<group>"; };
618C271B13947DEB005E47FA /* menu_verbose_disabled.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_verbose_disabled.png; sourceTree = "<group>"; };
618C271C13947DEB005E47FA /* menu_video_info.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_video_info.png; sourceTree = "<group>"; };
618C271D13947DEB005E47FA /* progress_bar.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = progress_bar.png; sourceTree = "<group>"; };
618C271E13947DEB005E47FA /* progress_bar_background.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = progress_bar_background.png; sourceTree = "<group>"; };
618C271F13947DEB005E47FA /* text_scroll_next.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = text_scroll_next.png; sourceTree = "<group>"; };
618C272013947DEB005E47FA /* text_scroll_prev.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = text_scroll_prev.png; sourceTree = "<group>"; };
618C272113947DEB005E47FA /* theme.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = theme.plist; sourceTree = "<group>"; };
618C272313947DEB005E47FA /* logo.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = logo.png; sourceTree = "<group>"; };
618C272413947DEB005E47FA /* theme.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = theme.plist; sourceTree = "<group>"; };
618C272613947DEB005E47FA /* logo.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = logo.png; sourceTree = "<group>"; };
618C272713947DEB005E47FA /* theme.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = theme.plist; sourceTree = "<group>"; };
618C272913947DEB005E47FA /* font_small.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = font_small.png; sourceTree = "<group>"; };
618C272A13947DEB005E47FA /* logo.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = logo.png; sourceTree = "<group>"; };
618C272B13947DEB005E47FA /* theme.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = theme.plist; sourceTree = "<group>"; };
618C272F13947DEB005E47FA /* categories.pbxbtree */ = {isa = PBXFileReference; lastKnownFileType = file; path = categories.pbxbtree; sourceTree = "<group>"; };
618C273013947DEB005E47FA /* cdecls.pbxbtree */ = {isa = PBXFileReference; lastKnownFileType = file; path = cdecls.pbxbtree; sourceTree = "<group>"; };
618C273113947DEB005E47FA /* decls.pbxbtree */ = {isa = PBXFileReference; lastKnownFileType = file; path = decls.pbxbtree; sourceTree = "<group>"; };
618C273213947DEB005E47FA /* files.pbxbtree */ = {isa = PBXFileReference; lastKnownFileType = file; path = files.pbxbtree; sourceTree = "<group>"; };
618C273313947DEB005E47FA /* imports.pbxbtree */ = {isa = PBXFileReference; lastKnownFileType = file; path = imports.pbxbtree; sourceTree = "<group>"; };
618C273413947DEB005E47FA /* pbxindex.header */ = {isa = PBXFileReference; lastKnownFileType = file; path = pbxindex.header; sourceTree = "<group>"; };
618C273513947DEB005E47FA /* protocols.pbxbtree */ = {isa = PBXFileReference; lastKnownFileType = file; path = protocols.pbxbtree; sourceTree = "<group>"; };
618C273613947DEB005E47FA /* refs.pbxbtree */ = {isa = PBXFileReference; lastKnownFileType = file; path = refs.pbxbtree; sourceTree = "<group>"; };
618C273813947DEB005E47FA /* control */ = {isa = PBXFileReference; lastKnownFileType = file; path = control; sourceTree = "<group>"; };
618C273913947DEB005E47FA /* strings */ = {isa = PBXFileReference; lastKnownFileType = file; path = strings; sourceTree = "<group>"; };
618C273A13947DEB005E47FA /* subclasses.pbxbtree */ = {isa = PBXFileReference; lastKnownFileType = file; path = subclasses.pbxbtree; sourceTree = "<group>"; };
618C273B13947DEB005E47FA /* symbols0.pbxsymbols */ = {isa = PBXFileReference; lastKnownFileType = file; path = symbols0.pbxsymbols; sourceTree = "<group>"; };
618C273C13947DEB005E47FA /* Cconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Cconfig; sourceTree = "<group>"; };
618C273D13947DEB005E47FA /* CHANGES */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = CHANGES; sourceTree = "<group>"; };
618C273E13947DEB005E47FA /* coding_standards.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = coding_standards.txt; sourceTree = "<group>"; };
618C273F13947DEB005E47FA /* CREDITS */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = CREDITS; sourceTree = "<group>"; };
618C274213947DEB005E47FA /* Users_Guide0.4.pdf */ = {isa = PBXFileReference; lastKnownFileType = image.pdf; path = Users_Guide0.4.pdf; sourceTree = "<group>"; };
618C274313947DEB005E47FA /* Users_Guide_v0.3.pdf */ = {isa = PBXFileReference; lastKnownFileType = image.pdf; path = Users_Guide_v0.3.pdf; sourceTree = "<group>"; };
618C274413947DEB005E47FA /* UsersGuide-v0.2.pdf */ = {isa = PBXFileReference; lastKnownFileType = image.pdf; path = "UsersGuide-v0.2.pdf"; sourceTree = "<group>"; };
618C274513947DEB005E47FA /* BootHelp.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BootHelp.txt; sourceTree = "<group>"; };
618C274613947DEB005E47FA /* README */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = README; sourceTree = "<group>"; };
618C274713947DEB005E47FA /* themeinfo.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = themeinfo.png; sourceTree = "<group>"; };
618C274913947DEB005E47FA /* Chameleon 2 v0.4.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = "Chameleon 2 v0.4.xml"; sourceTree = "<group>"; };
618C274A13947DEB005E47FA /* Chameleon 2 v0.5.docx */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Chameleon 2 v0.5.docx"; sourceTree = "<group>"; };
618C274B13947DEB005E47FA /* chameleon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = chameleon.png; sourceTree = "<group>"; };
618C274C13947DEB005E47FA /* colorchart.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = colorchart.png; sourceTree = "<group>"; };
618C274D13947DEB005E47FA /* install_complete.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = install_complete.png; sourceTree = "<group>"; };
618C274E13947DEB005E47FA /* install_cust.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = install_cust.png; sourceTree = "<group>"; };
618C274F13947DEB005E47FA /* install_dest.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = install_dest.png; sourceTree = "<group>"; };
618C275013947DEB005E47FA /* install_stand.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = install_stand.png; sourceTree = "<group>"; };
618C275113947DEB005E47FA /* install_start.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = install_start.png; sourceTree = "<group>"; };
618C275213947DEB005E47FA /* screen_format.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = screen_format.png; sourceTree = "<group>"; };
618C275313947DEB005E47FA /* xnulogo.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = xnulogo.png; sourceTree = "<group>"; };
618C275413947DEB005E47FA /* Users_Guide0.5.pdf */ = {isa = PBXFileReference; lastKnownFileType = image.pdf; path = Users_Guide0.5.pdf; sourceTree = "<group>"; };
618C275513947DEB005E47FA /* GPL_V2_LICENSE */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GPL_V2_LICENSE; sourceTree = "<group>"; };
618C275813947DEB005E47FA /* boot0.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = boot0.s; sourceTree = "<group>"; };
618C275913947DEB005E47FA /* Cconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Cconfig; sourceTree = "<group>"; };
618C275A13947DEB005E47FA /* chain0.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = chain0.s; sourceTree = "<group>"; };
618C275B13947DEB005E47FA /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = "<group>"; };
618C275D13947DEB005E47FA /* boot1f32-install.sh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = "boot1f32-install.sh"; sourceTree = "<group>"; };
618C275E13947DEB005E47FA /* boot1f32.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = boot1f32.s; sourceTree = "<group>"; };
618C275F13947DEB005E47FA /* boot1h.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = boot1h.s; sourceTree = "<group>"; };
618C276013947DEB005E47FA /* boot1he.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = boot1he.s; sourceTree = "<group>"; };
618C276113947DEB005E47FA /* boot1hp.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = boot1hp.s; sourceTree = "<group>"; };
618C276213947DEB005E47FA /* Cconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Cconfig; sourceTree = "<group>"; };
618C276313947DEB005E47FA /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = "<group>"; };
618C276513947DEB005E47FA /* appleboot.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = appleboot.h; sourceTree = "<group>"; };
618C276613947DEB005E47FA /* appleClut8.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = appleClut8.h; sourceTree = "<group>"; };
618C276713947DEB005E47FA /* bmdecompress.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = bmdecompress.c; sourceTree = "<group>"; };
618C276813947DEB005E47FA /* boot.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = boot.c; sourceTree = "<group>"; };
618C276913947DEB005E47FA /* boot.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = boot.h; sourceTree = "<group>"; };
618C276A13947DEB005E47FA /* boot2.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = boot2.s; sourceTree = "<group>"; };
618C276B13947DEB005E47FA /* Cconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Cconfig; sourceTree = "<group>"; };
618C276C13947DEB005E47FA /* drivers.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = drivers.c; sourceTree = "<group>"; };
618C276D13947DEB005E47FA /* graphic_utils.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = graphic_utils.c; sourceTree = "<group>"; };
618C276E13947DEB005E47FA /* graphic_utils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = graphic_utils.h; sourceTree = "<group>"; };
618C276F13947DEB005E47FA /* graphics.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = graphics.c; sourceTree = "<group>"; };
618C277013947DEB005E47FA /* graphics.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = graphics.h; sourceTree = "<group>"; };
618C277113947DEB005E47FA /* gui.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = gui.c; sourceTree = "<group>"; };
618C277213947DEB005E47FA /* gui.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gui.h; sourceTree = "<group>"; };
618C277313947DEB005E47FA /* IOHibernatePrivate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOHibernatePrivate.h; sourceTree = "<group>"; };
618C277413947DEB005E47FA /* lzss.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = lzss.c; sourceTree = "<group>"; };
618C277513947DEB005E47FA /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = "<group>"; };
618C277613947DEB005E47FA /* mboot.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mboot.c; sourceTree = "<group>"; };
618C277713947DEB005E47FA /* mboot.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mboot.h; sourceTree = "<group>"; };
618C277813947DEB005E47FA /* modules.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = modules.c; sourceTree = "<group>"; };
618C277913947DEB005E47FA /* modules.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = modules.h; sourceTree = "<group>"; };
618C277A13947DEB005E47FA /* modules_support.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = modules_support.s; sourceTree = "<group>"; };
618C277B13947DEB005E47FA /* multiboot.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = multiboot.h; sourceTree = "<group>"; };
618C277C13947DEB005E47FA /* options.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = options.c; sourceTree = "<group>"; };
618C277D13947DEB005E47FA /* picopng.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = picopng.c; sourceTree = "<group>"; };
618C277E13947DEB005E47FA /* picopng.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = picopng.h; sourceTree = "<group>"; };
618C277F13947DEB005E47FA /* prompt.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = prompt.c; sourceTree = "<group>"; };
618C278013947DEB005E47FA /* ramdisk.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ramdisk.c; sourceTree = "<group>"; };
618C278113947DEB005E47FA /* ramdisk.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ramdisk.h; sourceTree = "<group>"; };
618C278213947DEB005E47FA /* resume.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = resume.c; sourceTree = "<group>"; };
618C278313947DEB005E47FA /* WKdm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WKdm.h; sourceTree = "<group>"; };
618C278413947DEB005E47FA /* WKdmDecompress.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = WKdmDecompress.c; sourceTree = "<group>"; };
618C278513947DEB005E47FA /* Cconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Cconfig; sourceTree = "<group>"; };
618C278713947DEB005E47FA /* cdboot.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = cdboot.s; sourceTree = "<group>"; };
618C278813947DEB005E47FA /* cdboothdd.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = cdboothdd.s; sourceTree = "<group>"; };
618C278913947DEB005E47FA /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = "<group>"; };
618C278B13947DEB005E47FA /* cconfig.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = cconfig.c; sourceTree = "<group>"; };
618C278C13947DEB005E47FA /* checklist.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = checklist.c; sourceTree = "<group>"; };
618C278D13947DEB005E47FA /* confdata.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = confdata.c; sourceTree = "<group>"; };
618C278E13947DEB005E47FA /* dialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dialog.h; sourceTree = "<group>"; };
618C278F13947DEB005E47FA /* expr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = expr.c; sourceTree = "<group>"; };
618C279013947DEB005E47FA /* expr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = expr.h; sourceTree = "<group>"; };
618C279113947DEB005E47FA /* inputbox.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = inputbox.c; sourceTree = "<group>"; };
618C279213947DEB005E47FA /* lex.zconf.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = lex.zconf.c; sourceTree = "<group>"; };
618C279313947DEB005E47FA /* lkc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lkc.h; sourceTree = "<group>"; };
618C279413947DEB005E47FA /* lkc_proto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lkc_proto.h; sourceTree = "<group>"; };
618C279613947DEB005E47FA /* .gitignore */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = .gitignore; sourceTree = "<group>"; };
618C279713947DEB005E47FA /* BIG.FAT.WARNING */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BIG.FAT.WARNING; sourceTree = "<group>"; };
618C279813947DEB005E47FA /* check-lxdialog.sh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = "check-lxdialog.sh"; sourceTree = "<group>"; };
618C279913947DEB005E47FA /* checklist.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = checklist.c; sourceTree = "<group>"; };
618C279A13947DEB005E47FA /* dialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dialog.h; sourceTree = "<group>"; };
618C279B13947DEB005E47FA /* inputbox.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = inputbox.c; sourceTree = "<group>"; };
618C279C13947DEB005E47FA /* menubox.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = menubox.c; sourceTree = "<group>"; };
618C279D13947DEB005E47FA /* textbox.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = textbox.c; sourceTree = "<group>"; };
618C279E13947DEB005E47FA /* util.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = util.c; sourceTree = "<group>"; };
618C279F13947DEB005E47FA /* yesno.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = yesno.c; sourceTree = "<group>"; };
618C27A013947DEB005E47FA /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = "<group>"; };
618C27A113947DEB005E47FA /* menu.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = menu.c; sourceTree = "<group>"; };
618C27A213947DEB005E47FA /* menubox.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = menubox.c; sourceTree = "<group>"; };
618C27A313947DEB005E47FA /* nconf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nconf.h; sourceTree = "<group>"; };
618C27A413947DEB005E47FA /* symbol.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = symbol.c; sourceTree = "<group>"; };
618C27A513947DEB005E47FA /* textbox.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = textbox.c; sourceTree = "<group>"; };
618C27A613947DEB005E47FA /* util.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = util.c; sourceTree = "<group>"; };
618C27A713947DEB005E47FA /* yesno.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = yesno.c; sourceTree = "<group>"; };
618C27A813947DEB005E47FA /* zconf.hash.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = zconf.hash.c; sourceTree = "<group>"; };
618C27A913947DEB005E47FA /* zconf.tab.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = zconf.tab.c; sourceTree = "<group>"; };
618C27AB13947DEB005E47FA /* Limits */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Limits; sourceTree = "<group>"; };
618C27AC13947DEB005E47FA /* README */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = README; sourceTree = "<group>"; };
618C27AE13947DEB005E47FA /* _structs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _structs.h; sourceTree = "<group>"; };
618C27AF13947DEB005E47FA /* _types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _types.h; sourceTree = "<group>"; };
618C27B113947DEB005E47FA /* alignment.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = alignment.h; sourceTree = "<group>"; };
618C27B213947DEB005E47FA /* byte_order.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = byte_order.h; sourceTree = "<group>"; };
618C27B413947DEB005E47FA /* alignment.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = alignment.h; sourceTree = "<group>"; };
618C27B513947DEB005E47FA /* asm_help.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = asm_help.h; sourceTree = "<group>"; };
618C27B613947DEB005E47FA /* byte_order.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = byte_order.h; sourceTree = "<group>"; };
618C27B713947DEB005E47FA /* cpu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cpu.h; sourceTree = "<group>"; };
618C27B813947DEB005E47FA /* desc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = desc.h; sourceTree = "<group>"; };
618C27B913947DEB005E47FA /* fenv.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fenv.h; sourceTree = "<group>"; };
618C27BA13947DEB005E47FA /* fpu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fpu.h; sourceTree = "<group>"; };
618C27BB13947DEB005E47FA /* frame.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = frame.h; sourceTree = "<group>"; };
618C27BC13947DEB005E47FA /* io.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = io.h; sourceTree = "<group>"; };
618C27BD13947DEB005E47FA /* math.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = math.h; sourceTree = "<group>"; };
618C27BE13947DEB005E47FA /* pio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pio.h; sourceTree = "<group>"; };
618C27BF13947DEB005E47FA /* reg_help.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = reg_help.h; sourceTree = "<group>"; };
618C27C013947DEB005E47FA /* sel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sel.h; sourceTree = "<group>"; };
618C27C113947DEB005E47FA /* table.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = table.h; sourceTree = "<group>"; };
618C27C213947DEB005E47FA /* tss.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tss.h; sourceTree = "<group>"; };
618C27C413947DEB005E47FA /* alignment.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = alignment.h; sourceTree = "<group>"; };
618C27C513947DEB005E47FA /* asm_help.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = asm_help.h; sourceTree = "<group>"; };
618C27C613947DEB005E47FA /* basic_regs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = basic_regs.h; sourceTree = "<group>"; };
618C27C713947DEB005E47FA /* byte_order.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = byte_order.h; sourceTree = "<group>"; };
618C27C813947DEB005E47FA /* cframe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cframe.h; sourceTree = "<group>"; };
618C27C913947DEB005E47FA /* fenv.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fenv.h; sourceTree = "<group>"; };
618C27CA13947DEB005E47FA /* fp_regs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fp_regs.h; sourceTree = "<group>"; };
618C27CB13947DEB005E47FA /* macro_help.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = macro_help.h; sourceTree = "<group>"; };
618C27CC13947DEB005E47FA /* math.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = math.h; sourceTree = "<group>"; };
618C27CD13947DEB005E47FA /* mode_independent_asm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mode_independent_asm.h; sourceTree = "<group>"; };
618C27CE13947DEB005E47FA /* pseudo_inst.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pseudo_inst.h; sourceTree = "<group>"; };
618C27CF13947DEB005E47FA /* reg_help.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = reg_help.h; sourceTree = "<group>"; };
618C27D013947DEB005E47FA /* assert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = assert.h; sourceTree = "<group>"; };
618C27D113947DEB005E47FA /* ctype.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ctype.h; sourceTree = "<group>"; };
618C27D313947DEB005E47FA /* device_port.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = device_port.h; sourceTree = "<group>"; };
618C27D413947DEB005E47FA /* device_types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = device_types.h; sourceTree = "<group>"; };
618C27D513947DEB005E47FA /* errno.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = errno.h; sourceTree = "<group>"; };
618C27D613947DEB005E47FA /* float.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = float.h; sourceTree = "<group>"; };
618C27D813947DEB005E47FA /* hfs_encodings.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = hfs_encodings.h; sourceTree = "<group>"; };
618C27D913947DEB005E47FA /* hfs_format.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = hfs_format.h; sourceTree = "<group>"; };
618C27DA13947DEB005E47FA /* hfs_mount.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = hfs_mount.h; sourceTree = "<group>"; };
618C27DC13947DEB005E47FA /* _limits.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _limits.h; sourceTree = "<group>"; };
618C27DD13947DEB005E47FA /* _param.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _param.h; sourceTree = "<group>"; };
618C27DE13947DEB005E47FA /* _structs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _structs.h; sourceTree = "<group>"; };
618C27DF13947DEB005E47FA /* _types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _types.h; sourceTree = "<group>"; };
618C27E013947DEB005E47FA /* eflags.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = eflags.h; sourceTree = "<group>"; };
618C27E113947DEB005E47FA /* endian.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = endian.h; sourceTree = "<group>"; };
618C27E213947DEB005E47FA /* fasttrap_isa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fasttrap_isa.h; sourceTree = "<group>"; };
618C27E313947DEB005E47FA /* limits.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = limits.h; sourceTree = "<group>"; };
618C27E413947DEB005E47FA /* param.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = param.h; sourceTree = "<group>"; };
618C27E513947DEB005E47FA /* profile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = profile.h; sourceTree = "<group>"; };
618C27E613947DEB005E47FA /* setjmp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = setjmp.h; sourceTree = "<group>"; };
618C27E713947DEB005E47FA /* signal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = signal.h; sourceTree = "<group>"; };
618C27E813947DEB005E47FA /* types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = types.h; sourceTree = "<group>"; };
618C27E913947DEB005E47FA /* user_ldt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = user_ldt.h; sourceTree = "<group>"; };
618C27EA13947DEB005E47FA /* vmparam.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vmparam.h; sourceTree = "<group>"; };
618C27EB13947DEB005E47FA /* inttypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = inttypes.h; sourceTree = "<group>"; };
618C27EE13947DEB005E47FA /* IOACPIPlatformDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOACPIPlatformDevice.h; sourceTree = "<group>"; };
618C27EF13947DEB005E47FA /* IOACPIPlatformExpert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOACPIPlatformExpert.h; sourceTree = "<group>"; };
618C27F013947DEB005E47FA /* IOACPITypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOACPITypes.h; sourceTree = "<group>"; };
618C27F113947DEB005E47FA /* assert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = assert.h; sourceTree = "<group>"; };
618C27F313947DEB005E47FA /* ATADeviceNub.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ATADeviceNub.h; sourceTree = "<group>"; };
618C27F413947DEB005E47FA /* ATATimerEventSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ATATimerEventSource.h; sourceTree = "<group>"; };
618C27F513947DEB005E47FA /* IOATABusCommand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOATABusCommand.h; sourceTree = "<group>"; };
618C27F613947DEB005E47FA /* IOATABusInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOATABusInfo.h; sourceTree = "<group>"; };
618C27F713947DEB005E47FA /* IOATACommand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOATACommand.h; sourceTree = "<group>"; };
618C27F813947DEB005E47FA /* IOATAController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOATAController.h; sourceTree = "<group>"; };
618C27F913947DEB005E47FA /* IOATADevConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOATADevConfig.h; sourceTree = "<group>"; };
618C27FA13947DEB005E47FA /* IOATADevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOATADevice.h; sourceTree = "<group>"; };
618C27FB13947DEB005E47FA /* IOATARegI386.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOATARegI386.h; sourceTree = "<group>"; };
618C27FC13947DEB005E47FA /* IOATATypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOATATypes.h; sourceTree = "<group>"; };
618C27FD13947DEB005E47FA /* IOPCIATA.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOPCIATA.h; sourceTree = "<group>"; };
618C27FE13947DEB005E47FA /* MacIOATA.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MacIOATA.h; sourceTree = "<group>"; };
618C280013947DEB005E47FA /* IOAudioControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOAudioControl.h; sourceTree = "<group>"; };
618C280113947DEB005E47FA /* IOAudioControlUserClient.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOAudioControlUserClient.h; sourceTree = "<group>"; };
618C280213947DEB005E47FA /* IOAudioDebug.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOAudioDebug.h; sourceTree = "<group>"; };
618C280313947DEB005E47FA /* IOAudioDefines.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOAudioDefines.h; sourceTree = "<group>"; };
618C280413947DEB005E47FA /* IOAudioDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOAudioDevice.h; sourceTree = "<group>"; };
618C280513947DEB005E47FA /* IOAudioEngine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOAudioEngine.h; sourceTree = "<group>"; };
618C280613947DEB005E47FA /* IOAudioEngineUserClient.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOAudioEngineUserClient.h; sourceTree = "<group>"; };
618C280713947DEB005E47FA /* IOAudioLevelControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOAudioLevelControl.h; sourceTree = "<group>"; };
618C280813947DEB005E47FA /* IOAudioPort.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOAudioPort.h; sourceTree = "<group>"; };
618C280913947DEB005E47FA /* IOAudioSelectorControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOAudioSelectorControl.h; sourceTree = "<group>"; };
618C280A13947DEB005E47FA /* IOAudioStream.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOAudioStream.h; sourceTree = "<group>"; };
618C280B13947DEB005E47FA /* IOAudioToggleControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOAudioToggleControl.h; sourceTree = "<group>"; };
618C280C13947DEB005E47FA /* IOAudioTypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOAudioTypes.h; sourceTree = "<group>"; };
618C280E13947DEB005E47FA /* IOFireWireAVCCommand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireAVCCommand.h; sourceTree = "<group>"; };
618C280F13947DEB005E47FA /* IOFireWireAVCConsts.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireAVCConsts.h; sourceTree = "<group>"; };
618C281013947DEB005E47FA /* IOFireWireAVCRequestSpace.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireAVCRequestSpace.h; sourceTree = "<group>"; };
618C281113947DEB005E47FA /* IOFireWireAVCTargetSpace.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireAVCTargetSpace.h; sourceTree = "<group>"; };
618C281213947DEB005E47FA /* IOFireWireAVCUnit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireAVCUnit.h; sourceTree = "<group>"; };
618C281313947DEB005E47FA /* IOFireWireAVCUserClientCommon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireAVCUserClientCommon.h; sourceTree = "<group>"; };
618C281413947DEB005E47FA /* IOFireWirePCRSpace.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWirePCRSpace.h; sourceTree = "<group>"; };
618C281613947DEB005E47FA /* Bluetooth.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Bluetooth.h; sourceTree = "<group>"; };
618C281713947DEB005E47FA /* BluetoothAssignedNumbers.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BluetoothAssignedNumbers.h; sourceTree = "<group>"; };
618C281813947DEB005E47FA /* IOBluetoothHCIController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOBluetoothHCIController.h; sourceTree = "<group>"; };
618C281913947DEB005E47FA /* IOBluetoothHCIRequest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOBluetoothHCIRequest.h; sourceTree = "<group>"; };
618C281A13947DEB005E47FA /* IOBluetoothHIDDriver.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOBluetoothHIDDriver.h; sourceTree = "<group>"; };
618C281B13947DEB005E47FA /* IOBluetoothHIDDriverTypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOBluetoothHIDDriverTypes.h; sourceTree = "<group>"; };
618C281C13947DEB005E47FA /* IOBluetoothInternal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOBluetoothInternal.h; sourceTree = "<group>"; };
618C281D13947DEB005E47FA /* IOBluetoothTypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOBluetoothTypes.h; sourceTree = "<group>"; };
618C281F13947DEB005E47FA /* IOConfigDirectory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOConfigDirectory.h; sourceTree = "<group>"; };
618C282013947DEB005E47FA /* IOFireWireBus.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireBus.h; sourceTree = "<group>"; };
618C282113947DEB005E47FA /* IOFireWireController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireController.h; sourceTree = "<group>"; };
618C282213947DEB005E47FA /* IOFireWireDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireDevice.h; sourceTree = "<group>"; };
618C282313947DEB005E47FA /* IOFireWireFamilyCommon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireFamilyCommon.h; sourceTree = "<group>"; };
618C282413947DEB005E47FA /* IOFireWireIRMAllocation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireIRMAllocation.h; sourceTree = "<group>"; };
618C282513947DEB005E47FA /* IOFireWireLocalNode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireLocalNode.h; sourceTree = "<group>"; };
618C282613947DEB005E47FA /* IOFireWireMultiIsochReceive.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireMultiIsochReceive.h; sourceTree = "<group>"; };
618C282713947DEB005E47FA /* IOFireWireNub.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireNub.h; sourceTree = "<group>"; };
618C282813947DEB005E47FA /* IOFireWirePowerManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWirePowerManager.h; sourceTree = "<group>"; };
618C282913947DEB005E47FA /* IOFireWireUnit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireUnit.h; sourceTree = "<group>"; };
618C282A13947DEB005E47FA /* IOFWAddressSpace.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFWAddressSpace.h; sourceTree = "<group>"; };
618C282B13947DEB005E47FA /* IOFWAsyncStreamListener.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFWAsyncStreamListener.h; sourceTree = "<group>"; };
618C282C13947DEB005E47FA /* IOFWCommand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFWCommand.h; sourceTree = "<group>"; };
618C282D13947DEB005E47FA /* IOFWDCL.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFWDCL.h; sourceTree = "<group>"; };
618C282E13947DEB005E47FA /* IOFWDCLPool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFWDCLPool.h; sourceTree = "<group>"; };
618C282F13947DEB005E47FA /* IOFWDCLProgram.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFWDCLProgram.h; sourceTree = "<group>"; };
618C283013947DEB005E47FA /* IOFWDCLTranslator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFWDCLTranslator.h; sourceTree = "<group>"; };
618C283113947DEB005E47FA /* IOFWIsochChannel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFWIsochChannel.h; sourceTree = "<group>"; };
618C283213947DEB005E47FA /* IOFWIsochPort.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFWIsochPort.h; sourceTree = "<group>"; };
618C283313947DEB005E47FA /* IOFWLocalIsochPort.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFWLocalIsochPort.h; sourceTree = "<group>"; };
618C283413947DEB005E47FA /* IOFWPHYPacketListener.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFWPHYPacketListener.h; sourceTree = "<group>"; };
618C283513947DEB005E47FA /* IOFWPhysicalAddressSpace.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFWPhysicalAddressSpace.h; sourceTree = "<group>"; };
618C283613947DEB005E47FA /* IOFWPseudoAddressSpace.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFWPseudoAddressSpace.h; sourceTree = "<group>"; };
618C283713947DEB005E47FA /* IOFWRegs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFWRegs.h; sourceTree = "<group>"; };
618C283813947DEB005E47FA /* IOFWSimpleContiguousPhysicalAddressSpace.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFWSimpleContiguousPhysicalAddressSpace.h; sourceTree = "<group>"; };
618C283913947DEB005E47FA /* IOFWSimplePhysicalAddressSpace.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFWSimplePhysicalAddressSpace.h; sourceTree = "<group>"; };
618C283A13947DEB005E47FA /* IOFWSyncer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFWSyncer.h; sourceTree = "<group>"; };
618C283B13947DEB005E47FA /* IOFWUserObjectExporter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFWUserObjectExporter.h; sourceTree = "<group>"; };
618C283C13947DEB005E47FA /* IOFWUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFWUtils.h; sourceTree = "<group>"; };
618C283D13947DEB005E47FA /* IOLocalConfigDirectory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOLocalConfigDirectory.h; sourceTree = "<group>"; };
618C283E13947DEB005E47FA /* IORemoteConfigDirectory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IORemoteConfigDirectory.h; sourceTree = "<group>"; };
618C284013947DEB005E47FA /* IOAccelClientConnect.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOAccelClientConnect.h; sourceTree = "<group>"; };
618C284113947DEB005E47FA /* IOAccelerator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOAccelerator.h; sourceTree = "<group>"; };
618C284213947DEB005E47FA /* IOAccelSurfaceConnect.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOAccelSurfaceConnect.h; sourceTree = "<group>"; };
618C284313947DEB005E47FA /* IOAccelTypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOAccelTypes.h; sourceTree = "<group>"; };
618C284413947DEB005E47FA /* IODisplay.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IODisplay.h; sourceTree = "<group>"; };
618C284513947DEB005E47FA /* IOFramebuffer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFramebuffer.h; sourceTree = "<group>"; };
618C284613947DEB005E47FA /* IOFramebufferShared.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFramebufferShared.h; sourceTree = "<group>"; };
618C284713947DEB005E47FA /* IOGraphicsDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOGraphicsDevice.h; sourceTree = "<group>"; };
618C284813947DEB005E47FA /* IOGraphicsEngine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOGraphicsEngine.h; sourceTree = "<group>"; };
618C284913947DEB005E47FA /* IOGraphicsInterfaceTypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOGraphicsInterfaceTypes.h; sourceTree = "<group>"; };
618C284A13947DEB005E47FA /* IOGraphicsTypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOGraphicsTypes.h; sourceTree = "<group>"; };
618C284C13947DEB005E47FA /* IOHIDDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOHIDDevice.h; sourceTree = "<group>"; };
618C284D13947DEB005E47FA /* IOHIDElement.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOHIDElement.h; sourceTree = "<group>"; };
618C284E13947DEB005E47FA /* IOHIDInterface.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOHIDInterface.h; sourceTree = "<group>"; };
618C284F13947DEB005E47FA /* IOHIDKeys.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOHIDKeys.h; sourceTree = "<group>"; };
618C285013947DEB005E47FA /* IOHIDUsageTables.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOHIDUsageTables.h; sourceTree = "<group>"; };
618C285213947DEB005E47FA /* IOHIDEventDriver.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOHIDEventDriver.h; sourceTree = "<group>"; };
618C285313947DEB005E47FA /* IOHIDEventService.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOHIDEventService.h; sourceTree = "<group>"; };
618C285513947DEB005E47FA /* ev_keymap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ev_keymap.h; sourceTree = "<group>"; };
618C285613947DEB005E47FA /* IOHIDDescriptorParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOHIDDescriptorParser.h; sourceTree = "<group>"; };
618C285713947DEB005E47FA /* IOHIDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOHIDevice.h; sourceTree = "<group>"; };
618C285813947DEB005E47FA /* IOHIDParameter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOHIDParameter.h; sourceTree = "<group>"; };
618C285913947DEB005E47FA /* IOHIDShared.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOHIDShared.h; sourceTree = "<group>"; };
618C285A13947DEB005E47FA /* IOHIDSystem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOHIDSystem.h; sourceTree = "<group>"; };
618C285B13947DEB005E47FA /* IOHIDTypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOHIDTypes.h; sourceTree = "<group>"; };
618C285C13947DEB005E47FA /* IOHIDUsageTables.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOHIDUsageTables.h; sourceTree = "<group>"; };
618C285D13947DEB005E47FA /* IOHIKeyboard.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOHIKeyboard.h; sourceTree = "<group>"; };
618C285E13947DEB005E47FA /* IOHIKeyboardMapper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOHIKeyboardMapper.h; sourceTree = "<group>"; };
618C285F13947DEB005E47FA /* IOHIPointing.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOHIPointing.h; sourceTree = "<group>"; };
618C286013947DEB005E47FA /* IOLLEvent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOLLEvent.h; sourceTree = "<group>"; };
618C286213947DEB005E47FA /* IOI2CInterface.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOI2CInterface.h; sourceTree = "<group>"; };
618C286313947DEB005E47FA /* IOBSD.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOBSD.h; sourceTree = "<group>"; };
618C286413947DEB005E47FA /* IOBufferMemoryDescriptor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOBufferMemoryDescriptor.h; sourceTree = "<group>"; };
618C286513947DEB005E47FA /* IOCatalogue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOCatalogue.h; sourceTree = "<group>"; };
618C286613947DEB005E47FA /* IOCommand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOCommand.h; sourceTree = "<group>"; };
618C286713947DEB005E47FA /* IOCommandGate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOCommandGate.h; sourceTree = "<group>"; };
618C286813947DEB005E47FA /* IOCommandPool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOCommandPool.h; sourceTree = "<group>"; };
618C286913947DEB005E47FA /* IOConditionLock.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOConditionLock.h; sourceTree = "<group>"; };
618C286A13947DEB005E47FA /* IODataQueue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IODataQueue.h; sourceTree = "<group>"; };
618C286B13947DEB005E47FA /* IODataQueueShared.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IODataQueueShared.h; sourceTree = "<group>"; };
618C286C13947DEB005E47FA /* IODeviceMemory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IODeviceMemory.h; sourceTree = "<group>"; };
618C286D13947DEB005E47FA /* IODeviceTreeSupport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IODeviceTreeSupport.h; sourceTree = "<group>"; };
618C286E13947DEB005E47FA /* IODMACommand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IODMACommand.h; sourceTree = "<group>"; };
618C286F13947DEB005E47FA /* IODMAController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IODMAController.h; sourceTree = "<group>"; };
618C287013947DEB005E47FA /* IODMAEventSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IODMAEventSource.h; sourceTree = "<group>"; };
618C287113947DEB005E47FA /* IOEventSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOEventSource.h; sourceTree = "<group>"; };
618C287213947DEB005E47FA /* IOFilterInterruptEventSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFilterInterruptEventSource.h; sourceTree = "<group>"; };
618C287313947DEB005E47FA /* IOInterleavedMemoryDescriptor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOInterleavedMemoryDescriptor.h; sourceTree = "<group>"; };
618C287413947DEB005E47FA /* IOInterruptController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOInterruptController.h; sourceTree = "<group>"; };
618C287513947DEB005E47FA /* IOInterruptEventSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOInterruptEventSource.h; sourceTree = "<group>"; };
618C287613947DEB005E47FA /* IOInterrupts.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOInterrupts.h; sourceTree = "<group>"; };
618C287713947DEB005E47FA /* IOKitDebug.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOKitDebug.h; sourceTree = "<group>"; };
618C287813947DEB005E47FA /* IOKitKeys.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOKitKeys.h; sourceTree = "<group>"; };
618C287913947DEB005E47FA /* IOKitServer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOKitServer.h; sourceTree = "<group>"; };
618C287A13947DEB005E47FA /* IOLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOLib.h; sourceTree = "<group>"; };
618C287B13947DEB005E47FA /* IOLocks.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOLocks.h; sourceTree = "<group>"; };
618C287C13947DEB005E47FA /* IOMapper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOMapper.h; sourceTree = "<group>"; };
618C287D13947DEB005E47FA /* IOMemoryCursor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOMemoryCursor.h; sourceTree = "<group>"; };
618C287E13947DEB005E47FA /* IOMemoryDescriptor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOMemoryDescriptor.h; sourceTree = "<group>"; };
618C287F13947DEB005E47FA /* IOMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOMessage.h; sourceTree = "<group>"; };
618C288013947DEB005E47FA /* IOMultiMemoryDescriptor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOMultiMemoryDescriptor.h; sourceTree = "<group>"; };
618C288113947DEB005E47FA /* IONotifier.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IONotifier.h; sourceTree = "<group>"; };
618C288213947DEB005E47FA /* IONVRAM.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IONVRAM.h; sourceTree = "<group>"; };
618C288313947DEB005E47FA /* IOPlatformExpert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOPlatformExpert.h; sourceTree = "<group>"; };
618C288413947DEB005E47FA /* IORangeAllocator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IORangeAllocator.h; sourceTree = "<group>"; };
618C288513947DEB005E47FA /* IORegistryEntry.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IORegistryEntry.h; sourceTree = "<group>"; };
618C288613947DEB005E47FA /* IOReturn.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOReturn.h; sourceTree = "<group>"; };
618C288713947DEB005E47FA /* IOService.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOService.h; sourceTree = "<group>"; };
618C288813947DEB005E47FA /* IOServicePM.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOServicePM.h; sourceTree = "<group>"; };
618C288913947DEB005E47FA /* IOSharedDataQueue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOSharedDataQueue.h; sourceTree = "<group>"; };
618C288A13947DEB005E47FA /* IOSharedLock.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOSharedLock.h; sourceTree = "<group>"; };
618C288B13947DEB005E47FA /* IOSubMemoryDescriptor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOSubMemoryDescriptor.h; sourceTree = "<group>"; };
618C288C13947DEB005E47FA /* IOSyncer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOSyncer.h; sourceTree = "<group>"; };
618C288D13947DEB005E47FA /* IOTimerEventSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOTimerEventSource.h; sourceTree = "<group>"; };
618C288E13947DEB005E47FA /* IOTimeStamp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOTimeStamp.h; sourceTree = "<group>"; };
618C288F13947DEB005E47FA /* IOTypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOTypes.h; sourceTree = "<group>"; };
618C289013947DEB005E47FA /* IOUserClient.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOUserClient.h; sourceTree = "<group>"; };
618C289113947DEB005E47FA /* IOWorkLoop.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOWorkLoop.h; sourceTree = "<group>"; };
618C289313947DEB005E47FA /* IOMacOSTypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOMacOSTypes.h; sourceTree = "<group>"; };
618C289413947DEB005E47FA /* IOMacOSVideo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOMacOSVideo.h; sourceTree = "<group>"; };
618C289513947DEB005E47FA /* IONDRVFramebuffer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IONDRVFramebuffer.h; sourceTree = "<group>"; };
618C289613947DEB005E47FA /* IONDRVLibraries.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IONDRVLibraries.h; sourceTree = "<group>"; };
618C289713947DEB005E47FA /* IONDRVSupport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IONDRVSupport.h; sourceTree = "<group>"; };
618C289913947DEB005E47FA /* IOBasicOutputQueue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOBasicOutputQueue.h; sourceTree = "<group>"; };
618C289A13947DEB005E47FA /* IOEthernetController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOEthernetController.h; sourceTree = "<group>"; };
618C289B13947DEB005E47FA /* IOEthernetInterface.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOEthernetInterface.h; sourceTree = "<group>"; };
618C289C13947DEB005E47FA /* IOEthernetStats.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOEthernetStats.h; sourceTree = "<group>"; };
618C289D13947DEB005E47FA /* IOGatedOutputQueue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOGatedOutputQueue.h; sourceTree = "<group>"; };
618C289E13947DEB005E47FA /* IOKernelDebugger.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOKernelDebugger.h; sourceTree = "<group>"; };
618C289F13947DEB005E47FA /* IOMbufMemoryCursor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOMbufMemoryCursor.h; sourceTree = "<group>"; };
618C28A013947DEB005E47FA /* IONetworkController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IONetworkController.h; sourceTree = "<group>"; };
618C28A113947DEB005E47FA /* IONetworkData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IONetworkData.h; sourceTree = "<group>"; };
618C28A213947DEB005E47FA /* IONetworkInterface.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IONetworkInterface.h; sourceTree = "<group>"; };
618C28A313947DEB005E47FA /* IONetworkMedium.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IONetworkMedium.h; sourceTree = "<group>"; };
618C28A413947DEB005E47FA /* IONetworkStats.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IONetworkStats.h; sourceTree = "<group>"; };
618C28A513947DEB005E47FA /* IOOutputQueue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOOutputQueue.h; sourceTree = "<group>"; };
618C28A613947DEB005E47FA /* IOPacketQueue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOPacketQueue.h; sourceTree = "<group>"; };
618C28A813947DEB005E47FA /* IONVRAMController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IONVRAMController.h; sourceTree = "<group>"; };
618C28A913947DEB005E47FA /* OSMessageNotification.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OSMessageNotification.h; sourceTree = "<group>"; };
618C28AB13947DEB005E47FA /* IOAGPDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOAGPDevice.h; sourceTree = "<group>"; };
618C28AC13947DEB005E47FA /* IOPCIBridge.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOPCIBridge.h; sourceTree = "<group>"; };
618C28AD13947DEB005E47FA /* IOPCIDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOPCIDevice.h; sourceTree = "<group>"; };
618C28AF13947DEB005E47FA /* AppleMacIO.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppleMacIO.h; sourceTree = "<group>"; };
618C28B013947DEB005E47FA /* AppleMacIODevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppleMacIODevice.h; sourceTree = "<group>"; };
618C28B113947DEB005E47FA /* AppleNMI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppleNMI.h; sourceTree = "<group>"; };
618C28B213947DEB005E47FA /* ApplePlatformExpert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ApplePlatformExpert.h; sourceTree = "<group>"; };
618C28B413947DEB005E47FA /* IOPwrController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOPwrController.h; sourceTree = "<group>"; };
618C28B613947DEB005E47FA /* IODBDMA.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IODBDMA.h; sourceTree = "<group>"; };
618C28B813947DEB005E47FA /* IOPM.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOPM.h; sourceTree = "<group>"; };
618C28B913947DEB005E47FA /* IOPMDeprecated.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOPMDeprecated.h; sourceTree = "<group>"; };
618C28BA13947DEB005E47FA /* IOPMLibDefs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOPMLibDefs.h; sourceTree = "<group>"; };
618C28BB13947DEB005E47FA /* IOPMPowerSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOPMPowerSource.h; sourceTree = "<group>"; };
618C28BC13947DEB005E47FA /* IOPMPowerSourceList.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOPMPowerSourceList.h; sourceTree = "<group>"; };
618C28BD13947DEB005E47FA /* IOPMpowerState.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOPMpowerState.h; sourceTree = "<group>"; };
618C28BE13947DEB005E47FA /* IOPMPrivate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOPMPrivate.h; sourceTree = "<group>"; };
618C28BF13947DEB005E47FA /* IOPowerConnection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOPowerConnection.h; sourceTree = "<group>"; };
618C28C013947DEB005E47FA /* RootDomain.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RootDomain.h; sourceTree = "<group>"; };
618C28C213947DEB005E47FA /* IORTCController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IORTCController.h; sourceTree = "<group>"; };
618C28C413947DEB005E47FA /* IOFireWireSBP2Login.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireSBP2Login.h; sourceTree = "<group>"; };
618C28C513947DEB005E47FA /* IOFireWireSBP2LSIWorkaroundDescriptor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireSBP2LSIWorkaroundDescriptor.h; sourceTree = "<group>"; };
618C28C613947DEB005E47FA /* IOFireWireSBP2LUN.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireSBP2LUN.h; sourceTree = "<group>"; };
618C28C713947DEB005E47FA /* IOFireWireSBP2ManagementORB.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireSBP2ManagementORB.h; sourceTree = "<group>"; };
618C28C813947DEB005E47FA /* IOFireWireSBP2ORB.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireSBP2ORB.h; sourceTree = "<group>"; };
618C28C913947DEB005E47FA /* IOFireWireSBP2Target.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireSBP2Target.h; sourceTree = "<group>"; };
618C28CA13947DEB005E47FA /* IOFireWireSBP2UserClient.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireSBP2UserClient.h; sourceTree = "<group>"; };
618C28CB13947DEB005E47FA /* IOFireWireSBP2UserClientCommon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireSBP2UserClientCommon.h; sourceTree = "<group>"; };
618C28CC13947DEB005E47FA /* IOFireWireSerialBusProtocolTransport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireSerialBusProtocolTransport.h; sourceTree = "<group>"; };
618C28CE13947DEB005E47FA /* IOBDServices.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOBDServices.h; sourceTree = "<group>"; };
618C28CF13947DEB005E47FA /* IOBlockStorageServices.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOBlockStorageServices.h; sourceTree = "<group>"; };
618C28D013947DEB005E47FA /* IOCompactDiscServices.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOCompactDiscServices.h; sourceTree = "<group>"; };
618C28D113947DEB005E47FA /* IODVDServices.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IODVDServices.h; sourceTree = "<group>"; };
618C28D213947DEB005E47FA /* IOReducedBlockServices.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOReducedBlockServices.h; sourceTree = "<group>"; };
618C28D313947DEB005E47FA /* IOSCSIBlockCommandsDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOSCSIBlockCommandsDevice.h; sourceTree = "<group>"; };
618C28D413947DEB005E47FA /* IOSCSIMultimediaCommandsDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOSCSIMultimediaCommandsDevice.h; sourceTree = "<group>"; };
618C28D513947DEB005E47FA /* IOSCSIPeripheralDeviceNub.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOSCSIPeripheralDeviceNub.h; sourceTree = "<group>"; };
618C28D613947DEB005E47FA /* IOSCSIPeripheralDeviceType00.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOSCSIPeripheralDeviceType00.h; sourceTree = "<group>"; };
618C28D713947DEB005E47FA /* IOSCSIPeripheralDeviceType05.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOSCSIPeripheralDeviceType05.h; sourceTree = "<group>"; };
618C28D813947DEB005E47FA /* IOSCSIPeripheralDeviceType07.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOSCSIPeripheralDeviceType07.h; sourceTree = "<group>"; };
618C28D913947DEB005E47FA /* IOSCSIPeripheralDeviceType0E.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOSCSIPeripheralDeviceType0E.h; sourceTree = "<group>"; };
618C28DA13947DEB005E47FA /* IOSCSIPrimaryCommandsDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOSCSIPrimaryCommandsDevice.h; sourceTree = "<group>"; };
618C28DB13947DEB005E47FA /* IOSCSIProtocolInterface.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOSCSIProtocolInterface.h; sourceTree = "<group>"; };
618C28DC13947DEB005E47FA /* IOSCSIProtocolServices.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOSCSIProtocolServices.h; sourceTree = "<group>"; };
618C28DD13947DEB005E47FA /* IOSCSIReducedBlockCommandsDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOSCSIReducedBlockCommandsDevice.h; sourceTree = "<group>"; };
618C28DE13947DEB005E47FA /* SCSICmds_INQUIRY_Definitions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SCSICmds_INQUIRY_Definitions.h; sourceTree = "<group>"; };
618C28DF13947DEB005E47FA /* SCSICmds_MODE_Definitions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SCSICmds_MODE_Definitions.h; sourceTree = "<group>"; };
618C28E013947DEB005E47FA /* SCSICmds_READ_CAPACITY_Definitions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SCSICmds_READ_CAPACITY_Definitions.h; sourceTree = "<group>"; };
618C28E113947DEB005E47FA /* SCSICmds_REPORT_LUNS_Definitions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SCSICmds_REPORT_LUNS_Definitions.h; sourceTree = "<group>"; };
618C28E213947DEB005E47FA /* SCSICmds_REQUEST_SENSE_Defs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SCSICmds_REQUEST_SENSE_Defs.h; sourceTree = "<group>"; };
618C28E313947DEB005E47FA /* SCSICommandDefinitions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SCSICommandDefinitions.h; sourceTree = "<group>"; };
618C28E413947DEB005E47FA /* SCSICommandOperationCodes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SCSICommandOperationCodes.h; sourceTree = "<group>"; };
618C28E513947DEB005E47FA /* SCSIPort.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SCSIPort.h; sourceTree = "<group>"; };
618C28E613947DEB005E47FA /* SCSITask.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SCSITask.h; sourceTree = "<group>"; };
618C28E813947DEB005E47FA /* IOSCSIParallelInterfaceController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOSCSIParallelInterfaceController.h; sourceTree = "<group>"; };
618C28EA13947DEB005E47FA /* IOModemSerialStreamSync.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOModemSerialStreamSync.h; sourceTree = "<group>"; };
618C28EB13947DEB005E47FA /* IORS232SerialStreamSync.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IORS232SerialStreamSync.h; sourceTree = "<group>"; };
618C28EC13947DEB005E47FA /* IOSerialDriverSync.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOSerialDriverSync.h; sourceTree = "<group>"; };
618C28ED13947DEB005E47FA /* IOSerialKeys.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOSerialKeys.h; sourceTree = "<group>"; };
618C28EE13947DEB005E47FA /* IOSerialStreamSync.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOSerialStreamSync.h; sourceTree = "<group>"; };
618C28F113947DEB005E47FA /* IOATAPIProtocolTransport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOATAPIProtocolTransport.h; sourceTree = "<group>"; };
618C28F213947DEB005E47FA /* IOATAStorageDefines.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOATAStorageDefines.h; sourceTree = "<group>"; };
618C28F313947DEB005E47FA /* IOAppleLabelScheme.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOAppleLabelScheme.h; sourceTree = "<group>"; };
618C28F413947DEB005E47FA /* IOApplePartitionScheme.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOApplePartitionScheme.h; sourceTree = "<group>"; };
618C28F513947DEB005E47FA /* IOBDBlockStorageDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOBDBlockStorageDevice.h; sourceTree = "<group>"; };
618C28F613947DEB005E47FA /* IOBDBlockStorageDriver.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOBDBlockStorageDriver.h; sourceTree = "<group>"; };
618C28F713947DEB005E47FA /* IOBDMedia.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOBDMedia.h; sourceTree = "<group>"; };
618C28F813947DEB005E47FA /* IOBDMediaBSDClient.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOBDMediaBSDClient.h; sourceTree = "<group>"; };
618C28F913947DEB005E47FA /* IOBDTypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOBDTypes.h; sourceTree = "<group>"; };
618C28FA13947DEB005E47FA /* IOBlockStorageDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOBlockStorageDevice.h; sourceTree = "<group>"; };
618C28FB13947DEB005E47FA /* IOBlockStorageDriver.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOBlockStorageDriver.h; sourceTree = "<group>"; };
618C28FC13947DEB005E47FA /* IOCDBlockStorageDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOCDBlockStorageDevice.h; sourceTree = "<group>"; };
618C28FD13947DEB005E47FA /* IOCDBlockStorageDriver.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOCDBlockStorageDriver.h; sourceTree = "<group>"; };
618C28FE13947DEB005E47FA /* IOCDMedia.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOCDMedia.h; sourceTree = "<group>"; };
618C28FF13947DEB005E47FA /* IOCDMediaBSDClient.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOCDMediaBSDClient.h; sourceTree = "<group>"; };
618C290013947DEB005E47FA /* IOCDPartitionScheme.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOCDPartitionScheme.h; sourceTree = "<group>"; };
618C290113947DEB005E47FA /* IOCDTypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOCDTypes.h; sourceTree = "<group>"; };
618C290213947DEB005E47FA /* IODVDBlockStorageDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IODVDBlockStorageDevice.h; sourceTree = "<group>"; };
618C290313947DEB005E47FA /* IODVDBlockStorageDriver.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IODVDBlockStorageDriver.h; sourceTree = "<group>"; };
618C290413947DEB005E47FA /* IODVDMedia.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IODVDMedia.h; sourceTree = "<group>"; };
618C290513947DEB005E47FA /* IODVDMediaBSDClient.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IODVDMediaBSDClient.h; sourceTree = "<group>"; };
618C290613947DEB005E47FA /* IODVDTypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IODVDTypes.h; sourceTree = "<group>"; };
618C290713947DEB005E47FA /* IOFDiskPartitionScheme.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFDiskPartitionScheme.h; sourceTree = "<group>"; };
618C290813947DEB005E47FA /* IOFilterScheme.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFilterScheme.h; sourceTree = "<group>"; };
618C290913947DEB005E47FA /* IOFireWireStorageCharacteristics.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireStorageCharacteristics.h; sourceTree = "<group>"; };
618C290A13947DEB005E47FA /* IOGUIDPartitionScheme.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOGUIDPartitionScheme.h; sourceTree = "<group>"; };
618C290B13947DEB005E47FA /* IOMedia.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOMedia.h; sourceTree = "<group>"; };
618C290C13947DEB005E47FA /* IOMediaBSDClient.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOMediaBSDClient.h; sourceTree = "<group>"; };
618C290D13947DEB005E47FA /* IOPartitionScheme.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOPartitionScheme.h; sourceTree = "<group>"; };
618C290E13947DEB005E47FA /* IOStorage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOStorage.h; sourceTree = "<group>"; };
618C290F13947DEB005E47FA /* IOStorageDeviceCharacteristics.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOStorageDeviceCharacteristics.h; sourceTree = "<group>"; };
618C291013947DEB005E47FA /* IOStorageProtocolCharacteristics.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOStorageProtocolCharacteristics.h; sourceTree = "<group>"; };
618C291213947DEB005E47FA /* IOStream.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOStream.h; sourceTree = "<group>"; };
618C291313947DEB005E47FA /* IOStreamFamily.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOStreamFamily.h; sourceTree = "<group>"; };
618C291413947DEB005E47FA /* IOStreamShared.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOStreamShared.h; sourceTree = "<group>"; };
618C291513947DEB005E47FA /* IOStreamUserClient.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOStreamUserClient.h; sourceTree = "<group>"; };
618C291613947DEB005E47FA /* system.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = system.h; sourceTree = "<group>"; };
618C291813947DEB005E47FA /* IOWatchDogTimer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOWatchDogTimer.h; sourceTree = "<group>"; };
618C291A13947DEB005E47FA /* IOUFIStorageServices.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOUFIStorageServices.h; sourceTree = "<group>"; };
618C291B13947DEB005E47FA /* IOUSBBus.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOUSBBus.h; sourceTree = "<group>"; };
618C291C13947DEB005E47FA /* IOUSBCommand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOUSBCommand.h; sourceTree = "<group>"; };
618C291D13947DEB005E47FA /* IOUSBCompositeDriver.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOUSBCompositeDriver.h; sourceTree = "<group>"; };
618C291E13947DEB005E47FA /* IOUSBController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOUSBController.h; sourceTree = "<group>"; };
618C291F13947DEB005E47FA /* IOUSBControllerListElement.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOUSBControllerListElement.h; sourceTree = "<group>"; };
618C292013947DEB005E47FA /* IOUSBControllerV2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOUSBControllerV2.h; sourceTree = "<group>"; };
618C292113947DEB005E47FA /* IOUSBControllerV3.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOUSBControllerV3.h; sourceTree = "<group>"; };
618C292213947DEB005E47FA /* IOUSBDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOUSBDevice.h; sourceTree = "<group>"; };
618C292313947DEB005E47FA /* IOUSBHIDDriver.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOUSBHIDDriver.h; sourceTree = "<group>"; };
618C292413947DEB005E47FA /* IOUSBHubDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOUSBHubDevice.h; sourceTree = "<group>"; };
618C292513947DEB005E47FA /* IOUSBHubPolicyMaker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOUSBHubPolicyMaker.h; sourceTree = "<group>"; };
618C292613947DEB005E47FA /* IOUSBInterface.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOUSBInterface.h; sourceTree = "<group>"; };
618C292713947DEB005E47FA /* IOUSBLog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOUSBLog.h; sourceTree = "<group>"; };
618C292813947DEB005E47FA /* IOUSBMassStorageClass.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOUSBMassStorageClass.h; sourceTree = "<group>"; };
618C292913947DEB005E47FA /* IOUSBMassStorageUFISubclass.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOUSBMassStorageUFISubclass.h; sourceTree = "<group>"; };
618C292A13947DEB005E47FA /* IOUSBNub.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOUSBNub.h; sourceTree = "<group>"; };
618C292B13947DEB005E47FA /* IOUSBPipe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOUSBPipe.h; sourceTree = "<group>"; };
618C292C13947DEB005E47FA /* IOUSBRootHubDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOUSBRootHubDevice.h; sourceTree = "<group>"; };
618C292D13947DEB005E47FA /* IOUSBUserClient.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOUSBUserClient.h; sourceTree = "<group>"; };
618C292E13947DEB005E47FA /* IOUSBWorkLoop.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOUSBWorkLoop.h; sourceTree = "<group>"; };
618C292F13947DEB005E47FA /* USB.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = USB.h; sourceTree = "<group>"; };
618C293013947DEB005E47FA /* USBHub.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = USBHub.h; sourceTree = "<group>"; };
618C293113947DEB005E47FA /* USBSpec.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = USBSpec.h; sourceTree = "<group>"; };
618C293213947DEB005E47FA /* USBTracepoints.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = USBTracepoints.h; sourceTree = "<group>"; };
618C293413947DEB005E47FA /* _OSByteOrder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _OSByteOrder.h; sourceTree = "<group>"; };
618C293613947DEB005E47FA /* md5.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = md5.h; sourceTree = "<group>"; };
618C293713947DEB005E47FA /* sha1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sha1.h; sourceTree = "<group>"; };
618C293913947DEB005E47FA /* _OSByteOrder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _OSByteOrder.h; sourceTree = "<group>"; };
618C293A13947DEB005E47FA /* OSByteOrder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OSByteOrder.h; sourceTree = "<group>"; };
618C293C13947DEB005E47FA /* OSByteOrder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OSByteOrder.h; sourceTree = "<group>"; };
618C293D13947DEB005E47FA /* OSAtomic.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OSAtomic.h; sourceTree = "<group>"; };
618C293E13947DEB005E47FA /* OSByteOrder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OSByteOrder.h; sourceTree = "<group>"; };
618C293F13947DEB005E47FA /* OSCacheControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OSCacheControl.h; sourceTree = "<group>"; };
618C294013947DEB005E47FA /* OSDebug.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OSDebug.h; sourceTree = "<group>"; };
618C294113947DEB005E47FA /* OSKextLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OSKextLib.h; sourceTree = "<group>"; };
618C294213947DEB005E47FA /* OSReturn.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OSReturn.h; sourceTree = "<group>"; };
618C294313947DEB005E47FA /* OSTypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OSTypes.h; sourceTree = "<group>"; };
618C294513947DEB005E47FA /* OSByteOrder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OSByteOrder.h; sourceTree = "<group>"; };
618C294613947DEB005E47FA /* limits.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = limits.h; sourceTree = "<group>"; };
618C294713947DEB005E47FA /* locale.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = locale.h; sourceTree = "<group>"; };
618C294913947DEB005E47FA /* audit_triggers.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = audit_triggers.defs; sourceTree = "<group>"; };
618C294A13947DEB005E47FA /* boolean.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = boolean.h; sourceTree = "<group>"; };
618C294B13947DEB005E47FA /* bootstrap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = bootstrap.h; sourceTree = "<group>"; };
618C294C13947DEB005E47FA /* clock.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = clock.defs; sourceTree = "<group>"; };
618C294D13947DEB005E47FA /* clock.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = clock.h; sourceTree = "<group>"; };
618C294E13947DEB005E47FA /* clock_priv.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = clock_priv.defs; sourceTree = "<group>"; };
618C294F13947DEB005E47FA /* clock_priv.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = clock_priv.h; sourceTree = "<group>"; };
618C295013947DEB005E47FA /* clock_reply.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = clock_reply.defs; sourceTree = "<group>"; };
618C295113947DEB005E47FA /* clock_reply.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = clock_reply.h; sourceTree = "<group>"; };
618C295213947DEB005E47FA /* clock_types.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = clock_types.defs; sourceTree = "<group>"; };
618C295313947DEB005E47FA /* clock_types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = clock_types.h; sourceTree = "<group>"; };
618C295413947DEB005E47FA /* error.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = error.h; sourceTree = "<group>"; };
618C295513947DEB005E47FA /* exc.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = exc.defs; sourceTree = "<group>"; };
618C295613947DEB005E47FA /* exc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = exc.h; sourceTree = "<group>"; };
618C295713947DEB005E47FA /* exception.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = exception.h; sourceTree = "<group>"; };
618C295813947DEB005E47FA /* exception_types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = exception_types.h; sourceTree = "<group>"; };
618C295913947DEB005E47FA /* host_info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = host_info.h; sourceTree = "<group>"; };
618C295A13947DEB005E47FA /* host_notify.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = host_notify.h; sourceTree = "<group>"; };
618C295B13947DEB005E47FA /* host_notify_reply.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = host_notify_reply.defs; sourceTree = "<group>"; };
618C295C13947DEB005E47FA /* host_priv.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = host_priv.defs; sourceTree = "<group>"; };
618C295D13947DEB005E47FA /* host_priv.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = host_priv.h; sourceTree = "<group>"; };
618C295E13947DEB005E47FA /* host_reboot.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = host_reboot.h; sourceTree = "<group>"; };
618C295F13947DEB005E47FA /* host_security.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = host_security.defs; sourceTree = "<group>"; };
618C296013947DEB005E47FA /* host_security.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = host_security.h; sourceTree = "<group>"; };
618C296113947DEB005E47FA /* host_special_ports.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = host_special_ports.h; sourceTree = "<group>"; };
618C296313947DEB005E47FA /* _structs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _structs.h; sourceTree = "<group>"; };
618C296413947DEB005E47FA /* asm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = asm.h; sourceTree = "<group>"; };
618C296513947DEB005E47FA /* boolean.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = boolean.h; sourceTree = "<group>"; };
618C296613947DEB005E47FA /* exception.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = exception.h; sourceTree = "<group>"; };
618C296713947DEB005E47FA /* fp_reg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fp_reg.h; sourceTree = "<group>"; };
618C296813947DEB005E47FA /* kern_return.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = kern_return.h; sourceTree = "<group>"; };
618C296913947DEB005E47FA /* machine_types.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = machine_types.defs; sourceTree = "<group>"; };
618C296A13947DEB005E47FA /* ndr_def.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ndr_def.h; sourceTree = "<group>"; };
618C296B13947DEB005E47FA /* processor_info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = processor_info.h; sourceTree = "<group>"; };
618C296C13947DEB005E47FA /* rpc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rpc.h; sourceTree = "<group>"; };
618C296D13947DEB005E47FA /* sdt_isa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sdt_isa.h; sourceTree = "<group>"; };
618C296E13947DEB005E47FA /* task.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = task.h; sourceTree = "<group>"; };
618C296F13947DEB005E47FA /* thread_act.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thread_act.h; sourceTree = "<group>"; };
618C297013947DEB005E47FA /* thread_state.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thread_state.h; sourceTree = "<group>"; };
618C297113947DEB005E47FA /* thread_status.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thread_status.h; sourceTree = "<group>"; };
618C297213947DEB005E47FA /* vm_param.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vm_param.h; sourceTree = "<group>"; };
618C297313947DEB005E47FA /* vm_types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vm_types.h; sourceTree = "<group>"; };
618C297413947DEB005E47FA /* kern_return.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = kern_return.h; sourceTree = "<group>"; };
618C297513947DEB005E47FA /* kmod.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = kmod.h; sourceTree = "<group>"; };
618C297613947DEB005E47FA /* ledger.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = ledger.defs; sourceTree = "<group>"; };
618C297713947DEB005E47FA /* ledger.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ledger.h; sourceTree = "<group>"; };
618C297813947DEB005E47FA /* lock_set.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = lock_set.defs; sourceTree = "<group>"; };
618C297913947DEB005E47FA /* lock_set.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lock_set.h; sourceTree = "<group>"; };
618C297A13947DEB005E47FA /* mach.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mach.h; sourceTree = "<group>"; };
618C297B13947DEB005E47FA /* mach_error.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mach_error.h; sourceTree = "<group>"; };
618C297C13947DEB005E47FA /* mach_exc.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = mach_exc.defs; sourceTree = "<group>"; };
618C297D13947DEB005E47FA /* mach_host.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = mach_host.defs; sourceTree = "<group>"; };
618C297E13947DEB005E47FA /* mach_host.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mach_host.h; sourceTree = "<group>"; };
618C297F13947DEB005E47FA /* mach_init.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mach_init.h; sourceTree = "<group>"; };
618C298013947DEB005E47FA /* mach_interface.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mach_interface.h; sourceTree = "<group>"; };
618C298113947DEB005E47FA /* mach_param.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mach_param.h; sourceTree = "<group>"; };
618C298213947DEB005E47FA /* mach_port.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = mach_port.defs; sourceTree = "<group>"; };
618C298313947DEB005E47FA /* mach_port.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mach_port.h; sourceTree = "<group>"; };
618C298413947DEB005E47FA /* mach_syscalls.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mach_syscalls.h; sourceTree = "<group>"; };
618C298513947DEB005E47FA /* mach_time.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mach_time.h; sourceTree = "<group>"; };
618C298613947DEB005E47FA /* mach_traps.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mach_traps.h; sourceTree = "<group>"; };
618C298713947DEB005E47FA /* mach_types.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = mach_types.defs; sourceTree = "<group>"; };
618C298813947DEB005E47FA /* mach_types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mach_types.h; sourceTree = "<group>"; };
618C298913947DEB005E47FA /* mach_vm.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = mach_vm.defs; sourceTree = "<group>"; };
618C298A13947DEB005E47FA /* mach_vm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mach_vm.h; sourceTree = "<group>"; };
618C298C13947DEB005E47FA /* asm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = asm.h; sourceTree = "<group>"; };
618C298D13947DEB005E47FA /* boolean.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = boolean.h; sourceTree = "<group>"; };
618C298E13947DEB005E47FA /* exception.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = exception.h; sourceTree = "<group>"; };
618C298F13947DEB005E47FA /* kern_return.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = kern_return.h; sourceTree = "<group>"; };
618C299013947DEB005E47FA /* machine_types.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = machine_types.defs; sourceTree = "<group>"; };
618C299113947DEB005E47FA /* ndr_def.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ndr_def.h; sourceTree = "<group>"; };
618C299213947DEB005E47FA /* processor_info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = processor_info.h; sourceTree = "<group>"; };
618C299313947DEB005E47FA /* rpc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rpc.h; sourceTree = "<group>"; };
618C299413947DEB005E47FA /* sdt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sdt.h; sourceTree = "<group>"; };
618C299513947DEB005E47FA /* sdt_isa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sdt_isa.h; sourceTree = "<group>"; };
618C299613947DEB005E47FA /* thread_state.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thread_state.h; sourceTree = "<group>"; };
618C299713947DEB005E47FA /* thread_status.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thread_status.h; sourceTree = "<group>"; };
618C299813947DEB005E47FA /* vm_param.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vm_param.h; sourceTree = "<group>"; };
618C299913947DEB005E47FA /* vm_types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vm_types.h; sourceTree = "<group>"; };
618C299A13947DEB005E47FA /* machine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = machine.h; sourceTree = "<group>"; };
618C299B13947DEB005E47FA /* memory_object_types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = memory_object_types.h; sourceTree = "<group>"; };
618C299C13947DEB005E47FA /* message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = message.h; sourceTree = "<group>"; };
618C299D13947DEB005E47FA /* mig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mig.h; sourceTree = "<group>"; };
618C299E13947DEB005E47FA /* mig_errors.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mig_errors.h; sourceTree = "<group>"; };
618C299F13947DEB005E47FA /* ndr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ndr.h; sourceTree = "<group>"; };
618C29A013947DEB005E47FA /* notify.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = notify.defs; sourceTree = "<group>"; };
618C29A113947DEB005E47FA /* notify.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = notify.h; sourceTree = "<group>"; };
618C29A213947DEB005E47FA /* policy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = policy.h; sourceTree = "<group>"; };
618C29A313947DEB005E47FA /* port.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = port.h; sourceTree = "<group>"; };
618C29A413947DEB005E47FA /* port_obj.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = port_obj.h; sourceTree = "<group>"; };
618C29A613947DEB005E47FA /* _structs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _structs.h; sourceTree = "<group>"; };
618C29A713947DEB005E47FA /* asm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = asm.h; sourceTree = "<group>"; };
618C29A813947DEB005E47FA /* boolean.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = boolean.h; sourceTree = "<group>"; };
618C29A913947DEB005E47FA /* exception.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = exception.h; sourceTree = "<group>"; };
618C29AA13947DEB005E47FA /* kern_return.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = kern_return.h; sourceTree = "<group>"; };
618C29AB13947DEB005E47FA /* machine_types.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = machine_types.defs; sourceTree = "<group>"; };
618C29AC13947DEB005E47FA /* ndr_def.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ndr_def.h; sourceTree = "<group>"; };
618C29AD13947DEB005E47FA /* processor_info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = processor_info.h; sourceTree = "<group>"; };
618C29AE13947DEB005E47FA /* rpc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rpc.h; sourceTree = "<group>"; };
618C29AF13947DEB005E47FA /* sdt_isa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sdt_isa.h; sourceTree = "<group>"; };
618C29B013947DEB005E47FA /* task.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = task.h; sourceTree = "<group>"; };
618C29B113947DEB005E47FA /* thread_act.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thread_act.h; sourceTree = "<group>"; };
618C29B213947DEB005E47FA /* thread_state.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thread_state.h; sourceTree = "<group>"; };
618C29B313947DEB005E47FA /* thread_status.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thread_status.h; sourceTree = "<group>"; };
618C29B413947DEB005E47FA /* vm_param.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vm_param.h; sourceTree = "<group>"; };
618C29B513947DEB005E47FA /* vm_types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vm_types.h; sourceTree = "<group>"; };
618C29B613947DEB005E47FA /* processor.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = processor.defs; sourceTree = "<group>"; };
618C29B713947DEB005E47FA /* processor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = processor.h; sourceTree = "<group>"; };
618C29B813947DEB005E47FA /* processor_info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = processor_info.h; sourceTree = "<group>"; };
618C29B913947DEB005E47FA /* processor_set.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = processor_set.defs; sourceTree = "<group>"; };
618C29BA13947DEB005E47FA /* processor_set.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = processor_set.h; sourceTree = "<group>"; };
618C29BB13947DEB005E47FA /* rpc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rpc.h; sourceTree = "<group>"; };
618C29BC13947DEB005E47FA /* sdt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sdt.h; sourceTree = "<group>"; };
618C29BD13947DEB005E47FA /* security.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = security.defs; sourceTree = "<group>"; };
618C29BE13947DEB005E47FA /* semaphore.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = semaphore.h; sourceTree = "<group>"; };
618C29BF13947DEB005E47FA /* shared_memory_server.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = shared_memory_server.h; sourceTree = "<group>"; };
618C29C013947DEB005E47FA /* shared_region.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = shared_region.h; sourceTree = "<group>"; };
618C29C113947DEB005E47FA /* std_types.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = std_types.defs; sourceTree = "<group>"; };
618C29C213947DEB005E47FA /* std_types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = std_types.h; sourceTree = "<group>"; };
618C29C313947DEB005E47FA /* sync.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sync.h; sourceTree = "<group>"; };
618C29C413947DEB005E47FA /* sync_policy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sync_policy.h; sourceTree = "<group>"; };
618C29C513947DEB005E47FA /* task.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = task.defs; sourceTree = "<group>"; };
618C29C613947DEB005E47FA /* task.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = task.h; sourceTree = "<group>"; };
618C29C713947DEB005E47FA /* task_access.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = task_access.defs; sourceTree = "<group>"; };
618C29C813947DEB005E47FA /* task_info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = task_info.h; sourceTree = "<group>"; };
618C29C913947DEB005E47FA /* task_ledger.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = task_ledger.h; sourceTree = "<group>"; };
618C29CA13947DEB005E47FA /* task_policy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = task_policy.h; sourceTree = "<group>"; };
618C29CB13947DEB005E47FA /* task_special_ports.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = task_special_ports.h; sourceTree = "<group>"; };
618C29CC13947DEB005E47FA /* thread_act.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = thread_act.defs; sourceTree = "<group>"; };
618C29CD13947DEB005E47FA /* thread_act.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thread_act.h; sourceTree = "<group>"; };
618C29CE13947DEB005E47FA /* thread_info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thread_info.h; sourceTree = "<group>"; };
618C29CF13947DEB005E47FA /* thread_policy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thread_policy.h; sourceTree = "<group>"; };
618C29D013947DEB005E47FA /* thread_special_ports.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thread_special_ports.h; sourceTree = "<group>"; };
618C29D113947DEB005E47FA /* thread_status.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thread_status.h; sourceTree = "<group>"; };
618C29D213947DEB005E47FA /* thread_switch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thread_switch.h; sourceTree = "<group>"; };
618C29D313947DEB005E47FA /* time_value.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = time_value.h; sourceTree = "<group>"; };
618C29D413947DEB005E47FA /* vm_attributes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vm_attributes.h; sourceTree = "<group>"; };
618C29D513947DEB005E47FA /* vm_behavior.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vm_behavior.h; sourceTree = "<group>"; };
618C29D613947DEB005E47FA /* vm_inherit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vm_inherit.h; sourceTree = "<group>"; };
618C29D713947DEB005E47FA /* vm_map.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = vm_map.defs; sourceTree = "<group>"; };
618C29D813947DEB005E47FA /* vm_map.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vm_map.h; sourceTree = "<group>"; };
618C29D913947DEB005E47FA /* vm_param.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vm_param.h; sourceTree = "<group>"; };
618C29DA13947DEB005E47FA /* vm_prot.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vm_prot.h; sourceTree = "<group>"; };
618C29DB13947DEB005E47FA /* vm_purgable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vm_purgable.h; sourceTree = "<group>"; };
618C29DC13947DEB005E47FA /* vm_region.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vm_region.h; sourceTree = "<group>"; };
618C29DD13947DEB005E47FA /* vm_statistics.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vm_statistics.h; sourceTree = "<group>"; };
618C29DE13947DEB005E47FA /* vm_sync.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vm_sync.h; sourceTree = "<group>"; };
618C29DF13947DEB005E47FA /* vm_task.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vm_task.h; sourceTree = "<group>"; };
618C29E013947DEB005E47FA /* vm_types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vm_types.h; sourceTree = "<group>"; };
618C29E213947DEB005E47FA /* task.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = task.h; sourceTree = "<group>"; };
618C29E313947DEB005E47FA /* thread_act.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thread_act.h; sourceTree = "<group>"; };
618C29E513947DEB005E47FA /* arch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = arch.h; sourceTree = "<group>"; };
618C29E613947DEB005E47FA /* compact_unwind_encoding.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = compact_unwind_encoding.h; sourceTree = "<group>"; };
618C29E713947DEB005E47FA /* dyld.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dyld.h; sourceTree = "<group>"; };
618C29E813947DEB005E47FA /* dyld_images.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dyld_images.h; sourceTree = "<group>"; };
618C29E913947DEB005E47FA /* fat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fat.h; sourceTree = "<group>"; };
618C29EA13947DEB005E47FA /* getsect.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = getsect.h; sourceTree = "<group>"; };
618C29EC13947DEB005E47FA /* swap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = swap.h; sourceTree = "<group>"; };
618C29ED13947DEB005E47FA /* ldsyms.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ldsyms.h; sourceTree = "<group>"; };
618C29EE13947DEB005E47FA /* loader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = loader.h; sourceTree = "<group>"; };
618C29EF13947DEB005E47FA /* nlist.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nlist.h; sourceTree = "<group>"; };
618C29F113947DEB005E47FA /* reloc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = reloc.h; sourceTree = "<group>"; };
618C29F213947DEB005E47FA /* swap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = swap.h; sourceTree = "<group>"; };
618C29F313947DEB005E47FA /* ranlib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ranlib.h; sourceTree = "<group>"; };
618C29F413947DEB005E47FA /* reloc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = reloc.h; sourceTree = "<group>"; };
618C29F513947DEB005E47FA /* stab.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stab.h; sourceTree = "<group>"; };
618C29F613947DEB005E47FA /* swap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = swap.h; sourceTree = "<group>"; };
618C29F813947DEB005E47FA /* reloc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = reloc.h; sourceTree = "<group>"; };
618C29FA13947DEB005E47FA /* _limits.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _limits.h; sourceTree = "<group>"; };
618C29FB13947DEB005E47FA /* _param.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _param.h; sourceTree = "<group>"; };
618C29FC13947DEB005E47FA /* _structs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _structs.h; sourceTree = "<group>"; };
618C29FD13947DEB005E47FA /* _types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _types.h; sourceTree = "<group>"; };
618C29FE13947DEB005E47FA /* byte_order.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = byte_order.h; sourceTree = "<group>"; };
618C29FF13947DEB005E47FA /* endian.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = endian.h; sourceTree = "<group>"; };
618C2A0013947DEB005E47FA /* fasttrap_isa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fasttrap_isa.h; sourceTree = "<group>"; };
618C2A0113947DEB005E47FA /* limits.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = limits.h; sourceTree = "<group>"; };
618C2A0213947DEB005E47FA /* param.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = param.h; sourceTree = "<group>"; };
618C2A0313947DEB005E47FA /* profile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = profile.h; sourceTree = "<group>"; };
618C2A0413947DEB005E47FA /* setjmp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = setjmp.h; sourceTree = "<group>"; };
618C2A0513947DEB005E47FA /* signal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = signal.h; sourceTree = "<group>"; };
618C2A0613947DEB005E47FA /* types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = types.h; sourceTree = "<group>"; };
618C2A0713947DEB005E47FA /* vmparam.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vmparam.h; sourceTree = "<group>"; };
618C2A0813947DEB005E47FA /* math.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = math.h; sourceTree = "<group>"; };
618C2A0A13947DEB005E47FA /* bootp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = bootp.h; sourceTree = "<group>"; };
618C2A0B13947DEB005E47FA /* icmp6.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = icmp6.h; sourceTree = "<group>"; };
618C2A0C13947DEB005E47FA /* icmp_var.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = icmp_var.h; sourceTree = "<group>"; };
618C2A0D13947DEB005E47FA /* if_ether.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = if_ether.h; sourceTree = "<group>"; };
618C2A0E13947DEB005E47FA /* igmp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = igmp.h; sourceTree = "<group>"; };
618C2A0F13947DEB005E47FA /* igmp_var.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = igmp_var.h; sourceTree = "<group>"; };
618C2A1013947DEB005E47FA /* in.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = in.h; sourceTree = "<group>"; };
618C2A1113947DEB005E47FA /* in_pcb.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = in_pcb.h; sourceTree = "<group>"; };
618C2A1213947DEB005E47FA /* in_systm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = in_systm.h; sourceTree = "<group>"; };
618C2A1313947DEB005E47FA /* in_var.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = in_var.h; sourceTree = "<group>"; };
618C2A1413947DEB005E47FA /* ip.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ip.h; sourceTree = "<group>"; };
618C2A1513947DEB005E47FA /* ip6.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ip6.h; sourceTree = "<group>"; };
618C2A1613947DEB005E47FA /* ip_fw.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ip_fw.h; sourceTree = "<group>"; };
618C2A1713947DEB005E47FA /* ip_fw2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ip_fw2.h; sourceTree = "<group>"; };
618C2A1813947DEB005E47FA /* ip_icmp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ip_icmp.h; sourceTree = "<group>"; };
618C2A1913947DEB005E47FA /* ip_mroute.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ip_mroute.h; sourceTree = "<group>"; };
618C2A1A13947DEB005E47FA /* ip_var.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ip_var.h; sourceTree = "<group>"; };
618C2A1B13947DEB005E47FA /* tcp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tcp.h; sourceTree = "<group>"; };
618C2A1C13947DEB005E47FA /* tcp_fsm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tcp_fsm.h; sourceTree = "<group>"; };
618C2A1D13947DEB005E47FA /* tcp_seq.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tcp_seq.h; sourceTree = "<group>"; };
618C2A1E13947DEB005E47FA /* tcp_timer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tcp_timer.h; sourceTree = "<group>"; };
618C2A1F13947DEB005E47FA /* tcp_var.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tcp_var.h; sourceTree = "<group>"; };
618C2A2013947DEB005E47FA /* tcpip.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tcpip.h; sourceTree = "<group>"; };
618C2A2113947DEB005E47FA /* udp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = udp.h; sourceTree = "<group>"; };
618C2A2213947DEB005E47FA /* udp_var.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = udp_var.h; sourceTree = "<group>"; };
618C2A2413947DEB005E47FA /* ah.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ah.h; sourceTree = "<group>"; };
618C2A2513947DEB005E47FA /* esp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = esp.h; sourceTree = "<group>"; };
618C2A2613947DEB005E47FA /* in6.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = in6.h; sourceTree = "<group>"; };
618C2A2713947DEB005E47FA /* in6_var.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = in6_var.h; sourceTree = "<group>"; };
618C2A2813947DEB005E47FA /* ip6_fw.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ip6_fw.h; sourceTree = "<group>"; };
618C2A2913947DEB005E47FA /* ip6_mroute.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ip6_mroute.h; sourceTree = "<group>"; };
618C2A2A13947DEB005E47FA /* ipcomp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ipcomp.h; sourceTree = "<group>"; };
618C2A2B13947DEB005E47FA /* ipsec.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ipsec.h; sourceTree = "<group>"; };
618C2A2C13947DEB005E47FA /* nd6.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nd6.h; sourceTree = "<group>"; };
618C2A2D13947DEB005E47FA /* pim6.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pim6.h; sourceTree = "<group>"; };
618C2A2E13947DEB005E47FA /* raw_ip6.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = raw_ip6.h; sourceTree = "<group>"; };
618C2A2F13947DEB005E47FA /* runetype.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = runetype.h; sourceTree = "<group>"; };
618C2A3113947DEB005E47FA /* _common.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _common.h; sourceTree = "<group>"; };
618C2A3213947DEB005E47FA /* _stdio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _stdio.h; sourceTree = "<group>"; };
618C2A3313947DEB005E47FA /* setjmp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = setjmp.h; sourceTree = "<group>"; };
618C2A3413947DEB005E47FA /* signal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = signal.h; sourceTree = "<group>"; };
618C2A3513947DEB005E47FA /* stdarg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stdarg.h; sourceTree = "<group>"; };
618C2A3613947DEB005E47FA /* stdbool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stdbool.h; sourceTree = "<group>"; };
618C2A3713947DEB005E47FA /* stddef.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stddef.h; sourceTree = "<group>"; };
618C2A3813947DEB005E47FA /* stdint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stdint.h; sourceTree = "<group>"; };
618C2A3913947DEB005E47FA /* stdio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stdio.h; sourceTree = "<group>"; };
618C2A3A13947DEB005E47FA /* stdlib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stdlib.h; sourceTree = "<group>"; };
618C2A3B13947DEB005E47FA /* string.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = string.h; sourceTree = "<group>"; };
618C2A3D13947DEB005E47FA /* _endian.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _endian.h; sourceTree = "<group>"; };
618C2A3E13947DEB005E47FA /* _select.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _select.h; sourceTree = "<group>"; };
618C2A3F13947DEB005E47FA /* _structs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _structs.h; sourceTree = "<group>"; };
618C2A4013947DEB005E47FA /* _types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _types.h; sourceTree = "<group>"; };
618C2A4113947DEB005E47FA /* appleapiopts.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = appleapiopts.h; sourceTree = "<group>"; };
618C2A4213947DEB005E47FA /* buf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = buf.h; sourceTree = "<group>"; };
618C2A4313947DEB005E47FA /* cdefs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cdefs.h; sourceTree = "<group>"; };
618C2A4413947DEB005E47FA /* disk.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = disk.h; sourceTree = "<group>"; };
618C2A4513947DEB005E47FA /* kernel_types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = kernel_types.h; sourceTree = "<group>"; };
618C2A4613947DEB005E47FA /* param.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = param.h; sourceTree = "<group>"; };
618C2A4713947DEB005E47FA /* reboot.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = reboot.h; sourceTree = "<group>"; };
618C2A4813947DEB005E47FA /* select.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = select.h; sourceTree = "<group>"; };
618C2A4913947DEB005E47FA /* socket.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = socket.h; sourceTree = "<group>"; };
618C2A4A13947DEB005E47FA /* syscall.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = syscall.h; sourceTree = "<group>"; };
618C2A4B13947DEB005E47FA /* syslimits.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = syslimits.h; sourceTree = "<group>"; };
618C2A4C13947DEB005E47FA /* time.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = time.h; sourceTree = "<group>"; };
618C2A4D13947DEB005E47FA /* types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = types.h; sourceTree = "<group>"; };
618C2A4E13947DEB005E47FA /* unistd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = unistd.h; sourceTree = "<group>"; };
618C2A4F13947DEB005E47FA /* time.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = time.h; sourceTree = "<group>"; };
618C2A5213947DEB005E47FA /* ffs_extern.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ffs_extern.h; sourceTree = "<group>"; };
618C2A5313947DEB005E47FA /* fs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fs.h; sourceTree = "<group>"; };
618C2A5513947DEB005E47FA /* dinode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dinode.h; sourceTree = "<group>"; };
618C2A5613947DEB005E47FA /* dir.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dir.h; sourceTree = "<group>"; };
618C2A5713947DEB005E47FA /* inode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = inode.h; sourceTree = "<group>"; };
618C2A5813947DEB005E47FA /* ufs_extern.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ufs_extern.h; sourceTree = "<group>"; };
618C2A5913947DEB005E47FA /* ufsmount.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ufsmount.h; sourceTree = "<group>"; };
618C2A5A13947DEB005E47FA /* unistd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = unistd.h; sourceTree = "<group>"; };
618C2A5B13947DEB005E47FA /* unwind.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = unwind.h; sourceTree = "<group>"; };
618C2A5D13947DEB005E47FA /* Cconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Cconfig; sourceTree = "<group>"; };
618C2A5E13947DEB005E47FA /* efi_tables.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = efi_tables.c; sourceTree = "<group>"; };
618C2A5F13947DEB005E47FA /* efi_tables.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = efi_tables.h; sourceTree = "<group>"; };
618C2A6013947DEB005E47FA /* error.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = error.c; sourceTree = "<group>"; };
618C2A6113947DEB005E47FA /* libsa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = libsa.h; sourceTree = "<group>"; };
618C2A6213947DEB005E47FA /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = "<group>"; };
618C2A6313947DEB005E47FA /* memory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = memory.h; sourceTree = "<group>"; };
618C2A6413947DEB005E47FA /* prf.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = prf.c; sourceTree = "<group>"; };
618C2A6513947DEB005E47FA /* printf.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = printf.c; sourceTree = "<group>"; };
618C2A6613947DEB005E47FA /* qsort.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = qsort.c; sourceTree = "<group>"; };
618C2A6713947DEB005E47FA /* setjmp.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = setjmp.s; sourceTree = "<group>"; };
618C2A6813947DEB005E47FA /* string.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = string.c; sourceTree = "<group>"; };
618C2A6913947DEB005E47FA /* strtol.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strtol.c; sourceTree = "<group>"; };
618C2A6A13947DEB005E47FA /* zalloc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = zalloc.c; sourceTree = "<group>"; };
618C2A6C13947DEB005E47FA /* acpi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = acpi.h; sourceTree = "<group>"; };
618C2A6D13947DEB005E47FA /* acpi_patcher.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = acpi_patcher.c; sourceTree = "<group>"; };
618C2A6E13947DEB005E47FA /* acpi_patcher.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = acpi_patcher.h; sourceTree = "<group>"; };
618C2A6F13947DEB005E47FA /* allocate.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = allocate.c; sourceTree = "<group>"; };
618C2A7013947DEB005E47FA /* aml_generator.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = aml_generator.c; sourceTree = "<group>"; };
618C2A7113947DEB005E47FA /* aml_generator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = aml_generator.h; sourceTree = "<group>"; };
618C2A7213947DEB005E47FA /* asm.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = asm.s; sourceTree = "<group>"; };
618C2A7313947DEB005E47FA /* ati.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ati.c; sourceTree = "<group>"; };
618C2A7413947DEB005E47FA /* ati_reg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ati_reg.h; sourceTree = "<group>"; };
618C2A7513947DEC005E47FA /* befs.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = befs.c; sourceTree = "<group>"; };
618C2A7613947DEC005E47FA /* befs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = befs.h; sourceTree = "<group>"; };
618C2A7713947DEC005E47FA /* bios.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = bios.h; sourceTree = "<group>"; };
618C2A7813947DEC005E47FA /* bios.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = bios.s; sourceTree = "<group>"; };
618C2A7913947DEC005E47FA /* biosfn.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = biosfn.c; sourceTree = "<group>"; };
618C2A7A13947DEC005E47FA /* bootargs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = bootargs.h; sourceTree = "<group>"; };
618C2A7B13947DEC005E47FA /* bootstruct.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = bootstruct.c; sourceTree = "<group>"; };
618C2A7C13947DEC005E47FA /* bootstruct.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = bootstruct.h; sourceTree = "<group>"; };
618C2A7D13947DEC005E47FA /* cache.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = cache.c; sourceTree = "<group>"; };
618C2A7E13947DEC005E47FA /* Cconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Cconfig; sourceTree = "<group>"; };
618C2A7F13947DEC005E47FA /* console.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = console.c; sourceTree = "<group>"; };
618C2A8013947DEC005E47FA /* convert.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = convert.c; sourceTree = "<group>"; };
618C2A8113947DEC005E47FA /* convert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = convert.h; sourceTree = "<group>"; };
618C2A8213947DEC005E47FA /* cpu.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = cpu.c; sourceTree = "<group>"; };
618C2A8313947DEC005E47FA /* cpu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cpu.h; sourceTree = "<group>"; };
618C2A8413947DEC005E47FA /* device_inject.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = device_inject.c; sourceTree = "<group>"; };
618C2A8513947DEC005E47FA /* device_inject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = device_inject.h; sourceTree = "<group>"; };
618C2A8613947DEC005E47FA /* device_tree.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = device_tree.c; sourceTree = "<group>"; };
618C2A8713947DEC005E47FA /* device_tree.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = device_tree.h; sourceTree = "<group>"; };
618C2A8813947DEC005E47FA /* disk.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = disk.c; sourceTree = "<group>"; };
618C2A8913947DEC005E47FA /* disk.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = disk.h; sourceTree = "<group>"; };
618C2A8A13947DEC005E47FA /* dram_controllers.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = dram_controllers.c; sourceTree = "<group>"; };
618C2A8B13947DEC005E47FA /* dram_controllers.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dram_controllers.h; sourceTree = "<group>"; };
618C2A8C13947DEC005E47FA /* efi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = efi.h; sourceTree = "<group>"; };
618C2A8D13947DEC005E47FA /* ext2fs.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ext2fs.c; sourceTree = "<group>"; };
618C2A8E13947DEC005E47FA /* ext2fs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ext2fs.h; sourceTree = "<group>"; };
618C2A8F13947DEC005E47FA /* fake_efi.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = fake_efi.c; sourceTree = "<group>"; };
618C2A9013947DEC005E47FA /* fake_efi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fake_efi.h; sourceTree = "<group>"; };
618C2A9113947DEC005E47FA /* fdisk.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fdisk.h; sourceTree = "<group>"; };
618C2A9213947DEC005E47FA /* freebsd.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = freebsd.c; sourceTree = "<group>"; };
618C2A9313947DEC005E47FA /* freebsd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = freebsd.h; sourceTree = "<group>"; };
618C2A9413947DEC005E47FA /* hfs.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = hfs.c; sourceTree = "<group>"; };
618C2A9513947DEC005E47FA /* hfs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = hfs.h; sourceTree = "<group>"; };
618C2A9613947DEC005E47FA /* hfs_CaseTables.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = hfs_CaseTables.h; sourceTree = "<group>"; };
618C2A9713947DEC005E47FA /* hfs_compare.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = hfs_compare.c; sourceTree = "<group>"; };
618C2A9813947DEC005E47FA /* hpet.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = hpet.c; sourceTree = "<group>"; };
618C2A9913947DEC005E47FA /* hpet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = hpet.h; sourceTree = "<group>"; };
618C2A9A13947DEC005E47FA /* io_inline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = io_inline.h; sourceTree = "<group>"; };
618C2A9B13947DEC005E47FA /* libsaio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = libsaio.h; sourceTree = "<group>"; };
618C2A9C13947DEC005E47FA /* load.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = load.c; sourceTree = "<group>"; };
618C2A9D13947DEC005E47FA /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = "<group>"; };
618C2A9E13947DEC005E47FA /* md5c.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = md5c.c; sourceTree = "<group>"; };
618C2A9F13947DEC005E47FA /* memvendors.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = memvendors.h; sourceTree = "<group>"; };
618C2AA013947DEC005E47FA /* misc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = misc.c; sourceTree = "<group>"; };
618C2AA113947DEC005E47FA /* msdos.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = msdos.c; sourceTree = "<group>"; };
618C2AA213947DEC005E47FA /* msdos.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = msdos.h; sourceTree = "<group>"; };
618C2AA313947DEC005E47FA /* msdos_private.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = msdos_private.h; sourceTree = "<group>"; };
618C2AA413947DEC005E47FA /* nbp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = nbp.c; sourceTree = "<group>"; };
618C2AA513947DEC005E47FA /* nbp_cmd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nbp_cmd.h; sourceTree = "<group>"; };
618C2AA613947DEC005E47FA /* ntfs.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ntfs.c; sourceTree = "<group>"; };
618C2AA713947DEC005E47FA /* ntfs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ntfs.h; sourceTree = "<group>"; };
618C2AA813947DEC005E47FA /* ntfs_private.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ntfs_private.h; sourceTree = "<group>"; };
618C2AA913947DEC005E47FA /* nvidia.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = nvidia.c; sourceTree = "<group>"; };
618C2AAA13947DEC005E47FA /* nvidia.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nvidia.h; sourceTree = "<group>"; };
618C2AAB13947DEC005E47FA /* openbsd.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = openbsd.c; sourceTree = "<group>"; };
618C2AAC13947DEC005E47FA /* openbsd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = openbsd.h; sourceTree = "<group>"; };
618C2AAD13947DEC005E47FA /* pci.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = pci.c; sourceTree = "<group>"; };
618C2AAE13947DEC005E47FA /* pci.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pci.h; sourceTree = "<group>"; };
618C2AAF13947DEC005E47FA /* pci_root.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = pci_root.c; sourceTree = "<group>"; };
618C2AB013947DEC005E47FA /* pci_root.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pci_root.h; sourceTree = "<group>"; };
618C2AB113947DEC005E47FA /* pci_setup.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = pci_setup.c; sourceTree = "<group>"; };
618C2AB213947DEC005E47FA /* platform.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = platform.c; sourceTree = "<group>"; };
618C2AB313947DEC005E47FA /* platform.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = platform.h; sourceTree = "<group>"; };
618C2AB413947DEC005E47FA /* saio_internal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = saio_internal.h; sourceTree = "<group>"; };
618C2AB513947DEC005E47FA /* saio_types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = saio_types.h; sourceTree = "<group>"; };
618C2AB613947DEC005E47FA /* sl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sl.h; sourceTree = "<group>"; };
618C2AB713947DEC005E47FA /* smbios.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = smbios.c; sourceTree = "<group>"; };
618C2AB813947DEC005E47FA /* smbios.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = smbios.h; sourceTree = "<group>"; };
618C2AB913947DEC005E47FA /* smbios_decode.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = smbios_decode.c; sourceTree = "<group>"; };
618C2ABA13947DEC005E47FA /* smbios_getters.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = smbios_getters.c; sourceTree = "<group>"; };
618C2ABB13947DEC005E47FA /* smbios_getters.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = smbios_getters.h; sourceTree = "<group>"; };
618C2ABC13947DEC005E47FA /* spd.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = spd.c; sourceTree = "<group>"; };
618C2ABD13947DEC005E47FA /* spd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = spd.h; sourceTree = "<group>"; };
618C2ABE13947DEC005E47FA /* stringTable.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = stringTable.c; sourceTree = "<group>"; };
618C2ABF13947DEC005E47FA /* sys.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = sys.c; sourceTree = "<group>"; };
618C2AC013947DEC005E47FA /* table.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = table.c; sourceTree = "<group>"; };
618C2AC113947DEC005E47FA /* ufs.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ufs.c; sourceTree = "<group>"; };
618C2AC213947DEC005E47FA /* ufs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ufs.h; sourceTree = "<group>"; };
618C2AC313947DEC005E47FA /* ufs_byteorder.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ufs_byteorder.c; sourceTree = "<group>"; };
618C2AC413947DEC005E47FA /* ufs_byteorder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ufs_byteorder.h; sourceTree = "<group>"; };
618C2AC513947DEC005E47FA /* usb.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = usb.c; sourceTree = "<group>"; };
618C2AC613947DEC005E47FA /* vbe.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = vbe.c; sourceTree = "<group>"; };
618C2AC713947DEC005E47FA /* vbe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vbe.h; sourceTree = "<group>"; };
618C2AC813947DEC005E47FA /* xml.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = xml.c; sourceTree = "<group>"; };
618C2AC913947DEC005E47FA /* xml.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = xml.h; sourceTree = "<group>"; };
618C2ACA13947DEC005E47FA /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = "<group>"; };
618C2ACB13947DEC005E47FA /* MakePaths.dir */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = MakePaths.dir; sourceTree = "<group>"; };
618C2ACE13947DEC005E47FA /* AMDGraphicsEnabler.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = AMDGraphicsEnabler.c; sourceTree = "<group>"; };
618C2ACF13947DEC005E47FA /* ati.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ati.c; sourceTree = "<group>"; };
618C2AD013947DEC005E47FA /* ati_reg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ati_reg.h; sourceTree = "<group>"; };
618C2AD113947DEC005E47FA /* Cconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Cconfig; sourceTree = "<group>"; };
618C2AD213947DEC005E47FA /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = "<group>"; };
618C2AD313947DEC005E47FA /* Readme.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Readme.txt; sourceTree = "<group>"; };
618C2AD513947DEC005E47FA /* ati.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ati.c; sourceTree = "<group>"; };
618C2AD613947DEC005E47FA /* ati.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ati.h; sourceTree = "<group>"; };
618C2AD713947DEC005E47FA /* ATiGraphicsEnabler.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ATiGraphicsEnabler.c; sourceTree = "<group>"; };
618C2AD813947DEC005E47FA /* Cconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Cconfig; sourceTree = "<group>"; };
618C2AD913947DEC005E47FA /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = "<group>"; };
618C2ADA13947DEC005E47FA /* Readme.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Readme.txt; sourceTree = "<group>"; };
618C2ADB13947DEC005E47FA /* Cconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Cconfig; sourceTree = "<group>"; };
618C2ADD13947DEC005E47FA /* Cconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Cconfig; sourceTree = "<group>"; };
618C2ADE13947DEC005E47FA /* HelloWorld.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = HelloWorld.cpp; sourceTree = "<group>"; };
618C2AE013947DEC005E47FA /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = "<group>"; };
618C2AE213947DEC005E47FA /* modules */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = modules; sourceTree = "<group>"; };
618C2AE413947DEC005E47FA /* Cconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Cconfig; sourceTree = "<group>"; };
618C2AE513947DEC005E47FA /* gma.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = gma.c; sourceTree = "<group>"; };
618C2AE613947DEC005E47FA /* gma.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gma.h; sourceTree = "<group>"; };
618C2AE713947DEC005E47FA /* IntelGraphicsEnabler.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = IntelGraphicsEnabler.c; sourceTree = "<group>"; };
618C2AE813947DEC005E47FA /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = "<group>"; };
618C2AE913947DEC005E47FA /* Readme.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Readme.txt; sourceTree = "<group>"; };
618C2AEB13947DEC005E47FA /* __ashldi3.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = __ashldi3.c; sourceTree = "<group>"; };
618C2AEC13947DEC005E47FA /* __ashrdi3.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = __ashrdi3.c; sourceTree = "<group>"; };
618C2AED13947DEC005E47FA /* __clzsi2.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = __clzsi2.c; sourceTree = "<group>"; };
618C2AEE13947DEC005E47FA /* __divdi3.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = __divdi3.c; sourceTree = "<group>"; };
618C2AEF13947DEC005E47FA /* __divsi3.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = __divsi3.c; sourceTree = "<group>"; };
618C2AF013947DEC005E47FA /* __lshrdi3.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = __lshrdi3.c; sourceTree = "<group>"; };
618C2AF113947DEC005E47FA /* __moddi3.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = __moddi3.c; sourceTree = "<group>"; };
618C2AF213947DEC005E47FA /* __modsi3.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = __modsi3.c; sourceTree = "<group>"; };
618C2AF313947DEC005E47FA /* __udivdi3.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = __udivdi3.c; sourceTree = "<group>"; };
618C2AF413947DEC005E47FA /* __udivmoddi4.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = __udivmoddi4.c; sourceTree = "<group>"; };
618C2AF513947DEC005E47FA /* __udivmodsi4.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = __udivmodsi4.c; sourceTree = "<group>"; };
618C2AF613947DEC005E47FA /* __udivsi3.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = __udivsi3.c; sourceTree = "<group>"; };
618C2AF713947DEC005E47FA /* __umoddi3.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = __umoddi3.c; sourceTree = "<group>"; };
618C2AF813947DEC005E47FA /* __umodsi3.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = __umodsi3.c; sourceTree = "<group>"; };
618C2AF913947DEC005E47FA /* atexit.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = atexit.c; sourceTree = "<group>"; };
618C2AFA13947DEC005E47FA /* atexit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = atexit.h; sourceTree = "<group>"; };
618C2AFB13947DEC005E47FA /* atoi.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = atoi.c; sourceTree = "<group>"; };
618C2AFC13947DEC005E47FA /* atol.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = atol.c; sourceTree = "<group>"; };
618C2AFD13947DEC005E47FA /* atoll.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = atoll.c; sourceTree = "<group>"; };
618C2AFE13947DEC005E47FA /* atox.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = atox.c; sourceTree = "<group>"; };
618C2AFF13947DEC005E47FA /* bsearch.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = bsearch.c; sourceTree = "<group>"; };
618C2B0013947DEC005E47FA /* calloc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = calloc.c; sourceTree = "<group>"; };
618C2B0113947DEC005E47FA /* Cconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Cconfig; sourceTree = "<group>"; };
618C2B0213947DEC005E47FA /* exit.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = exit.c; sourceTree = "<group>"; };
618C2B0313947DEC005E47FA /* jrand48.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = jrand48.c; sourceTree = "<group>"; };
618C2B0413947DEC005E47FA /* klibc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = klibc.c; sourceTree = "<group>"; };
618C2B0513947DEC005E47FA /* LICENSE */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = LICENSE; sourceTree = "<group>"; };
618C2B0613947DEC005E47FA /* limits.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = limits.h; sourceTree = "<group>"; };
618C2B0713947DEC005E47FA /* lrand48.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = lrand48.c; sourceTree = "<group>"; };
618C2B0813947DEC005E47FA /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = "<group>"; };
618C2B0913947DEC005E47FA /* memccpy.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = memccpy.c; sourceTree = "<group>"; };
618C2B0A13947DEC005E47FA /* memchr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = memchr.c; sourceTree = "<group>"; };
618C2B0B13947DEC005E47FA /* memmem.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = memmem.c; sourceTree = "<group>"; };
618C2B0C13947DEC005E47FA /* memmove.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = memmove.c; sourceTree = "<group>"; };
618C2B0D13947DEC005E47FA /* memrchr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = memrchr.c; sourceTree = "<group>"; };
618C2B0E13947DEC005E47FA /* memswap.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = memswap.c; sourceTree = "<group>"; };
618C2B0F13947DEC005E47FA /* mrand48.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mrand48.c; sourceTree = "<group>"; };
618C2B1013947DEC005E47FA /* nrand48.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = nrand48.c; sourceTree = "<group>"; };
618C2B1113947DEC005E47FA /* onexit.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = onexit.c; sourceTree = "<group>"; };
618C2B1213947DEC005E47FA /* qsort.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = qsort.c; sourceTree = "<group>"; };
618C2B1313947DEC005E47FA /* Readme.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Readme.txt; sourceTree = "<group>"; };
618C2B1413947DEC005E47FA /* seed48.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = seed48.c; sourceTree = "<group>"; };
618C2B1513947DEC005E47FA /* sha1hash.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = sha1hash.c; sourceTree = "<group>"; };
618C2B1613947DEC005E47FA /* snprintf.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = snprintf.c; sourceTree = "<group>"; };
618C2B1713947DEC005E47FA /* srand48.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = srand48.c; sourceTree = "<group>"; };
618C2B1813947DEC005E47FA /* sscanf.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = sscanf.c; sourceTree = "<group>"; };
618C2B1913947DEC005E47FA /* strcasecmp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strcasecmp.c; sourceTree = "<group>"; };
618C2B1A13947DEC005E47FA /* strdup.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strdup.c; sourceTree = "<group>"; };
618C2B1B13947DEC005E47FA /* strlcat.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strlcat.c; sourceTree = "<group>"; };
618C2B1C13947DEC005E47FA /* strncasecmp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strncasecmp.c; sourceTree = "<group>"; };
618C2B1D13947DEC005E47FA /* strndup.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strndup.c; sourceTree = "<group>"; };
618C2B1E13947DEC005E47FA /* strnlen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strnlen.c; sourceTree = "<group>"; };
618C2B1F13947DEC005E47FA /* strntoimax.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strntoimax.c; sourceTree = "<group>"; };
618C2B2013947DEC005E47FA /* strntoumax.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strntoumax.c; sourceTree = "<group>"; };
618C2B2113947DEC005E47FA /* strpbrk.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strpbrk.c; sourceTree = "<group>"; };
618C2B2213947DEC005E47FA /* strsep.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strsep.c; sourceTree = "<group>"; };
618C2B2313947DEC005E47FA /* strtoimax.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strtoimax.c; sourceTree = "<group>"; };
618C2B2413947DEC005E47FA /* strtok.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strtok.c; sourceTree = "<group>"; };
618C2B2513947DEC005E47FA /* strtok_r.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strtok_r.c; sourceTree = "<group>"; };
618C2B2613947DEC005E47FA /* strtol.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strtol.c; sourceTree = "<group>"; };
618C2B2713947DEC005E47FA /* strtoll.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strtoll.c; sourceTree = "<group>"; };
618C2B2813947DEC005E47FA /* strtotimespec.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strtotimespec.c; sourceTree = "<group>"; };
618C2B2913947DEC005E47FA /* strtotimeval.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strtotimeval.c; sourceTree = "<group>"; };
618C2B2A13947DEC005E47FA /* strtotimex.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strtotimex.c; sourceTree = "<group>"; };
618C2B2B13947DEC005E47FA /* strtoul.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strtoul.c; sourceTree = "<group>"; };
618C2B2C13947DEC005E47FA /* strtoull.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strtoull.c; sourceTree = "<group>"; };
618C2B2D13947DEC005E47FA /* strtoumax.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strtoumax.c; sourceTree = "<group>"; };
618C2B2E13947DEC005E47FA /* strtox.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strtox.c; sourceTree = "<group>"; };
618C2B2F13947DEC005E47FA /* strxspn.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strxspn.c; sourceTree = "<group>"; };
618C2B3013947DEC005E47FA /* strxspn.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = strxspn.h; sourceTree = "<group>"; };
618C2B3113947DEC005E47FA /* version */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = version; sourceTree = "<group>"; };
618C2B3213947DEC005E47FA /* vsnprintf.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = vsnprintf.c; sourceTree = "<group>"; };
618C2B3313947DEC005E47FA /* vsscanf.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = vsscanf.c; sourceTree = "<group>"; };
618C2B3413947DEC005E47FA /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = "<group>"; };
618C2B3513947DEC005E47FA /* MakeInc.dir */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = MakeInc.dir; sourceTree = "<group>"; };
618C2B3613947DEC005E47FA /* Modules.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Modules.txt; sourceTree = "<group>"; };
618C2B3813947DEC005E47FA /* Cconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Cconfig; sourceTree = "<group>"; };
618C2B3913947DEC005E47FA /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = "<group>"; };
618C2B3A13947DEC005E47FA /* nvidia.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = nvidia.c; sourceTree = "<group>"; };
618C2B3B13947DEC005E47FA /* nvidia.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nvidia.h; sourceTree = "<group>"; };
618C2B3C13947DEC005E47FA /* NVIDIAGraphicsEnabler.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = NVIDIAGraphicsEnabler.c; sourceTree = "<group>"; };
618C2B3D13947DEC005E47FA /* Readme.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Readme.txt; sourceTree = "<group>"; };
618C2B3F13947DEC005E47FA /* 915resolution.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = 915resolution.c; sourceTree = "<group>"; };
618C2B4013947DEC005E47FA /* 915resolution.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = 915resolution.h; sourceTree = "<group>"; };
618C2B4113947DEC005E47FA /* Cconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Cconfig; sourceTree = "<group>"; };
618C2B4213947DEC005E47FA /* edid.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = edid.c; sourceTree = "<group>"; };
618C2B4413947DEC005E47FA /* edid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = edid.h; sourceTree = "<group>"; };
618C2B4513947DEC005E47FA /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = "<group>"; };
618C2B4613947DEC005E47FA /* Readme.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Readme.txt; sourceTree = "<group>"; };
618C2B4713947DEC005E47FA /* Resolution.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Resolution.c; sourceTree = "<group>"; };
618C2B4813947DEC005E47FA /* shortatombios.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = shortatombios.h; sourceTree = "<group>"; };
618C2B4A13947DEC005E47FA /* abi.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = abi.cpp; sourceTree = "<group>"; };
618C2B4B13947DEC005E47FA /* algorithm.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = algorithm.cpp; sourceTree = "<group>"; };
618C2B4C13947DEC005E47FA /* associative_base.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = associative_base.cpp; sourceTree = "<group>"; };
618C2B4D13947DEC005E47FA /* bitset.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = bitset.cpp; sourceTree = "<group>"; };
618C2B4E13947DEC005E47FA /* Cconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Cconfig; sourceTree = "<group>"; };
618C2B4F13947DEC005E47FA /* char_traits.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = char_traits.cpp; sourceTree = "<group>"; };
618C2B5013947DEC005E47FA /* complex.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = complex.cpp; sourceTree = "<group>"; };
618C2B5113947DEC005E47FA /* del_op.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = del_op.cpp; sourceTree = "<group>"; };
618C2B5213947DEC005E47FA /* del_opnt.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = del_opnt.cpp; sourceTree = "<group>"; };
618C2B5313947DEC005E47FA /* del_opv.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = del_opv.cpp; sourceTree = "<group>"; };
618C2B5413947DEC005E47FA /* del_opvnt.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = del_opvnt.cpp; sourceTree = "<group>"; };
618C2B5513947DEC005E47FA /* deque.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = deque.cpp; sourceTree = "<group>"; };
618C2B5613947DEC005E47FA /* eh_alloc.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = eh_alloc.cpp; sourceTree = "<group>"; };
618C2B5713947DEC005E47FA /* eh_globals.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = eh_globals.cpp; sourceTree = "<group>"; };
618C2B5813947DEC005E47FA /* exception.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = exception.cpp; sourceTree = "<group>"; };
618C2B5913947DEC005E47FA /* fstream.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = fstream.cpp; sourceTree = "<group>"; };
618C2B5A13947DEC005E47FA /* func_exception.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = func_exception.cpp; sourceTree = "<group>"; };
618C2B5C13947DEC005E47FA /* algorithm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = algorithm; sourceTree = "<group>"; };
618C2B5D13947DEC005E47FA /* associative_base */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = associative_base; sourceTree = "<group>"; };
618C2B5E13947DEC005E47FA /* basic_definitions */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = basic_definitions; sourceTree = "<group>"; };
618C2B5F13947DEC005E47FA /* bitset */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = bitset; sourceTree = "<group>"; };
618C2B6013947DEC005E47FA /* cassert */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = cassert; sourceTree = "<group>"; };
618C2B6113947DEC005E47FA /* cctype */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = cctype; sourceTree = "<group>"; };
618C2B6213947DEC005E47FA /* cerrno */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = cerrno; sourceTree = "<group>"; };
618C2B6313947DEC005E47FA /* cfloat */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = cfloat; sourceTree = "<group>"; };
618C2B6413947DEC005E47FA /* char_traits */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = char_traits; sourceTree = "<group>"; };
618C2B6513947DEC005E47FA /* climits */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = climits; sourceTree = "<group>"; };
618C2B6613947DEC005E47FA /* clocale */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = clocale; sourceTree = "<group>"; };
618C2B6713947DEC005E47FA /* cmath */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = cmath; sourceTree = "<group>"; };
618C2B6813947DEC005E47FA /* complex */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = complex; sourceTree = "<group>"; };
618C2B6913947DEC005E47FA /* csetjmp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = csetjmp; sourceTree = "<group>"; };
618C2B6A13947DEC005E47FA /* csignal */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = csignal; sourceTree = "<group>"; };
618C2B6B13947DEC005E47FA /* cstdarg */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = cstdarg; sourceTree = "<group>"; };
618C2B6C13947DEC005E47FA /* cstddef */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = cstddef; sourceTree = "<group>"; };
618C2B6D13947DEC005E47FA /* cstdio */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = cstdio; sourceTree = "<group>"; };
618C2B6E13947DEC005E47FA /* cstdlib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = cstdlib; sourceTree = "<group>"; };
618C2B6F13947DEC005E47FA /* cstring */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = cstring; sourceTree = "<group>"; };
618C2B7013947DEC005E47FA /* ctime */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ctime; sourceTree = "<group>"; };
618C2B7113947DEC005E47FA /* cwchar */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = cwchar; sourceTree = "<group>"; };
618C2B7213947DEC005E47FA /* cwctype */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = cwctype; sourceTree = "<group>"; };
618C2B7313947DEC005E47FA /* deque */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = deque; sourceTree = "<group>"; };
618C2B7413947DEC005E47FA /* exception */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = exception; sourceTree = "<group>"; };
618C2B7513947DEC005E47FA /* fstream */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = fstream; sourceTree = "<group>"; };
618C2B7613947DEC005E47FA /* func_exception */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = func_exception; sourceTree = "<group>"; };
618C2B7713947DEC005E47FA /* functional */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = functional; sourceTree = "<group>"; };
618C2B7813947DEC005E47FA /* iomanip */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = iomanip; sourceTree = "<group>"; };
618C2B7913947DEC005E47FA /* ios */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ios; sourceTree = "<group>"; };
618C2B7A13947DEC005E47FA /* iosfwd */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = iosfwd; sourceTree = "<group>"; };
618C2B7B13947DEC005E47FA /* iostream */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = iostream; sourceTree = "<group>"; };
618C2B7C13947DEC005E47FA /* istream */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = istream; sourceTree = "<group>"; };
618C2B7D13947DEC005E47FA /* istream_helpers */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = istream_helpers; sourceTree = "<group>"; };
618C2B7E13947DEC005E47FA /* iterator */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = iterator; sourceTree = "<group>"; };
618C2B7F13947DEC005E47FA /* iterator_base */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = iterator_base; sourceTree = "<group>"; };
618C2B8013947DEC005E47FA /* limits */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = limits; sourceTree = "<group>"; };
618C2B8113947DEC005E47FA /* list */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = list; sourceTree = "<group>"; };
618C2B8213947DEC005E47FA /* locale */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = locale; sourceTree = "<group>"; };
618C2B8313947DEC005E47FA /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = "<group>"; };
618C2B8413947DEC005E47FA /* map */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = map; sourceTree = "<group>"; };
618C2B8513947DEC005E47FA /* map.old */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = map.old; sourceTree = "<group>"; };
618C2B8613947DEC005E47FA /* memory */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = memory; sourceTree = "<group>"; };
618C2B8713947DEC005E47FA /* new */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = new; sourceTree = "<group>"; };
618C2B8813947DEC005E47FA /* numeric */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = numeric; sourceTree = "<group>"; };
618C2B8913947DEC005E47FA /* ostream */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ostream; sourceTree = "<group>"; };
618C2B8A13947DEC005E47FA /* ostream_helpers */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ostream_helpers; sourceTree = "<group>"; };
618C2B8B13947DEC005E47FA /* queue */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = queue; sourceTree = "<group>"; };
618C2B8C13947DEC005E47FA /* set */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = set; sourceTree = "<group>"; };
618C2B8D13947DEC005E47FA /* set.old */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = set.old; sourceTree = "<group>"; };
618C2B8E13947DEC005E47FA /* sstream */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = sstream; sourceTree = "<group>"; };
618C2B8F13947DEC005E47FA /* stack */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = stack; sourceTree = "<group>"; };
618C2B9013947DEC005E47FA /* stdexcept */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = stdexcept; sourceTree = "<group>"; };
618C2B9113947DEC005E47FA /* streambuf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = streambuf; sourceTree = "<group>"; };
618C2B9213947DEC005E47FA /* string */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = string; sourceTree = "<group>"; };
618C2B9313947DEC005E47FA /* string_iostream */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = string_iostream; sourceTree = "<group>"; };
618C2B9413947DEC005E47FA /* support */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = support; sourceTree = "<group>"; };
618C2B9513947DEC005E47FA /* system_configuration.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = system_configuration.h; sourceTree = "<group>"; };
618C2B9613947DEC005E47FA /* type_traits */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = type_traits; sourceTree = "<group>"; };
618C2B9713947DEC005E47FA /* typeinfo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = typeinfo; sourceTree = "<group>"; };
618C2B9813947DEC005E47FA /* types */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = types; sourceTree = "<group>"; };
618C2B9913947DEC005E47FA /* unwind-cxx.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "unwind-cxx.h"; sourceTree = "<group>"; };
618C2B9A13947DEC005E47FA /* utility */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = utility; sourceTree = "<group>"; };
618C2B9B13947DEC005E47FA /* valarray */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = valarray; sourceTree = "<group>"; };
618C2B9C13947DEC005E47FA /* vector */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = vector; sourceTree = "<group>"; };
618C2B9D13947DEC005E47FA /* iomanip.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = iomanip.cpp; sourceTree = "<group>"; };
618C2B9E13947DEC005E47FA /* ios.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ios.cpp; sourceTree = "<group>"; };
618C2B9F13947DEC005E47FA /* iostream.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = iostream.cpp; sourceTree = "<group>"; };
618C2BA013947DEC005E47FA /* istream.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = istream.cpp; sourceTree = "<group>"; };
618C2BA113947DEC005E47FA /* iterator.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = iterator.cpp; sourceTree = "<group>"; };
618C2BA213947DEC005E47FA /* limits.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = limits.cpp; sourceTree = "<group>"; };
618C2BA313947DEC005E47FA /* list.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = list.cpp; sourceTree = "<group>"; };
618C2BA413947DEC005E47FA /* locale.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = locale.cpp; sourceTree = "<group>"; };
618C2BA513947DEC005E47FA /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = "<group>"; };
618C2BA613947DEC005E47FA /* map.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = map.cpp; sourceTree = "<group>"; };
618C2BA713947DEC005E47FA /* new_handler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = new_handler.cpp; sourceTree = "<group>"; };
618C2BA813947DEC005E47FA /* new_op.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = new_op.cpp; sourceTree = "<group>"; };
618C2BA913947DEC005E47FA /* new_opnt.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = new_opnt.cpp; sourceTree = "<group>"; };
618C2BAA13947DEC005E47FA /* new_opv.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = new_opv.cpp; sourceTree = "<group>"; };
618C2BAB13947DEC005E47FA /* new_opvnt.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = new_opvnt.cpp; sourceTree = "<group>"; };
618C2BAC13947DEC005E47FA /* numeric.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = numeric.cpp; sourceTree = "<group>"; };
618C2BAD13947DEC005E47FA /* ostream.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ostream.cpp; sourceTree = "<group>"; };
618C2BAE13947DEC005E47FA /* queue.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = queue.cpp; sourceTree = "<group>"; };
618C2BAF13947DEC005E47FA /* Readme.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Readme.txt; sourceTree = "<group>"; };
618C2BB013947DEC005E47FA /* set.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = set.cpp; sourceTree = "<group>"; };
618C2BB113947DEC005E47FA /* sstream.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sstream.cpp; sourceTree = "<group>"; };
618C2BB213947DEC005E47FA /* stack.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = stack.cpp; sourceTree = "<group>"; };
618C2BB313947DEC005E47FA /* stdexcept.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = stdexcept.cpp; sourceTree = "<group>"; };
618C2BB413947DEC005E47FA /* streambuf.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = streambuf.cpp; sourceTree = "<group>"; };
618C2BB513947DEC005E47FA /* string.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = string.cpp; sourceTree = "<group>"; };
618C2BB613947DEC005E47FA /* support.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = support.cpp; sourceTree = "<group>"; };
618C2BB713947DEC005E47FA /* typeinfo.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = typeinfo.cpp; sourceTree = "<group>"; };
618C2BB813947DEC005E47FA /* uClibc++.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = "uClibc++.c"; sourceTree = "<group>"; };
618C2BB913947DEC005E47FA /* utility.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = utility.cpp; sourceTree = "<group>"; };
618C2BBA13947DEC005E47FA /* valarray.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = valarray.cpp; sourceTree = "<group>"; };
618C2BBB13947DEC005E47FA /* vector.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = vector.cpp; sourceTree = "<group>"; };
618C2BBD13947DEC005E47FA /* bdmesg.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = bdmesg.c; sourceTree = "<group>"; };
618C2BBE13947DEC005E47FA /* Cconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Cconfig; sourceTree = "<group>"; };
618C2BBF13947DEC005E47FA /* dyldsymboltool.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = dyldsymboltool.c; sourceTree = "<group>"; };
618C2BC113947DEC005E47FA /* auto.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = auto.c; sourceTree = "<group>"; };
618C2BC213947DEC005E47FA /* auto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = auto.h; sourceTree = "<group>"; };
618C2BC313947DEC005E47FA /* Cconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Cconfig; sourceTree = "<group>"; };
618C2BC413947DEC005E47FA /* cmd.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = cmd.c; sourceTree = "<group>"; };
618C2BC513947DEC005E47FA /* cmd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cmd.h; sourceTree = "<group>"; };
618C2BC613947DEC005E47FA /* disk.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = disk.c; sourceTree = "<group>"; };
618C2BC713947DEC005E47FA /* disk.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = disk.h; sourceTree = "<group>"; };
618C2BC813947DEC005E47FA /* fdisk.8 */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = fdisk.8; sourceTree = "<group>"; };
618C2BC913947DEC005E47FA /* fdisk.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = fdisk.c; sourceTree = "<group>"; };
618C2BCA13947DEC005E47FA /* getrawpartition.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = getrawpartition.c; sourceTree = "<group>"; };
618C2BCB13947DEC005E47FA /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = "<group>"; };
618C2BCC13947DEC005E47FA /* mbr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mbr.c; sourceTree = "<group>"; };
618C2BCD13947DEC005E47FA /* mbr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mbr.h; sourceTree = "<group>"; };
618C2BCE13947DEC005E47FA /* mbrcode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mbrcode.h; sourceTree = "<group>"; };
618C2BCF13947DEC005E47FA /* misc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = misc.c; sourceTree = "<group>"; };
618C2BD013947DEC005E47FA /* misc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = misc.h; sourceTree = "<group>"; };
618C2BD113947DEC005E47FA /* opendev.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = opendev.c; sourceTree = "<group>"; };
618C2BD213947DEC005E47FA /* part.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = part.c; sourceTree = "<group>"; };
618C2BD313947DEC005E47FA /* part.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = part.h; sourceTree = "<group>"; };
618C2BD413947DEC005E47FA /* user.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = user.c; sourceTree = "<group>"; };
618C2BD513947DEC005E47FA /* user.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = user.h; sourceTree = "<group>"; };
618C2BD613947DEC005E47FA /* util.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = util.h; sourceTree = "<group>"; };
618C2BD713947DEC005E47FA /* machOconv.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = machOconv.c; sourceTree = "<group>"; };
618C2BD813947DEC005E47FA /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = "<group>"; };
618C2BD913947DEC005E47FA /* openUp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = openUp.c; sourceTree = "<group>"; };
618C2BDA13947DEC005E47FA /* Make.rules */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Make.rules; sourceTree = "<group>"; };
618C2BDB13947DEC005E47FA /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = "<group>"; };
618C2BDC13947DEC005E47FA /* MEMTEST86_LICENSE */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = MEMTEST86_LICENSE; sourceTree = "<group>"; };
618C2BDE13947DEC005E47FA /* builddmg */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = builddmg; sourceTree = "<group>"; };
618C2BDF13947DEC005E47FA /* buildpkg */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = buildpkg; sourceTree = "<group>"; };
618C2BE213947DEC005E47FA /* EFI Mounter.app */ = {isa = PBXFileReference; lastKnownFileType = wrapper.application; path = "EFI Mounter.app"; sourceTree = "<group>"; };
618C2BE613947DEC005E47FA /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
618C2BE813947DEC005E47FA /* Chameleon */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.bundle"; path = Chameleon; sourceTree = "<group>"; };
618C2BEA13947DEC005E47FA /* advanced.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = advanced.png; sourceTree = "<group>"; };
618C2BEB13947DEC005E47FA /* background.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = background.png; sourceTree = "<group>"; };
618C2BEC13947DEC005E47FA /* cdBootCreator.sh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = cdBootCreator.sh; sourceTree = "<group>"; };
618C2BED13947DEC005E47FA /* CDROM.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = CDROM.png; sourceTree = "<group>"; };
618C2BEE13947DEC005E47FA /* cham.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = cham.png; sourceTree = "<group>"; };
618C2BEF13947DEC005E47FA /* Chameleon.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; path = Chameleon.icns; sourceTree = "<group>"; };
618C2BF013947DEC005E47FA /* Chameleon.tiff */ = {isa = PBXFileReference; lastKnownFileType = image.tiff; path = Chameleon.tiff; sourceTree = "<group>"; };
618C2BF113947DEC005E47FA /* chamsmall.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = chamsmall.png; sourceTree = "<group>"; };
618C2BF213947DEC005E47FA /* CHANGES */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = CHANGES; sourceTree = "<group>"; };
618C2BF313947DEC005E47FA /* chip.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = chip.png; sourceTree = "<group>"; };
618C2BF413947DEC005E47FA /* CREDITS */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = CREDITS; sourceTree = "<group>"; };
618C2BF513947DEC005E47FA /* disk.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = disk.png; sourceTree = "<group>"; };
618C2BF713947DEC005E47FA /* English */ = {isa = PBXFileReference; lastKnownFileType = file.bplist; name = English; path = English.lproj/Chameleon.nib; sourceTree = "<group>"; };
618C2BF913947DEC005E47FA /* English */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/Chameleon.strings; sourceTree = "<group>"; };
618C2BFB13947DEC005E47FA /* English */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = "<group>"; };
618C2BFD13947DEC005E47FA /* English */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/Localizable.strings; sourceTree = "<group>"; };
618C2BFE13947DEC005E47FA /* extractAcpi.sh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = extractAcpi.sh; sourceTree = "<group>"; };
618C2BFF13947DEC005E47FA /* flag.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = flag.png; sourceTree = "<group>"; };
618C2C0013947DEC005E47FA /* footer.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = footer.png; sourceTree = "<group>"; };
618C2C0113947DEC005E47FA /* French */ = {isa = PBXFileReference; lastKnownFileType = file.bplist; name = French; path = French.lproj/Chameleon.nib; sourceTree = "<group>"; };
618C2C0213947DEC005E47FA /* French */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.strings; name = French; path = French.lproj/Chameleon.strings; sourceTree = "<group>"; };
618C2C0313947DEC005E47FA /* French */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.strings; name = French; path = French.lproj/Localizable.strings; sourceTree = "<group>"; };
618C2C0413947DEC005E47FA /* German */ = {isa = PBXFileReference; lastKnownFileType = file.bplist; name = German; path = German.lproj/Chameleon.nib; sourceTree = "<group>"; };
618C2C0513947DEC005E47FA /* German */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.strings; name = German; path = German.lproj/Chameleon.strings; sourceTree = "<group>"; };
618C2C0613947DEC005E47FA /* German */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.strings; name = German; path = German.lproj/Localizable.strings; sourceTree = "<group>"; };
618C2C0713947DEC005E47FA /* getDevProp.sh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = getDevProp.sh; sourceTree = "<group>"; };
618C2C0813947DEC005E47FA /* gfxutil */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.executable"; path = gfxutil; sourceTree = "<group>"; };
618C2C0913947DEC005E47FA /* Italian */ = {isa = PBXFileReference; lastKnownFileType = file.bplist; name = Italian; path = Italian.lproj/Chameleon.nib; sourceTree = "<group>"; };
618C2C0A13947DEC005E47FA /* Italian */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.strings; name = Italian; path = Italian.lproj/Chameleon.strings; sourceTree = "<group>"; };
618C2C0B13947DEC005E47FA /* Italian */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.strings; name = Italian; path = Italian.lproj/Localizable.strings; sourceTree = "<group>"; };
618C2C0C13947DEC005E47FA /* Linux.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Linux.png; sourceTree = "<group>"; };
618C2C0D13947DEC005E47FA /* MacOSX.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = MacOSX.png; sourceTree = "<group>"; };
618C2C0E13947DEC005E47FA /* name.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = name.png; sourceTree = "<group>"; };
618C2C0F13947DEC005E47FA /* plug.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = plug.png; sourceTree = "<group>"; };
618C2C1013947DEC005E47FA /* README */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = README; sourceTree = "<group>"; };
618C2C1113947DEC005E47FA /* Spanish */ = {isa = PBXFileReference; lastKnownFileType = file.bplist; name = Spanish; path = Spanish.lproj/Chameleon.nib; sourceTree = "<group>"; };
618C2C1213947DEC005E47FA /* Spanish */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.strings; name = Spanish; path = Spanish.lproj/Chameleon.strings; sourceTree = "<group>"; };
618C2C1313947DEC005E47FA /* Spanish */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.strings; name = Spanish; path = Spanish.lproj/Localizable.strings; sourceTree = "<group>"; };
618C2C1413947DEC005E47FA /* syringe.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = syringe.png; sourceTree = "<group>"; };
618C2C1513947DEC005E47FA /* TODO */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = TODO; sourceTree = "<group>"; };
618C2C1613947DEC005E47FA /* version */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = version; sourceTree = "<group>"; };
618C2C1713947DEC005E47FA /* Windows.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Windows.png; sourceTree = "<group>"; };
618C2C1813947DEC005E47FA /* wrench.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = wrench.png; sourceTree = "<group>"; };
618C2C1A13947DEC005E47FA /* smbios.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = smbios.plist; sourceTree = "<group>"; };
618C2C1B13947DEC005E47FA /* Distribution */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = Distribution; sourceTree = "<group>"; };
618C2C1D13947DEC005E47FA /* background.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = background.png; sourceTree = "<group>"; };
618C2C1E13947DEC005E47FA /* dmg.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; path = dmg.icns; sourceTree = "<group>"; };
618C2C1F13947DEC005E47FA /* doc.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; path = doc.icns; sourceTree = "<group>"; };
618C2C2013947DEC005E47FA /* i386.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; path = i386.icns; sourceTree = "<group>"; };
618C2C2213947DEC005E47FA /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = "<group>"; };
618C2C2313947DEC005E47FA /* openUp */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.executable"; path = openUp; sourceTree = "<group>"; };
618C2C2413947DEC005E47FA /* openUp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = openUp.c; sourceTree = "<group>"; };
618C2C2513947DEC005E47FA /* openUp.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = openUp.o; sourceTree = "<group>"; };
618C2C2613947DEC005E47FA /* pan.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; path = pan.icns; sourceTree = "<group>"; };
618C2C2713947DEC005E47FA /* tm.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; path = tm.icns; sourceTree = "<group>"; };
618C2C2813947DEC005E47FA /* Volume.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; path = Volume.icns; sourceTree = "<group>"; };
618C2C2A13947DEC005E47FA /* BootHelp.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BootHelp.txt; sourceTree = "<group>"; };
618C2C2B13947DEC005E47FA /* README */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = README; sourceTree = "<group>"; };
618C2C2C13947DEC005E47FA /* Users_Guide0.5.pdf */ = {isa = PBXFileReference; lastKnownFileType = image.pdf; path = Users_Guide0.5.pdf; sourceTree = "<group>"; };
618C2C2D13947DEC005E47FA /* Icon.zip */ = {isa = PBXFileReference; lastKnownFileType = archive.zip; path = Icon.zip; sourceTree = "<group>"; };
618C2C2F13947DEC005E47FA /* AHCIPortInjector.kext */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.kernel-extension"; path = AHCIPortInjector.kext; sourceTree = "<group>"; };
618C2C3013947DEC005E47FA /* ATAPortInjector.kext */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.kernel-extension"; path = ATAPortInjector.kext; sourceTree = "<group>"; };
618C2C3113947DEC005E47FA /* FakeSMC.kext */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.kernel-extension"; path = FakeSMC.kext; sourceTree = "<group>"; };
618C2C3213947DEC005E47FA /* IOAHCIBlockStorageInjector.kext */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.kernel-extension"; path = IOAHCIBlockStorageInjector.kext; sourceTree = "<group>"; };
618C2C3313947DEC005E47FA /* IOATAFamily.kext */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.kernel-extension"; path = IOATAFamily.kext; sourceTree = "<group>"; };
618C2C3413947DEC005E47FA /* JMicronATAInjector.kext */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.kernel-extension"; path = JMicronATAInjector.kext; sourceTree = "<group>"; };
618C2C3613947DEC005E47FA /* background.tiff */ = {isa = PBXFileReference; lastKnownFileType = image.tiff; path = background.tiff; sourceTree = "<group>"; };
618C2C3813947DEC005E47FA /* English */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = English; path = English.lproj/Conclusion.rtfd; sourceTree = "<group>"; };
618C2C3A13947DEC005E47FA /* English */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; name = English; path = English.lproj/Description.html; sourceTree = "<group>"; };
618C2C3C13947DEC005E47FA /* English */ = {isa = PBXFileReference; lastKnownFileType = text.rtf; name = English; path = English.lproj/License.rtf; sourceTree = "<group>"; };
618C2C3E13947DEC005E47FA /* English */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/Localizable.strings; sourceTree = "<group>"; };
618C2C4013947DEC005E47FA /* English */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = English; path = English.lproj/Welcome.rtfd; sourceTree = "<group>"; };
618C2C4413947DEC005E47FA /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = postinstall; sourceTree = "<group>"; };
618C2C4613947DEC005E47FA /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = postinstall; sourceTree = "<group>"; };
618C2C4813947DEC005E47FA /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = postinstall; sourceTree = "<group>"; };
618C2C4A13947DEC005E47FA /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = postinstall; sourceTree = "<group>"; };
618C2C4C13947DEC005E47FA /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = postinstall; sourceTree = "<group>"; };
618C2C4E13947DEC005E47FA /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = postinstall; sourceTree = "<group>"; };
618C2C5013947DEC005E47FA /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = postinstall; sourceTree = "<group>"; };
618C2C5213947DEC005E47FA /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = postinstall; sourceTree = "<group>"; };
618C2C5413947DEC005E47FA /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = postinstall; sourceTree = "<group>"; };
618C2C5613947DEC005E47FA /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = postinstall; sourceTree = "<group>"; };
618C2C5813947DEC005E47FA /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = postinstall; sourceTree = "<group>"; };
618C2C5A13947DEC005E47FA /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = postinstall; sourceTree = "<group>"; };
618C2C5C13947DEC005E47FA /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = postinstall; sourceTree = "<group>"; };
618C2C5E13947DEC005E47FA /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = postinstall; sourceTree = "<group>"; };
618C2C6013947DEC005E47FA /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = postinstall; sourceTree = "<group>"; };
618C2C6313947DEC005E47FA /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = postinstall; sourceTree = "<group>"; };
618C2C6513947DEC005E47FA /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = postinstall; sourceTree = "<group>"; };
618C2C6713947DEC005E47FA /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = postinstall; sourceTree = "<group>"; };
618C2C6913947DEC005E47FA /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = postinstall; sourceTree = "<group>"; };
618C2C6B13947DEC005E47FA /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = postinstall; sourceTree = "<group>"; };
618C2C6D13947DEC005E47FA /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = postinstall; sourceTree = "<group>"; };
618C2C6F13947DEC005E47FA /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = postinstall; sourceTree = "<group>"; };
618C2C7113947DEC005E47FA /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = postinstall; sourceTree = "<group>"; };
618C2C7313947DEC005E47FA /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = postinstall; sourceTree = "<group>"; };
618C2C7613947DEC005E47FA /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = postinstall; sourceTree = "<group>"; };
618C2C7813947DEC005E47FA /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = postinstall; sourceTree = "<group>"; };
618C2C7A13947DEC005E47FA /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = postinstall; sourceTree = "<group>"; };
618C2C7C13947DEC005E47FA /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = postinstall; sourceTree = "<group>"; };
618C2C7E13947DEC005E47FA /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = postinstall; sourceTree = "<group>"; };
618C2C8013947DEC005E47FA /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = postinstall; sourceTree = "<group>"; };
618C2C8213947DEC005E47FA /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = postinstall; sourceTree = "<group>"; };
618C2C8413947DEC005E47FA /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = postinstall; sourceTree = "<group>"; };
618C2C8713947DEC005E47FA /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = postinstall; sourceTree = "<group>"; };
618C2C8913947DEC005E47FA /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = postinstall; sourceTree = "<group>"; };
618C2C8B13947DEC005E47FA /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = postinstall; sourceTree = "<group>"; };
618C2C8D13947DEC005E47FA /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = postinstall; sourceTree = "<group>"; };
618C2C8F13947DEC005E47FA /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = postinstall; sourceTree = "<group>"; };
618C2C9113947DEC005E47FA /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = postinstall; sourceTree = "<group>"; };
618C2C9313947DEC005E47FA /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = postinstall; sourceTree = "<group>"; };
618C2C9513947DEC005E47FA /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = postinstall; sourceTree = "<group>"; };
618C2C9613947DEC005E47FA /* slimpkg */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = slimpkg; sourceTree = "<group>"; };
618C2C9713947DEC005E47FA /* smbios.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = smbios.plist; sourceTree = "<group>"; };
618C2C9813947DEC005E47FA /* README */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = README; sourceTree = "<group>"; };
618C2C9913947DEC005E47FA /* TODO */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = TODO; sourceTree = "<group>"; };
618C2C9A13947DEC005E47FA /* version */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = version; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXGroup section */
08FB7794FE84155DC02AAC07 /* Chameleon */ = {
isa = PBXGroup;
children = (
619A50C11391DC74001AAD40 /* APPLE_LICENSE */,
619A50C21391DC74001AAD40 /* artwork */,
619A515B1391DC75001AAD40 /* build */,
619A516B1391DC75001AAD40 /* Cconfig */,
619A516C1391DC75001AAD40 /* CHANGES */,
619A516D1391DC75001AAD40 /* coding_standards.txt */,
619A516E1391DC75001AAD40 /* CREDITS */,
619A516F1391DC75001AAD40 /* doc */,
619A51841391DC75001AAD40 /* GPL_V2_LICENSE */,
619A51851391DC75001AAD40 /* i386 */,
619A55F31391DC75001AAD40 /* Make.rules */,
619A55F41391DC75001AAD40 /* Makefile */,
619A55F51391DC75001AAD40 /* MEMTEST86_LICENSE */,
619A55F61391DC75001AAD40 /* package */,
619A56A51391DC75001AAD40 /* README */,
619A56A61391DC75001AAD40 /* TODO */,
619A56A71391DC75001AAD40 /* version */,
618C269213947DEB005E47FA /* APPLE_LICENSE */,
618C269313947DEB005E47FA /* artwork */,
618C272C13947DEB005E47FA /* build */,
618C273C13947DEB005E47FA /* Cconfig */,
618C273D13947DEB005E47FA /* CHANGES */,
618C273E13947DEB005E47FA /* coding_standards.txt */,
618C273F13947DEB005E47FA /* CREDITS */,
618C274013947DEB005E47FA /* doc */,
618C275513947DEB005E47FA /* GPL_V2_LICENSE */,
618C275613947DEB005E47FA /* i386 */,
618C2BDA13947DEC005E47FA /* Make.rules */,
618C2BDB13947DEC005E47FA /* Makefile */,
618C2BDC13947DEC005E47FA /* MEMTEST86_LICENSE */,
618C2BDD13947DEC005E47FA /* package */,
618C2C9813947DEC005E47FA /* README */,
618C2C9913947DEC005E47FA /* TODO */,
618C2C9A13947DEC005E47FA /* version */,
);
name = Chameleon;
sourceTree = "<group>";
};
619A50C21391DC74001AAD40 /* artwork */ = {
618C269313947DEB005E47FA /* artwork */ = {
isa = PBXGroup;
children = (
619A50C31391DC74001AAD40 /* themes */,
618C269413947DEB005E47FA /* themes */,
);
path = artwork;
sourceTree = "<group>";
};
619A50C31391DC74001AAD40 /* themes */ = {
618C269413947DEB005E47FA /* themes */ = {
isa = PBXGroup;
children = (
619A50C41391DC74001AAD40 /* bullet */,
619A50E41391DC74001AAD40 /* default */,
619A51121391DC75001AAD40 /* embed */,
619A51321391DC75001AAD40 /* legacy */,
619A51511391DC75001AAD40 /* msi_netbook */,
619A51541391DC75001AAD40 /* pinktink */,
619A51571391DC75001AAD40 /* twilight */,
618C269513947DEB005E47FA /* bullet */,
618C26B513947DEB005E47FA /* default */,
618C26E313947DEB005E47FA /* embed */,
618C270313947DEB005E47FA /* legacy */,
618C272213947DEB005E47FA /* msi_netbook */,
618C272513947DEB005E47FA /* pinktink */,
618C272813947DEB005E47FA /* twilight */,
);
path = themes;
sourceTree = "<group>";
};
619A50C41391DC74001AAD40 /* bullet */ = {
618C269513947DEB005E47FA /* bullet */ = {
isa = PBXGroup;
children = (
619A50C51391DC74001AAD40 /* background.png */,
619A50C61391DC74001AAD40 /* boot.png */,
619A50C71391DC74001AAD40 /* device_cdrom.png */,
619A50C81391DC74001AAD40 /* device_ext3.png */,
619A50C91391DC74001AAD40 /* device_fat16.png */,
619A50CA1391DC74001AAD40 /* device_fat32.png */,
619A50CB1391DC74001AAD40 /* device_generic.png */,
619A50CC1391DC74001AAD40 /* device_hfsplus.png */,
619A50CD1391DC74001AAD40 /* device_ntfs.png */,
619A50CE1391DC74001AAD40 /* device_scroll_next.png */,
619A50CF1391DC74001AAD40 /* device_scroll_prev.png */,
619A50D01391DC74001AAD40 /* device_selection.png */,
619A50D11391DC74001AAD40 /* font_console.png */,
619A50D21391DC74001AAD40 /* font_small.png */,
619A50D31391DC74001AAD40 /* logo.png */,
619A50D41391DC74001AAD40 /* menu_boot.png */,
619A50D51391DC74001AAD40 /* menu_help.png */,
619A50D61391DC74001AAD40 /* menu_ignore_caches.png */,
619A50D71391DC74001AAD40 /* menu_ignore_caches_disabled.png */,
619A50D81391DC74001AAD40 /* menu_memory_info.png */,
619A50D91391DC74001AAD40 /* menu_selection.png */,
619A50DA1391DC74001AAD40 /* menu_single_user.png */,
619A50DB1391DC74001AAD40 /* menu_single_user_disabled.png */,
619A50DC1391DC74001AAD40 /* menu_verbose.png */,
619A50DD1391DC74001AAD40 /* menu_verbose_disabled.png */,
619A50DE1391DC74001AAD40 /* menu_video_info.png */,
619A50DF1391DC74001AAD40 /* progress_bar.png */,
619A50E01391DC74001AAD40 /* progress_bar_background.png */,
619A50E11391DC74001AAD40 /* text_scroll_next.png */,
619A50E21391DC74001AAD40 /* text_scroll_prev.png */,
619A50E31391DC74001AAD40 /* theme.plist */,
618C269613947DEB005E47FA /* background.png */,
618C269713947DEB005E47FA /* boot.png */,
618C269813947DEB005E47FA /* device_cdrom.png */,
618C269913947DEB005E47FA /* device_ext3.png */,
618C269A13947DEB005E47FA /* device_fat16.png */,
618C269B13947DEB005E47FA /* device_fat32.png */,
618C269C13947DEB005E47FA /* device_generic.png */,
618C269D13947DEB005E47FA /* device_hfsplus.png */,
618C269E13947DEB005E47FA /* device_ntfs.png */,
618C269F13947DEB005E47FA /* device_scroll_next.png */,
618C26A013947DEB005E47FA /* device_scroll_prev.png */,
618C26A113947DEB005E47FA /* device_selection.png */,
618C26A213947DEB005E47FA /* font_console.png */,
618C26A313947DEB005E47FA /* font_small.png */,
618C26A413947DEB005E47FA /* logo.png */,
618C26A513947DEB005E47FA /* menu_boot.png */,
618C26A613947DEB005E47FA /* menu_help.png */,
618C26A713947DEB005E47FA /* menu_ignore_caches.png */,
618C26A813947DEB005E47FA /* menu_ignore_caches_disabled.png */,
618C26A913947DEB005E47FA /* menu_memory_info.png */,
618C26AA13947DEB005E47FA /* menu_selection.png */,
618C26AB13947DEB005E47FA /* menu_single_user.png */,
618C26AC13947DEB005E47FA /* menu_single_user_disabled.png */,
618C26AD13947DEB005E47FA /* menu_verbose.png */,
618C26AE13947DEB005E47FA /* menu_verbose_disabled.png */,
618C26AF13947DEB005E47FA /* menu_video_info.png */,
618C26B013947DEB005E47FA /* progress_bar.png */,
618C26B113947DEB005E47FA /* progress_bar_background.png */,
618C26B213947DEB005E47FA /* text_scroll_next.png */,
618C26B313947DEB005E47FA /* text_scroll_prev.png */,
618C26B413947DEB005E47FA /* theme.plist */,
);
path = bullet;
sourceTree = "<group>";
};
619A50E41391DC74001AAD40 /* default */ = {
618C26B513947DEB005E47FA /* default */ = {
isa = PBXGroup;
children = (
619A50E51391DC74001AAD40 /* background.png */,
619A50E61391DC74001AAD40 /* boot.png */,
619A50E71391DC74001AAD40 /* device_befs.png */,
619A50E81391DC74001AAD40 /* device_befs_o.png */,
619A50E91391DC74001AAD40 /* device_cdrom.png */,
619A50EA1391DC74001AAD40 /* device_cdrom_o.png */,
619A50EB1391DC74001AAD40 /* device_ext3.png */,
619A50EC1391DC74001AAD40 /* device_ext3_o.png */,
619A50ED1391DC74001AAD40 /* device_fat.png */,
619A50EE1391DC74001AAD40 /* device_fat_o.png */,
619A50EF1391DC74001AAD40 /* device_freebsd.png */,
619A50F01391DC74001AAD40 /* device_freebsd_o.png */,
619A50F11391DC74001AAD40 /* device_generic.png */,
619A50F21391DC74001AAD40 /* device_generic_o.png */,
619A50F31391DC74001AAD40 /* device_hfsplus.png */,
619A50F41391DC74001AAD40 /* device_hfsplus_o.png */,
619A50F51391DC74001AAD40 /* device_hfsraid.png */,
619A50F61391DC74001AAD40 /* device_hfsraid_o.png */,
619A50F71391DC74001AAD40 /* device_ntfs.png */,
619A50F81391DC74001AAD40 /* device_ntfs_o.png */,
619A50F91391DC74001AAD40 /* device_openbsd.png */,
619A50FA1391DC74001AAD40 /* device_openbsd_o.png */,
619A50FB1391DC74001AAD40 /* device_scroll_next.png */,
619A50FC1391DC74001AAD40 /* device_scroll_prev.png */,
619A50FD1391DC74001AAD40 /* device_selection.png */,
619A50FE1391DC74001AAD40 /* font_console.png */,
619A50FF1391DC75001AAD40 /* font_small.png */,
619A51001391DC75001AAD40 /* logo.png */,
619A51011391DC75001AAD40 /* menu_boot.png */,
619A51021391DC75001AAD40 /* menu_help.png */,
619A51031391DC75001AAD40 /* menu_ignore_caches.png */,
619A51041391DC75001AAD40 /* menu_ignore_caches_disabled.png */,
619A51051391DC75001AAD40 /* menu_memory_info.png */,
619A51061391DC75001AAD40 /* menu_selection.png */,
619A51071391DC75001AAD40 /* menu_single_user.png */,
619A51081391DC75001AAD40 /* menu_single_user_disabled.png */,
619A51091391DC75001AAD40 /* menu_verbose.png */,
619A510A1391DC75001AAD40 /* menu_verbose_disabled.png */,
619A510B1391DC75001AAD40 /* menu_video_info.png */,
619A510C1391DC75001AAD40 /* progress_bar.png */,
619A510D1391DC75001AAD40 /* progress_bar_background.png */,
619A510E1391DC75001AAD40 /* text_scroll_next.png */,
619A510F1391DC75001AAD40 /* text_scroll_prev.png */,
619A51101391DC75001AAD40 /* theme.plist */,
619A51111391DC75001AAD40 /* thumb.png */,
618C26B613947DEB005E47FA /* background.png */,
618C26B713947DEB005E47FA /* boot.png */,
618C26B813947DEB005E47FA /* device_befs.png */,
618C26B913947DEB005E47FA /* device_befs_o.png */,
618C26BA13947DEB005E47FA /* device_cdrom.png */,
618C26BB13947DEB005E47FA /* device_cdrom_o.png */,
618C26BC13947DEB005E47FA /* device_ext3.png */,
618C26BD13947DEB005E47FA /* device_ext3_o.png */,
618C26BE13947DEB005E47FA /* device_fat.png */,
618C26BF13947DEB005E47FA /* device_fat_o.png */,
618C26C013947DEB005E47FA /* device_freebsd.png */,
618C26C113947DEB005E47FA /* device_freebsd_o.png */,
618C26C213947DEB005E47FA /* device_generic.png */,
618C26C313947DEB005E47FA /* device_generic_o.png */,
618C26C413947DEB005E47FA /* device_hfsplus.png */,
618C26C513947DEB005E47FA /* device_hfsplus_o.png */,
618C26C613947DEB005E47FA /* device_hfsraid.png */,
618C26C713947DEB005E47FA /* device_hfsraid_o.png */,
618C26C813947DEB005E47FA /* device_ntfs.png */,
618C26C913947DEB005E47FA /* device_ntfs_o.png */,
618C26CA13947DEB005E47FA /* device_openbsd.png */,
618C26CB13947DEB005E47FA /* device_openbsd_o.png */,
618C26CC13947DEB005E47FA /* device_scroll_next.png */,
618C26CD13947DEB005E47FA /* device_scroll_prev.png */,
618C26CE13947DEB005E47FA /* device_selection.png */,
618C26CF13947DEB005E47FA /* font_console.png */,
618C26D013947DEB005E47FA /* font_small.png */,
618C26D113947DEB005E47FA /* logo.png */,
618C26D213947DEB005E47FA /* menu_boot.png */,
618C26D313947DEB005E47FA /* menu_help.png */,
618C26D413947DEB005E47FA /* menu_ignore_caches.png */,
618C26D513947DEB005E47FA /* menu_ignore_caches_disabled.png */,
618C26D613947DEB005E47FA /* menu_memory_info.png */,
618C26D713947DEB005E47FA /* menu_selection.png */,
618C26D813947DEB005E47FA /* menu_single_user.png */,
618C26D913947DEB005E47FA /* menu_single_user_disabled.png */,
618C26DA13947DEB005E47FA /* menu_verbose.png */,
618C26DB13947DEB005E47FA /* menu_verbose_disabled.png */,
618C26DC13947DEB005E47FA /* menu_video_info.png */,
618C26DD13947DEB005E47FA /* progress_bar.png */,
618C26DE13947DEB005E47FA /* progress_bar_background.png */,
618C26DF13947DEB005E47FA /* text_scroll_next.png */,
618C26E013947DEB005E47FA /* text_scroll_prev.png */,
618C26E113947DEB005E47FA /* theme.plist */,
618C26E213947DEB005E47FA /* thumb.png */,
);
path = default;
sourceTree = "<group>";
};
619A51121391DC75001AAD40 /* embed */ = {
618C26E313947DEB005E47FA /* embed */ = {
isa = PBXGroup;
children = (
619A51131391DC75001AAD40 /* background.png */,
619A51141391DC75001AAD40 /* boot.png */,
619A51151391DC75001AAD40 /* device_cdrom.png */,
619A51161391DC75001AAD40 /* device_ext3.png */,
619A51171391DC75001AAD40 /* device_fat.png */,
619A51181391DC75001AAD40 /* device_generic.png */,
619A51191391DC75001AAD40 /* device_hfsplus.png */,
619A511A1391DC75001AAD40 /* device_hfsraid.png */,
619A511B1391DC75001AAD40 /* device_ntfs.png */,
619A511C1391DC75001AAD40 /* device_scroll_next.png */,
619A511D1391DC75001AAD40 /* device_scroll_prev.png */,
619A511E1391DC75001AAD40 /* device_selection.png */,
619A511F1391DC75001AAD40 /* font_console.png */,
619A51201391DC75001AAD40 /* font_small.png */,
619A51211391DC75001AAD40 /* logo.png */,
619A51221391DC75001AAD40 /* menu_boot.png */,
619A51231391DC75001AAD40 /* menu_help.png */,
619A51241391DC75001AAD40 /* menu_ignore_caches.png */,
619A51251391DC75001AAD40 /* menu_ignore_caches_disabled.png */,
619A51261391DC75001AAD40 /* menu_memory_info.png */,
619A51271391DC75001AAD40 /* menu_selection.png */,
619A51281391DC75001AAD40 /* menu_single_user.png */,
619A51291391DC75001AAD40 /* menu_single_user_disabled.png */,
619A512A1391DC75001AAD40 /* menu_verbose.png */,
619A512B1391DC75001AAD40 /* menu_verbose_disabled.png */,
619A512C1391DC75001AAD40 /* menu_video_info.png */,
619A512D1391DC75001AAD40 /* progress_bar.png */,
619A512E1391DC75001AAD40 /* progress_bar_background.png */,
619A512F1391DC75001AAD40 /* text_scroll_next.png */,
619A51301391DC75001AAD40 /* text_scroll_prev.png */,
619A51311391DC75001AAD40 /* theme.plist */,
618C26E413947DEB005E47FA /* background.png */,
618C26E513947DEB005E47FA /* boot.png */,
618C26E613947DEB005E47FA /* device_cdrom.png */,
618C26E713947DEB005E47FA /* device_ext3.png */,
618C26E813947DEB005E47FA /* device_fat.png */,
618C26E913947DEB005E47FA /* device_generic.png */,
618C26EA13947DEB005E47FA /* device_hfsplus.png */,
618C26EB13947DEB005E47FA /* device_hfsraid.png */,
618C26EC13947DEB005E47FA /* device_ntfs.png */,
618C26ED13947DEB005E47FA /* device_scroll_next.png */,
618C26EE13947DEB005E47FA /* device_scroll_prev.png */,
618C26EF13947DEB005E47FA /* device_selection.png */,
618C26F013947DEB005E47FA /* font_console.png */,
618C26F113947DEB005E47FA /* font_small.png */,
618C26F213947DEB005E47FA /* logo.png */,
618C26F313947DEB005E47FA /* menu_boot.png */,
618C26F413947DEB005E47FA /* menu_help.png */,
618C26F513947DEB005E47FA /* menu_ignore_caches.png */,
618C26F613947DEB005E47FA /* menu_ignore_caches_disabled.png */,
618C26F713947DEB005E47FA /* menu_memory_info.png */,
618C26F813947DEB005E47FA /* menu_selection.png */,
618C26F913947DEB005E47FA /* menu_single_user.png */,
618C26FA13947DEB005E47FA /* menu_single_user_disabled.png */,
618C26FB13947DEB005E47FA /* menu_verbose.png */,
618C26FC13947DEB005E47FA /* menu_verbose_disabled.png */,
618C26FD13947DEB005E47FA /* menu_video_info.png */,
618C26FE13947DEB005E47FA /* progress_bar.png */,
618C26FF13947DEB005E47FA /* progress_bar_background.png */,
618C270013947DEB005E47FA /* text_scroll_next.png */,
618C270113947DEB005E47FA /* text_scroll_prev.png */,
618C270213947DEB005E47FA /* theme.plist */,
);
path = embed;
sourceTree = "<group>";
};
619A51321391DC75001AAD40 /* legacy */ = {
618C270313947DEB005E47FA /* legacy */ = {
isa = PBXGroup;
children = (
619A51331391DC75001AAD40 /* background.png */,
619A51341391DC75001AAD40 /* boot.png */,
619A51351391DC75001AAD40 /* device_cdrom.png */,
619A51361391DC75001AAD40 /* device_ext3.png */,
619A51371391DC75001AAD40 /* device_fat.png */,
619A51381391DC75001AAD40 /* device_generic.png */,
619A51391391DC75001AAD40 /* device_hfsplus.png */,
619A513A1391DC75001AAD40 /* device_ntfs.png */,
619A513B1391DC75001AAD40 /* device_scroll_next.png */,
619A513C1391DC75001AAD40 /* device_scroll_prev.png */,
619A513D1391DC75001AAD40 /* device_selection.png */,
619A513E1391DC75001AAD40 /* font_console.png */,
619A513F1391DC75001AAD40 /* font_small.png */,
619A51401391DC75001AAD40 /* logo.png */,
619A51411391DC75001AAD40 /* menu_boot.png */,
619A51421391DC75001AAD40 /* menu_help.png */,
619A51431391DC75001AAD40 /* menu_ignore_caches.png */,
619A51441391DC75001AAD40 /* menu_ignore_caches_disabled.png */,
619A51451391DC75001AAD40 /* menu_memory_info.png */,
619A51461391DC75001AAD40 /* menu_selection.png */,
619A51471391DC75001AAD40 /* menu_single_user.png */,
619A51481391DC75001AAD40 /* menu_single_user_disabled.png */,
619A51491391DC75001AAD40 /* menu_verbose.png */,
619A514A1391DC75001AAD40 /* menu_verbose_disabled.png */,
619A514B1391DC75001AAD40 /* menu_video_info.png */,
619A514C1391DC75001AAD40 /* progress_bar.png */,
619A514D1391DC75001AAD40 /* progress_bar_background.png */,
619A514E1391DC75001AAD40 /* text_scroll_next.png */,
619A514F1391DC75001AAD40 /* text_scroll_prev.png */,
619A51501391DC75001AAD40 /* theme.plist */,
618C270413947DEB005E47FA /* background.png */,
618C270513947DEB005E47FA /* boot.png */,
618C270613947DEB005E47FA /* device_cdrom.png */,
618C270713947DEB005E47FA /* device_ext3.png */,
618C270813947DEB005E47FA /* device_fat.png */,
618C270913947DEB005E47FA /* device_generic.png */,
618C270A13947DEB005E47FA /* device_hfsplus.png */,
618C270B13947DEB005E47FA /* device_ntfs.png */,
618C270C13947DEB005E47FA /* device_scroll_next.png */,
618C270D13947DEB005E47FA /* device_scroll_prev.png */,
618C270E13947DEB005E47FA /* device_selection.png */,
618C270F13947DEB005E47FA /* font_console.png */,
618C271013947DEB005E47FA /* font_small.png */,
618C271113947DEB005E47FA /* logo.png */,
618C271213947DEB005E47FA /* menu_boot.png */,
618C271313947DEB005E47FA /* menu_help.png */,
618C271413947DEB005E47FA /* menu_ignore_caches.png */,
618C271513947DEB005E47FA /* menu_ignore_caches_disabled.png */,
618C271613947DEB005E47FA /* menu_memory_info.png */,
618C271713947DEB005E47FA /* menu_selection.png */,
618C271813947DEB005E47FA /* menu_single_user.png */,
618C271913947DEB005E47FA /* menu_single_user_disabled.png */,
618C271A13947DEB005E47FA /* menu_verbose.png */,
618C271B13947DEB005E47FA /* menu_verbose_disabled.png */,
618C271C13947DEB005E47FA /* menu_video_info.png */,
618C271D13947DEB005E47FA /* progress_bar.png */,
618C271E13947DEB005E47FA /* progress_bar_background.png */,
618C271F13947DEB005E47FA /* text_scroll_next.png */,
618C272013947DEB005E47FA /* text_scroll_prev.png */,
618C272113947DEB005E47FA /* theme.plist */,
);
path = legacy;
sourceTree = "<group>";
};
619A51511391DC75001AAD40 /* msi_netbook */ = {
618C272213947DEB005E47FA /* msi_netbook */ = {
isa = PBXGroup;
children = (
619A51521391DC75001AAD40 /* logo.png */,
619A51531391DC75001AAD40 /* theme.plist */,
618C272313947DEB005E47FA /* logo.png */,
618C272413947DEB005E47FA /* theme.plist */,
);
path = msi_netbook;
sourceTree = "<group>";
};
619A51541391DC75001AAD40 /* pinktink */ = {
618C272513947DEB005E47FA /* pinktink */ = {
isa = PBXGroup;
children = (
619A51551391DC75001AAD40 /* logo.png */,
619A51561391DC75001AAD40 /* theme.plist */,
618C272613947DEB005E47FA /* logo.png */,
618C272713947DEB005E47FA /* theme.plist */,
);
path = pinktink;
sourceTree = "<group>";
};
619A51571391DC75001AAD40 /* twilight */ = {
618C272813947DEB005E47FA /* twilight */ = {
isa = PBXGroup;
children = (
619A51581391DC75001AAD40 /* font_small.png */,
619A51591391DC75001AAD40 /* logo.png */,
619A515A1391DC75001AAD40 /* theme.plist */,
618C272913947DEB005E47FA /* font_small.png */,
618C272A13947DEB005E47FA /* logo.png */,
618C272B13947DEB005E47FA /* theme.plist */,
);
path = twilight;
sourceTree = "<group>";
};
619A515B1391DC75001AAD40 /* build */ = {
618C272C13947DEB005E47FA /* build */ = {
isa = PBXGroup;
children = (
619A515C1391DC75001AAD40 /* Chameleon.build */,
618C272D13947DEB005E47FA /* Chameleon.build */,
);
path = build;
sourceTree = "<group>";
};
619A515C1391DC75001AAD40 /* Chameleon.build */ = {
618C272D13947DEB005E47FA /* Chameleon.build */ = {
isa = PBXGroup;
children = (
619A515D1391DC75001AAD40 /* Chameleon.pbxindex */,
618C272E13947DEB005E47FA /* Chameleon.pbxindex */,
);
path = Chameleon.build;
sourceTree = "<group>";
};
619A515D1391DC75001AAD40 /* Chameleon.pbxindex */ = {
618C272E13947DEB005E47FA /* Chameleon.pbxindex */ = {
isa = PBXGroup;
children = (
619A515E1391DC75001AAD40 /* categories.pbxbtree */,
619A515F1391DC75001AAD40 /* cdecls.pbxbtree */,
619A51601391DC75001AAD40 /* decls.pbxbtree */,
619A51611391DC75001AAD40 /* files.pbxbtree */,
619A51621391DC75001AAD40 /* imports.pbxbtree */,
619A51631391DC75001AAD40 /* pbxindex.header */,
619A51641391DC75001AAD40 /* protocols.pbxbtree */,
619A51651391DC75001AAD40 /* refs.pbxbtree */,
619A51661391DC75001AAD40 /* strings.pbxstrings */,
619A51691391DC75001AAD40 /* subclasses.pbxbtree */,
619A516A1391DC75001AAD40 /* symbols0.pbxsymbols */,
618C272F13947DEB005E47FA /* categories.pbxbtree */,
618C273013947DEB005E47FA /* cdecls.pbxbtree */,
618C273113947DEB005E47FA /* decls.pbxbtree */,
618C273213947DEB005E47FA /* files.pbxbtree */,
618C273313947DEB005E47FA /* imports.pbxbtree */,
618C273413947DEB005E47FA /* pbxindex.header */,
618C273513947DEB005E47FA /* protocols.pbxbtree */,
618C273613947DEB005E47FA /* refs.pbxbtree */,
618C273713947DEB005E47FA /* strings.pbxstrings */,
618C273A13947DEB005E47FA /* subclasses.pbxbtree */,
618C273B13947DEB005E47FA /* symbols0.pbxsymbols */,
);
path = Chameleon.pbxindex;
sourceTree = "<group>";
};
619A51661391DC75001AAD40 /* strings.pbxstrings */ = {
618C273713947DEB005E47FA /* strings.pbxstrings */ = {
isa = PBXGroup;
children = (
619A51671391DC75001AAD40 /* control */,
619A51681391DC75001AAD40 /* strings */,
618C273813947DEB005E47FA /* control */,
618C273913947DEB005E47FA /* strings */,
);
path = strings.pbxstrings;
sourceTree = "<group>";
};
619A516F1391DC75001AAD40 /* doc */ = {
618C274013947DEB005E47FA /* doc */ = {
isa = PBXGroup;
children = (
619A51701391DC75001AAD40 /* archive */,
619A51741391DC75001AAD40 /* BootHelp.txt */,
619A51751391DC75001AAD40 /* README */,
619A51761391DC75001AAD40 /* themeinfo.png */,
619A51771391DC75001AAD40 /* User_Guide_src */,
619A51831391DC75001AAD40 /* Users_Guide0.5.pdf */,
618C274113947DEB005E47FA /* archive */,
618C274513947DEB005E47FA /* BootHelp.txt */,
618C274613947DEB005E47FA /* README */,
618C274713947DEB005E47FA /* themeinfo.png */,
618C274813947DEB005E47FA /* User_Guide_src */,
618C275413947DEB005E47FA /* Users_Guide0.5.pdf */,
);
path = doc;
sourceTree = "<group>";
};
619A51701391DC75001AAD40 /* archive */ = {
618C274113947DEB005E47FA /* archive */ = {
isa = PBXGroup;
children = (
619A51711391DC75001AAD40 /* Users_Guide0.4.pdf */,
619A51721391DC75001AAD40 /* Users_Guide_v0.3.pdf */,
619A51731391DC75001AAD40 /* UsersGuide-v0.2.pdf */,
618C274213947DEB005E47FA /* Users_Guide0.4.pdf */,
618C274313947DEB005E47FA /* Users_Guide_v0.3.pdf */,
618C274413947DEB005E47FA /* UsersGuide-v0.2.pdf */,
);
path = archive;
sourceTree = "<group>";
};
619A51771391DC75001AAD40 /* User_Guide_src */ = {
618C274813947DEB005E47FA /* User_Guide_src */ = {
isa = PBXGroup;
children = (
619A51781391DC75001AAD40 /* Chameleon 2 v0.4.xml */,
619A51791391DC75001AAD40 /* Chameleon 2 v0.5.docx */,
619A517A1391DC75001AAD40 /* chameleon.png */,
619A517B1391DC75001AAD40 /* colorchart.png */,
619A517C1391DC75001AAD40 /* install_complete.png */,
619A517D1391DC75001AAD40 /* install_cust.png */,
619A517E1391DC75001AAD40 /* install_dest.png */,
619A517F1391DC75001AAD40 /* install_stand.png */,
619A51801391DC75001AAD40 /* install_start.png */,
619A51811391DC75001AAD40 /* screen_format.png */,
619A51821391DC75001AAD40 /* xnulogo.png */,
618C274913947DEB005E47FA /* Chameleon 2 v0.4.xml */,
618C274A13947DEB005E47FA /* Chameleon 2 v0.5.docx */,
618C274B13947DEB005E47FA /* chameleon.png */,
618C274C13947DEB005E47FA /* colorchart.png */,
618C274D13947DEB005E47FA /* install_complete.png */,
618C274E13947DEB005E47FA /* install_cust.png */,
618C274F13947DEB005E47FA /* install_dest.png */,
618C275013947DEB005E47FA /* install_stand.png */,
618C275113947DEB005E47FA /* install_start.png */,
618C275213947DEB005E47FA /* screen_format.png */,
618C275313947DEB005E47FA /* xnulogo.png */,
);
path = User_Guide_src;
sourceTree = "<group>";
};
619A51851391DC75001AAD40 /* i386 */ = {
618C275613947DEB005E47FA /* i386 */ = {
isa = PBXGroup;
children = (
619A51861391DC75001AAD40 /* boot0 */,
619A518B1391DC75001AAD40 /* boot1 */,
619A51931391DC75001AAD40 /* boot2 */,
619A51B41391DC75001AAD40 /* Cconfig */,
619A51B51391DC75001AAD40 /* cdboot */,
619A51B91391DC75001AAD40 /* config */,
619A51D91391DC75001AAD40 /* doc */,
619A51DC1391DC75001AAD40 /* include */,
619A548B1391DC75001AAD40 /* libsa */,
619A549A1391DC75001AAD40 /* libsaio */,
619A54F91391DC75001AAD40 /* Makefile */,
619A54FA1391DC75001AAD40 /* MakeInc.dir */,
619A54FB1391DC75001AAD40 /* MakePaths.dir */,
619A54FC1391DC75001AAD40 /* modules */,
619A55ED1391DC75001AAD40 /* util */,
618C275713947DEB005E47FA /* boot0 */,
618C275C13947DEB005E47FA /* boot1 */,
618C276413947DEB005E47FA /* boot2 */,
618C278513947DEB005E47FA /* Cconfig */,
618C278613947DEB005E47FA /* cdboot */,
618C278A13947DEB005E47FA /* config */,
618C27AA13947DEB005E47FA /* doc */,
618C27AD13947DEB005E47FA /* include */,
618C2A5C13947DEB005E47FA /* libsa */,
618C2A6B13947DEB005E47FA /* libsaio */,
618C2ACA13947DEC005E47FA /* Makefile */,
618C2ACB13947DEC005E47FA /* MakePaths.dir */,
618C2ACC13947DEC005E47FA /* modules */,
618C2BBC13947DEC005E47FA /* util */,
);
path = i386;
sourceTree = "<group>";
};
619A51861391DC75001AAD40 /* boot0 */ = {
618C275713947DEB005E47FA /* boot0 */ = {
isa = PBXGroup;
children = (
619A51871391DC75001AAD40 /* boot0.s */,
619A51881391DC75001AAD40 /* Cconfig */,
619A51891391DC75001AAD40 /* chain0.s */,
619A518A1391DC75001AAD40 /* Makefile */,
618C275813947DEB005E47FA /* boot0.s */,
618C275913947DEB005E47FA /* Cconfig */,
618C275A13947DEB005E47FA /* chain0.s */,
618C275B13947DEB005E47FA /* Makefile */,
);
path = boot0;
sourceTree = "<group>";
};
619A518B1391DC75001AAD40 /* boot1 */ = {
618C275C13947DEB005E47FA /* boot1 */ = {
isa = PBXGroup;
children = (
619A518C1391DC75001AAD40 /* boot1f32-install.sh */,
619A518D1391DC75001AAD40 /* boot1f32.s */,
619A518E1391DC75001AAD40 /* boot1h.s */,
619A518F1391DC75001AAD40 /* boot1he.s */,
619A51901391DC75001AAD40 /* boot1hp.s */,
619A51911391DC75001AAD40 /* Cconfig */,
619A51921391DC75001AAD40 /* Makefile */,
618C275D13947DEB005E47FA /* boot1f32-install.sh */,
618C275E13947DEB005E47FA /* boot1f32.s */,
618C275F13947DEB005E47FA /* boot1h.s */,
618C276013947DEB005E47FA /* boot1he.s */,
618C276113947DEB005E47FA /* boot1hp.s */,
618C276213947DEB005E47FA /* Cconfig */,
618C276313947DEB005E47FA /* Makefile */,
);
path = boot1;
sourceTree = "<group>";
};
619A51931391DC75001AAD40 /* boot2 */ = {
618C276413947DEB005E47FA /* boot2 */ = {
isa = PBXGroup;
children = (
619A51941391DC75001AAD40 /* appleboot.h */,
619A51951391DC75001AAD40 /* appleClut8.h */,
619A51961391DC75001AAD40 /* bmdecompress.c */,
619A51971391DC75001AAD40 /* boot.c */,
619A51981391DC75001AAD40 /* boot.h */,
619A51991391DC75001AAD40 /* boot2.s */,
619A519A1391DC75001AAD40 /* Cconfig */,
619A519B1391DC75001AAD40 /* drivers.c */,
619A519C1391DC75001AAD40 /* graphic_utils.c */,
619A519D1391DC75001AAD40 /* graphic_utils.h */,
619A519E1391DC75001AAD40 /* graphics.c */,
619A519F1391DC75001AAD40 /* graphics.h */,
619A51A01391DC75001AAD40 /* gui.c */,
619A51A11391DC75001AAD40 /* gui.h */,
619A51A21391DC75001AAD40 /* IOHibernatePrivate.h */,
619A51A31391DC75001AAD40 /* lzss.c */,
619A51A41391DC75001AAD40 /* Makefile */,
619A51A51391DC75001AAD40 /* mboot.c */,
619A51A61391DC75001AAD40 /* mboot.h */,
619A51A71391DC75001AAD40 /* modules.c */,
619A51A81391DC75001AAD40 /* modules.h */,
619A51A91391DC75001AAD40 /* modules_support.s */,
619A51AA1391DC75001AAD40 /* multiboot.h */,
619A51AB1391DC75001AAD40 /* options.c */,
619A51AC1391DC75001AAD40 /* picopng.c */,
619A51AD1391DC75001AAD40 /* picopng.h */,
619A51AE1391DC75001AAD40 /* prompt.c */,
619A51AF1391DC75001AAD40 /* ramdisk.c */,
619A51B01391DC75001AAD40 /* ramdisk.h */,
619A51B11391DC75001AAD40 /* resume.c */,
619A51B21391DC75001AAD40 /* WKdm.h */,
619A51B31391DC75001AAD40 /* WKdmDecompress.c */,
618C276513947DEB005E47FA /* appleboot.h */,
618C276613947DEB005E47FA /* appleClut8.h */,
618C276713947DEB005E47FA /* bmdecompress.c */,
618C276813947DEB005E47FA /* boot.c */,
618C276913947DEB005E47FA /* boot.h */,
618C276A13947DEB005E47FA /* boot2.s */,
618C276B13947DEB005E47FA /* Cconfig */,
618C276C13947DEB005E47FA /* drivers.c */,
618C276D13947DEB005E47FA /* graphic_utils.c */,
618C276E13947DEB005E47FA /* graphic_utils.h */,
618C276F13947DEB005E47FA /* graphics.c */,
618C277013947DEB005E47FA /* graphics.h */,
618C277113947DEB005E47FA /* gui.c */,
618C277213947DEB005E47FA /* gui.h */,
618C277313947DEB005E47FA /* IOHibernatePrivate.h */,
618C277413947DEB005E47FA /* lzss.c */,
618C277513947DEB005E47FA /* Makefile */,
618C277613947DEB005E47FA /* mboot.c */,
618C277713947DEB005E47FA /* mboot.h */,
618C277813947DEB005E47FA /* modules.c */,
618C277913947DEB005E47FA /* modules.h */,
618C277A13947DEB005E47FA /* modules_support.s */,
618C277B13947DEB005E47FA /* multiboot.h */,
618C277C13947DEB005E47FA /* options.c */,
618C277D13947DEB005E47FA /* picopng.c */,
618C277E13947DEB005E47FA /* picopng.h */,
618C277F13947DEB005E47FA /* prompt.c */,
618C278013947DEB005E47FA /* ramdisk.c */,
618C278113947DEB005E47FA /* ramdisk.h */,
618C278213947DEB005E47FA /* resume.c */,
618C278313947DEB005E47FA /* WKdm.h */,
618C278413947DEB005E47FA /* WKdmDecompress.c */,
);
path = boot2;
sourceTree = "<group>";
};
619A51B51391DC75001AAD40 /* cdboot */ = {
618C278613947DEB005E47FA /* cdboot */ = {
isa = PBXGroup;
children = (
619A51B61391DC75001AAD40 /* cdboot.s */,
619A51B71391DC75001AAD40 /* cdboothdd.s */,
619A51B81391DC75001AAD40 /* Makefile */,
618C278713947DEB005E47FA /* cdboot.s */,
618C278813947DEB005E47FA /* cdboothdd.s */,
618C278913947DEB005E47FA /* Makefile */,
);
path = cdboot;
sourceTree = "<group>";
};
619A51B91391DC75001AAD40 /* config */ = {
618C278A13947DEB005E47FA /* config */ = {
isa = PBXGroup;
children = (
619A51BA1391DC75001AAD40 /* cconfig.c */,
619A51BB1391DC75001AAD40 /* checklist.c */,
619A51BC1391DC75001AAD40 /* confdata.c */,
619A51BD1391DC75001AAD40 /* dialog.h */,
619A51BE1391DC75001AAD40 /* expr.c */,
619A51BF1391DC75001AAD40 /* expr.h */,
619A51C01391DC75001AAD40 /* inputbox.c */,
619A51C11391DC75001AAD40 /* lex.zconf.c */,
619A51C21391DC75001AAD40 /* lkc.h */,
619A51C31391DC75001AAD40 /* lkc_proto.h */,
619A51C41391DC75001AAD40 /* lxdialog */,
619A51CF1391DC75001AAD40 /* Makefile */,
619A51D01391DC75001AAD40 /* menu.c */,
619A51D11391DC75001AAD40 /* menubox.c */,
619A51D21391DC75001AAD40 /* nconf.h */,
619A51D31391DC75001AAD40 /* symbol.c */,
619A51D41391DC75001AAD40 /* textbox.c */,
619A51D51391DC75001AAD40 /* util.c */,
619A51D61391DC75001AAD40 /* yesno.c */,
619A51D71391DC75001AAD40 /* zconf.hash.c */,
619A51D81391DC75001AAD40 /* zconf.tab.c */,
618C278B13947DEB005E47FA /* cconfig.c */,
618C278C13947DEB005E47FA /* checklist.c */,
618C278D13947DEB005E47FA /* confdata.c */,
618C278E13947DEB005E47FA /* dialog.h */,
618C278F13947DEB005E47FA /* expr.c */,
618C279013947DEB005E47FA /* expr.h */,
618C279113947DEB005E47FA /* inputbox.c */,
618C279213947DEB005E47FA /* lex.zconf.c */,
618C279313947DEB005E47FA /* lkc.h */,
618C279413947DEB005E47FA /* lkc_proto.h */,
618C279513947DEB005E47FA /* lxdialog */,
618C27A013947DEB005E47FA /* Makefile */,
618C27A113947DEB005E47FA /* menu.c */,
618C27A213947DEB005E47FA /* menubox.c */,
618C27A313947DEB005E47FA /* nconf.h */,
618C27A413947DEB005E47FA /* symbol.c */,
618C27A513947DEB005E47FA /* textbox.c */,
618C27A613947DEB005E47FA /* util.c */,
618C27A713947DEB005E47FA /* yesno.c */,
618C27A813947DEB005E47FA /* zconf.hash.c */,
618C27A913947DEB005E47FA /* zconf.tab.c */,
);
path = config;
sourceTree = "<group>";
};
619A51C41391DC75001AAD40 /* lxdialog */ = {
618C279513947DEB005E47FA /* lxdialog */ = {
isa = PBXGroup;
children = (
619A51C51391DC75001AAD40 /* .gitignore */,
619A51C61391DC75001AAD40 /* BIG.FAT.WARNING */,
619A51C71391DC75001AAD40 /* check-lxdialog.sh */,
619A51C81391DC75001AAD40 /* checklist.c */,
619A51C91391DC75001AAD40 /* dialog.h */,
619A51CA1391DC75001AAD40 /* inputbox.c */,
619A51CB1391DC75001AAD40 /* menubox.c */,
619A51CC1391DC75001AAD40 /* textbox.c */,
619A51CD1391DC75001AAD40 /* util.c */,
619A51CE1391DC75001AAD40 /* yesno.c */,
618C279613947DEB005E47FA /* .gitignore */,
618C279713947DEB005E47FA /* BIG.FAT.WARNING */,
618C279813947DEB005E47FA /* check-lxdialog.sh */,
618C279913947DEB005E47FA /* checklist.c */,
618C279A13947DEB005E47FA /* dialog.h */,
618C279B13947DEB005E47FA /* inputbox.c */,
618C279C13947DEB005E47FA /* menubox.c */,
618C279D13947DEB005E47FA /* textbox.c */,
618C279E13947DEB005E47FA /* util.c */,
618C279F13947DEB005E47FA /* yesno.c */,
);
path = lxdialog;
sourceTree = "<group>";
};
619A51D91391DC75001AAD40 /* doc */ = {
618C27AA13947DEB005E47FA /* doc */ = {
isa = PBXGroup;
children = (
619A51DA1391DC75001AAD40 /* Limits */,
619A51DB1391DC75001AAD40 /* README */,
618C27AB13947DEB005E47FA /* Limits */,
618C27AC13947DEB005E47FA /* README */,
);
path = doc;
sourceTree = "<group>";
};
619A51DC1391DC75001AAD40 /* include */ = {
618C27AD13947DEB005E47FA /* include */ = {
isa = PBXGroup;
children = (
619A51DD1391DC75001AAD40 /* _structs.h */,
619A51DE1391DC75001AAD40 /* _types.h */,
619A51DF1391DC75001AAD40 /* architecture */,
619A51FF1391DC75001AAD40 /* assert.h */,
619A52001391DC75001AAD40 /* ctype.h */,
619A52011391DC75001AAD40 /* device */,
619A52041391DC75001AAD40 /* errno.h */,
619A52051391DC75001AAD40 /* float.h */,
619A52061391DC75001AAD40 /* hfs */,
619A520A1391DC75001AAD40 /* i386 */,
619A521A1391DC75001AAD40 /* inttypes.h */,
619A521B1391DC75001AAD40 /* IOKit */,
619A53621391DC75001AAD40 /* libkern */,
619A53751391DC75001AAD40 /* limits.h */,
619A53761391DC75001AAD40 /* locale.h */,
619A53771391DC75001AAD40 /* mach */,
619A54131391DC75001AAD40 /* mach-o */,
619A54281391DC75001AAD40 /* machine */,
619A54371391DC75001AAD40 /* math.h */,
619A54381391DC75001AAD40 /* netinet */,
619A54521391DC75001AAD40 /* netinet6 */,
619A545E1391DC75001AAD40 /* runetype.h */,
619A545F1391DC75001AAD40 /* secure */,
619A54621391DC75001AAD40 /* setjmp.h */,
619A54631391DC75001AAD40 /* signal.h */,
619A54641391DC75001AAD40 /* stdarg.h */,
619A54651391DC75001AAD40 /* stdbool.h */,
619A54661391DC75001AAD40 /* stddef.h */,
619A54671391DC75001AAD40 /* stdint.h */,
619A54681391DC75001AAD40 /* stdio.h */,
619A54691391DC75001AAD40 /* stdlib.h */,
619A546A1391DC75001AAD40 /* string.h */,
619A546B1391DC75001AAD40 /* sys */,
619A547E1391DC75001AAD40 /* time.h */,
619A547F1391DC75001AAD40 /* ufs */,
619A54891391DC75001AAD40 /* unistd.h */,
619A548A1391DC75001AAD40 /* unwind.h */,
618C27AE13947DEB005E47FA /* _structs.h */,
618C27AF13947DEB005E47FA /* _types.h */,
618C27B013947DEB005E47FA /* architecture */,
618C27D013947DEB005E47FA /* assert.h */,
618C27D113947DEB005E47FA /* ctype.h */,
618C27D213947DEB005E47FA /* device */,
618C27D513947DEB005E47FA /* errno.h */,
618C27D613947DEB005E47FA /* float.h */,
618C27D713947DEB005E47FA /* hfs */,
618C27DB13947DEB005E47FA /* i386 */,
618C27EB13947DEB005E47FA /* inttypes.h */,
618C27EC13947DEB005E47FA /* IOKit */,
618C293313947DEB005E47FA /* libkern */,
618C294613947DEB005E47FA /* limits.h */,
618C294713947DEB005E47FA /* locale.h */,
618C294813947DEB005E47FA /* mach */,
618C29E413947DEB005E47FA /* mach-o */,
618C29F913947DEB005E47FA /* machine */,
618C2A0813947DEB005E47FA /* math.h */,
618C2A0913947DEB005E47FA /* netinet */,
618C2A2313947DEB005E47FA /* netinet6 */,
618C2A2F13947DEB005E47FA /* runetype.h */,
618C2A3013947DEB005E47FA /* secure */,
618C2A3313947DEB005E47FA /* setjmp.h */,
618C2A3413947DEB005E47FA /* signal.h */,
618C2A3513947DEB005E47FA /* stdarg.h */,
618C2A3613947DEB005E47FA /* stdbool.h */,
618C2A3713947DEB005E47FA /* stddef.h */,
618C2A3813947DEB005E47FA /* stdint.h */,
618C2A3913947DEB005E47FA /* stdio.h */,
618C2A3A13947DEB005E47FA /* stdlib.h */,
618C2A3B13947DEB005E47FA /* string.h */,
618C2A3C13947DEB005E47FA /* sys */,
618C2A4F13947DEB005E47FA /* time.h */,
618C2A5013947DEB005E47FA /* ufs */,
618C2A5A13947DEB005E47FA /* unistd.h */,
618C2A5B13947DEB005E47FA /* unwind.h */,
);
path = include;
sourceTree = "<group>";
};
619A51DF1391DC75001AAD40 /* architecture */ = {
618C27B013947DEB005E47FA /* architecture */ = {
isa = PBXGroup;
children = (
619A51E01391DC75001AAD40 /* alignment.h */,
619A51E11391DC75001AAD40 /* byte_order.h */,
619A51E21391DC75001AAD40 /* i386 */,
619A51F21391DC75001AAD40 /* ppc */,
618C27B113947DEB005E47FA /* alignment.h */,
618C27B213947DEB005E47FA /* byte_order.h */,
618C27B313947DEB005E47FA /* i386 */,
618C27C313947DEB005E47FA /* ppc */,
);
path = architecture;
sourceTree = "<group>";
};
619A51E21391DC75001AAD40 /* i386 */ = {
618C27B313947DEB005E47FA /* i386 */ = {
isa = PBXGroup;
children = (
619A51E31391DC75001AAD40 /* alignment.h */,
619A51E41391DC75001AAD40 /* asm_help.h */,
619A51E51391DC75001AAD40 /* byte_order.h */,
619A51E61391DC75001AAD40 /* cpu.h */,
619A51E71391DC75001AAD40 /* desc.h */,
619A51E81391DC75001AAD40 /* fenv.h */,
619A51E91391DC75001AAD40 /* fpu.h */,
619A51EA1391DC75001AAD40 /* frame.h */,
619A51EB1391DC75001AAD40 /* io.h */,
619A51EC1391DC75001AAD40 /* math.h */,
619A51ED1391DC75001AAD40 /* pio.h */,
619A51EE1391DC75001AAD40 /* reg_help.h */,
619A51EF1391DC75001AAD40 /* sel.h */,
619A51F01391DC75001AAD40 /* table.h */,
619A51F11391DC75001AAD40 /* tss.h */,
618C27B413947DEB005E47FA /* alignment.h */,
618C27B513947DEB005E47FA /* asm_help.h */,
618C27B613947DEB005E47FA /* byte_order.h */,
618C27B713947DEB005E47FA /* cpu.h */,
618C27B813947DEB005E47FA /* desc.h */,
618C27B913947DEB005E47FA /* fenv.h */,
618C27BA13947DEB005E47FA /* fpu.h */,
618C27BB13947DEB005E47FA /* frame.h */,
618C27BC13947DEB005E47FA /* io.h */,
618C27BD13947DEB005E47FA /* math.h */,
618C27BE13947DEB005E47FA /* pio.h */,
618C27BF13947DEB005E47FA /* reg_help.h */,
618C27C013947DEB005E47FA /* sel.h */,
618C27C113947DEB005E47FA /* table.h */,
618C27C213947DEB005E47FA /* tss.h */,
);
path = i386;
sourceTree = "<group>";
};
619A51F21391DC75001AAD40 /* ppc */ = {
618C27C313947DEB005E47FA /* ppc */ = {
isa = PBXGroup;
children = (
619A51F31391DC75001AAD40 /* alignment.h */,
619A51F41391DC75001AAD40 /* asm_help.h */,
619A51F51391DC75001AAD40 /* basic_regs.h */,
619A51F61391DC75001AAD40 /* byte_order.h */,
619A51F71391DC75001AAD40 /* cframe.h */,
619A51F81391DC75001AAD40 /* fenv.h */,
619A51F91391DC75001AAD40 /* fp_regs.h */,
619A51FA1391DC75001AAD40 /* macro_help.h */,
619A51FB1391DC75001AAD40 /* math.h */,
619A51FC1391DC75001AAD40 /* mode_independent_asm.h */,
619A51FD1391DC75001AAD40 /* pseudo_inst.h */,
619A51FE1391DC75001AAD40 /* reg_help.h */,
618C27C413947DEB005E47FA /* alignment.h */,
618C27C513947DEB005E47FA /* asm_help.h */,
618C27C613947DEB005E47FA /* basic_regs.h */,
618C27C713947DEB005E47FA /* byte_order.h */,
618C27C813947DEB005E47FA /* cframe.h */,
618C27C913947DEB005E47FA /* fenv.h */,
618C27CA13947DEB005E47FA /* fp_regs.h */,
618C27CB13947DEB005E47FA /* macro_help.h */,
618C27CC13947DEB005E47FA /* math.h */,
618C27CD13947DEB005E47FA /* mode_independent_asm.h */,
618C27CE13947DEB005E47FA /* pseudo_inst.h */,
618C27CF13947DEB005E47FA /* reg_help.h */,
);
path = ppc;
sourceTree = "<group>";
};
619A52011391DC75001AAD40 /* device */ = {
618C27D213947DEB005E47FA /* device */ = {
isa = PBXGroup;
children = (
619A52021391DC75001AAD40 /* device_port.h */,
619A52031391DC75001AAD40 /* device_types.h */,
618C27D313947DEB005E47FA /* device_port.h */,
618C27D413947DEB005E47FA /* device_types.h */,
);
path = device;
sourceTree = "<group>";
};
619A52061391DC75001AAD40 /* hfs */ = {
618C27D713947DEB005E47FA /* hfs */ = {
isa = PBXGroup;
children = (
619A52071391DC75001AAD40 /* hfs_encodings.h */,
619A52081391DC75001AAD40 /* hfs_format.h */,
619A52091391DC75001AAD40 /* hfs_mount.h */,
618C27D813947DEB005E47FA /* hfs_encodings.h */,
618C27D913947DEB005E47FA /* hfs_format.h */,
618C27DA13947DEB005E47FA /* hfs_mount.h */,
);
path = hfs;
sourceTree = "<group>";
};
619A520A1391DC75001AAD40 /* i386 */ = {
618C27DB13947DEB005E47FA /* i386 */ = {
isa = PBXGroup;
children = (
619A520B1391DC75001AAD40 /* _limits.h */,
619A520C1391DC75001AAD40 /* _param.h */,
619A520D1391DC75001AAD40 /* _structs.h */,
619A520E1391DC75001AAD40 /* _types.h */,
619A520F1391DC75001AAD40 /* eflags.h */,
619A52101391DC75001AAD40 /* endian.h */,
619A52111391DC75001AAD40 /* fasttrap_isa.h */,
619A52121391DC75001AAD40 /* limits.h */,
619A52131391DC75001AAD40 /* param.h */,
619A52141391DC75001AAD40 /* profile.h */,
619A52151391DC75001AAD40 /* setjmp.h */,
619A52161391DC75001AAD40 /* signal.h */,
619A52171391DC75001AAD40 /* types.h */,
619A52181391DC75001AAD40 /* user_ldt.h */,
619A52191391DC75001AAD40 /* vmparam.h */,
618C27DC13947DEB005E47FA /* _limits.h */,
618C27DD13947DEB005E47FA /* _param.h */,
618C27DE13947DEB005E47FA /* _structs.h */,
618C27DF13947DEB005E47FA /* _types.h */,
618C27E013947DEB005E47FA /* eflags.h */,
618C27E113947DEB005E47FA /* endian.h */,
618C27E213947DEB005E47FA /* fasttrap_isa.h */,
618C27E313947DEB005E47FA /* limits.h */,
618C27E413947DEB005E47FA /* param.h */,
618C27E513947DEB005E47FA /* profile.h */,
618C27E613947DEB005E47FA /* setjmp.h */,
618C27E713947DEB005E47FA /* signal.h */,
618C27E813947DEB005E47FA /* types.h */,
618C27E913947DEB005E47FA /* user_ldt.h */,
618C27EA13947DEB005E47FA /* vmparam.h */,
);
path = i386;
sourceTree = "<group>";
};
619A521B1391DC75001AAD40 /* IOKit */ = {
618C27EC13947DEB005E47FA /* IOKit */ = {
isa = PBXGroup;
children = (
619A521C1391DC75001AAD40 /* acpi */,
619A52201391DC75001AAD40 /* assert.h */,
619A52211391DC75001AAD40 /* ata */,
619A522E1391DC75001AAD40 /* audio */,
619A523C1391DC75001AAD40 /* avc */,
619A52441391DC75001AAD40 /* bluetooth */,
619A524D1391DC75001AAD40 /* firewire */,
619A526E1391DC75001AAD40 /* graphics */,
619A527A1391DC75001AAD40 /* hid */,
619A52801391DC75001AAD40 /* hidevent */,
619A52831391DC75001AAD40 /* hidsystem */,
619A52901391DC75001AAD40 /* i2c */,
619A52921391DC75001AAD40 /* IOBSD.h */,
619A52931391DC75001AAD40 /* IOBufferMemoryDescriptor.h */,
619A52941391DC75001AAD40 /* IOCatalogue.h */,
619A52951391DC75001AAD40 /* IOCommand.h */,
619A52961391DC75001AAD40 /* IOCommandGate.h */,
619A52971391DC75001AAD40 /* IOCommandPool.h */,
619A52981391DC75001AAD40 /* IOConditionLock.h */,
619A52991391DC75001AAD40 /* IODataQueue.h */,
619A529A1391DC75001AAD40 /* IODataQueueShared.h */,
619A529B1391DC75001AAD40 /* IODeviceMemory.h */,
619A529C1391DC75001AAD40 /* IODeviceTreeSupport.h */,
619A529D1391DC75001AAD40 /* IODMACommand.h */,
619A529E1391DC75001AAD40 /* IODMAController.h */,
619A529F1391DC75001AAD40 /* IODMAEventSource.h */,
619A52A01391DC75001AAD40 /* IOEventSource.h */,
619A52A11391DC75001AAD40 /* IOFilterInterruptEventSource.h */,
619A52A21391DC75001AAD40 /* IOInterleavedMemoryDescriptor.h */,
619A52A31391DC75001AAD40 /* IOInterruptController.h */,
619A52A41391DC75001AAD40 /* IOInterruptEventSource.h */,
619A52A51391DC75001AAD40 /* IOInterrupts.h */,
619A52A61391DC75001AAD40 /* IOKitDebug.h */,
619A52A71391DC75001AAD40 /* IOKitKeys.h */,
619A52A81391DC75001AAD40 /* IOKitServer.h */,
619A52A91391DC75001AAD40 /* IOLib.h */,
619A52AA1391DC75001AAD40 /* IOLocks.h */,
619A52AB1391DC75001AAD40 /* IOMapper.h */,
619A52AC1391DC75001AAD40 /* IOMemoryCursor.h */,
619A52AD1391DC75001AAD40 /* IOMemoryDescriptor.h */,
619A52AE1391DC75001AAD40 /* IOMessage.h */,
619A52AF1391DC75001AAD40 /* IOMultiMemoryDescriptor.h */,
619A52B01391DC75001AAD40 /* IONotifier.h */,
619A52B11391DC75001AAD40 /* IONVRAM.h */,
619A52B21391DC75001AAD40 /* IOPlatformExpert.h */,
619A52B31391DC75001AAD40 /* IORangeAllocator.h */,
619A52B41391DC75001AAD40 /* IORegistryEntry.h */,
619A52B51391DC75001AAD40 /* IOReturn.h */,
619A52B61391DC75001AAD40 /* IOService.h */,
619A52B71391DC75001AAD40 /* IOServicePM.h */,
619A52B81391DC75001AAD40 /* IOSharedDataQueue.h */,
619A52B91391DC75001AAD40 /* IOSharedLock.h */,
619A52BA1391DC75001AAD40 /* IOSubMemoryDescriptor.h */,
619A52BB1391DC75001AAD40 /* IOSyncer.h */,
619A52BC1391DC75001AAD40 /* IOTimerEventSource.h */,
619A52BD1391DC75001AAD40 /* IOTimeStamp.h */,
619A52BE1391DC75001AAD40 /* IOTypes.h */,
619A52BF1391DC75001AAD40 /* IOUserClient.h */,
619A52C01391DC75001AAD40 /* IOWorkLoop.h */,
619A52C11391DC75001AAD40 /* ndrvsupport */,
619A52C71391DC75001AAD40 /* network */,
619A52D61391DC75001AAD40 /* nvram */,
619A52D81391DC75001AAD40 /* OSMessageNotification.h */,
619A52D91391DC75001AAD40 /* pci */,
619A52DD1391DC75001AAD40 /* platform */,
619A52E21391DC75001AAD40 /* power */,
619A52E41391DC75001AAD40 /* ppc */,
619A52E61391DC75001AAD40 /* pwr_mgt */,
619A52F01391DC75001AAD40 /* rtc */,
619A52F21391DC75001AAD40 /* sbp2 */,
619A52FC1391DC75001AAD40 /* scsi */,
619A53181391DC75001AAD40 /* serial */,
619A531E1391DC75001AAD40 /* storage */,
619A53401391DC75001AAD40 /* stream */,
619A53451391DC75001AAD40 /* system.h */,
619A53461391DC75001AAD40 /* system_management */,
619A53481391DC75001AAD40 /* usb */,
618C27ED13947DEB005E47FA /* acpi */,
618C27F113947DEB005E47FA /* assert.h */,
618C27F213947DEB005E47FA /* ata */,
618C27FF13947DEB005E47FA /* audio */,
618C280D13947DEB005E47FA /* avc */,
618C281513947DEB005E47FA /* bluetooth */,
618C281E13947DEB005E47FA /* firewire */,
618C283F13947DEB005E47FA /* graphics */,
618C284B13947DEB005E47FA /* hid */,
618C285113947DEB005E47FA /* hidevent */,
618C285413947DEB005E47FA /* hidsystem */,
618C286113947DEB005E47FA /* i2c */,
618C286313947DEB005E47FA /* IOBSD.h */,
618C286413947DEB005E47FA /* IOBufferMemoryDescriptor.h */,
618C286513947DEB005E47FA /* IOCatalogue.h */,
618C286613947DEB005E47FA /* IOCommand.h */,
618C286713947DEB005E47FA /* IOCommandGate.h */,
618C286813947DEB005E47FA /* IOCommandPool.h */,
618C286913947DEB005E47FA /* IOConditionLock.h */,
618C286A13947DEB005E47FA /* IODataQueue.h */,
618C286B13947DEB005E47FA /* IODataQueueShared.h */,
618C286C13947DEB005E47FA /* IODeviceMemory.h */,
618C286D13947DEB005E47FA /* IODeviceTreeSupport.h */,
618C286E13947DEB005E47FA /* IODMACommand.h */,
618C286F13947DEB005E47FA /* IODMAController.h */,
618C287013947DEB005E47FA /* IODMAEventSource.h */,
618C287113947DEB005E47FA /* IOEventSource.h */,
618C287213947DEB005E47FA /* IOFilterInterruptEventSource.h */,
618C287313947DEB005E47FA /* IOInterleavedMemoryDescriptor.h */,
618C287413947DEB005E47FA /* IOInterruptController.h */,
618C287513947DEB005E47FA /* IOInterruptEventSource.h */,
618C287613947DEB005E47FA /* IOInterrupts.h */,
618C287713947DEB005E47FA /* IOKitDebug.h */,
618C287813947DEB005E47FA /* IOKitKeys.h */,
618C287913947DEB005E47FA /* IOKitServer.h */,
618C287A13947DEB005E47FA /* IOLib.h */,
618C287B13947DEB005E47FA /* IOLocks.h */,
618C287C13947DEB005E47FA /* IOMapper.h */,
618C287D13947DEB005E47FA /* IOMemoryCursor.h */,
618C287E13947DEB005E47FA /* IOMemoryDescriptor.h */,
618C287F13947DEB005E47FA /* IOMessage.h */,
618C288013947DEB005E47FA /* IOMultiMemoryDescriptor.h */,
618C288113947DEB005E47FA /* IONotifier.h */,
618C288213947DEB005E47FA /* IONVRAM.h */,
618C288313947DEB005E47FA /* IOPlatformExpert.h */,
618C288413947DEB005E47FA /* IORangeAllocator.h */,
618C288513947DEB005E47FA /* IORegistryEntry.h */,
618C288613947DEB005E47FA /* IOReturn.h */,
618C288713947DEB005E47FA /* IOService.h */,
618C288813947DEB005E47FA /* IOServicePM.h */,
618C288913947DEB005E47FA /* IOSharedDataQueue.h */,
618C288A13947DEB005E47FA /* IOSharedLock.h */,
618C288B13947DEB005E47FA /* IOSubMemoryDescriptor.h */,
618C288C13947DEB005E47FA /* IOSyncer.h */,
618C288D13947DEB005E47FA /* IOTimerEventSource.h */,
618C288E13947DEB005E47FA /* IOTimeStamp.h */,
618C288F13947DEB005E47FA /* IOTypes.h */,
618C289013947DEB005E47FA /* IOUserClient.h */,
618C289113947DEB005E47FA /* IOWorkLoop.h */,
618C289213947DEB005E47FA /* ndrvsupport */,
618C289813947DEB005E47FA /* network */,
618C28A713947DEB005E47FA /* nvram */,
618C28A913947DEB005E47FA /* OSMessageNotification.h */,
618C28AA13947DEB005E47FA /* pci */,
618C28AE13947DEB005E47FA /* platform */,
618C28B313947DEB005E47FA /* power */,
618C28B513947DEB005E47FA /* ppc */,
618C28B713947DEB005E47FA /* pwr_mgt */,
618C28C113947DEB005E47FA /* rtc */,
618C28C313947DEB005E47FA /* sbp2 */,
618C28CD13947DEB005E47FA /* scsi */,
618C28E913947DEB005E47FA /* serial */,
618C28EF13947DEB005E47FA /* storage */,
618C291113947DEB005E47FA /* stream */,
618C291613947DEB005E47FA /* system.h */,
618C291713947DEB005E47FA /* system_management */,
618C291913947DEB005E47FA /* usb */,
);
path = IOKit;
sourceTree = "<group>";
};
619A521C1391DC75001AAD40 /* acpi */ = {
618C27ED13947DEB005E47FA /* acpi */ = {
isa = PBXGroup;
children = (
619A521D1391DC75001AAD40 /* IOACPIPlatformDevice.h */,
619A521E1391DC75001AAD40 /* IOACPIPlatformExpert.h */,
619A521F1391DC75001AAD40 /* IOACPITypes.h */,
618C27EE13947DEB005E47FA /* IOACPIPlatformDevice.h */,
618C27EF13947DEB005E47FA /* IOACPIPlatformExpert.h */,
618C27F013947DEB005E47FA /* IOACPITypes.h */,
);
path = acpi;
sourceTree = "<group>";
};
619A52211391DC75001AAD40 /* ata */ = {
618C27F213947DEB005E47FA /* ata */ = {
isa = PBXGroup;
children = (
619A52221391DC75001AAD40 /* ATADeviceNub.h */,
619A52231391DC75001AAD40 /* ATATimerEventSource.h */,
619A52241391DC75001AAD40 /* IOATABusCommand.h */,
619A52251391DC75001AAD40 /* IOATABusInfo.h */,
619A52261391DC75001AAD40 /* IOATACommand.h */,
619A52271391DC75001AAD40 /* IOATAController.h */,
619A52281391DC75001AAD40 /* IOATADevConfig.h */,
619A52291391DC75001AAD40 /* IOATADevice.h */,
619A522A1391DC75001AAD40 /* IOATARegI386.h */,
619A522B1391DC75001AAD40 /* IOATATypes.h */,
619A522C1391DC75001AAD40 /* IOPCIATA.h */,
619A522D1391DC75001AAD40 /* MacIOATA.h */,
618C27F313947DEB005E47FA /* ATADeviceNub.h */,
618C27F413947DEB005E47FA /* ATATimerEventSource.h */,
618C27F513947DEB005E47FA /* IOATABusCommand.h */,
618C27F613947DEB005E47FA /* IOATABusInfo.h */,
618C27F713947DEB005E47FA /* IOATACommand.h */,
618C27F813947DEB005E47FA /* IOATAController.h */,
618C27F913947DEB005E47FA /* IOATADevConfig.h */,
618C27FA13947DEB005E47FA /* IOATADevice.h */,
618C27FB13947DEB005E47FA /* IOATARegI386.h */,
618C27FC13947DEB005E47FA /* IOATATypes.h */,
618C27FD13947DEB005E47FA /* IOPCIATA.h */,
618C27FE13947DEB005E47FA /* MacIOATA.h */,
);
path = ata;
sourceTree = "<group>";
};
619A522E1391DC75001AAD40 /* audio */ = {
618C27FF13947DEB005E47FA /* audio */ = {
isa = PBXGroup;
children = (
619A522F1391DC75001AAD40 /* IOAudioControl.h */,
619A52301391DC75001AAD40 /* IOAudioControlUserClient.h */,
619A52311391DC75001AAD40 /* IOAudioDebug.h */,
619A52321391DC75001AAD40 /* IOAudioDefines.h */,
619A52331391DC75001AAD40 /* IOAudioDevice.h */,
619A52341391DC75001AAD40 /* IOAudioEngine.h */,
619A52351391DC75001AAD40 /* IOAudioEngineUserClient.h */,
619A52361391DC75001AAD40 /* IOAudioLevelControl.h */,
619A52371391DC75001AAD40 /* IOAudioPort.h */,
619A52381391DC75001AAD40 /* IOAudioSelectorControl.h */,
619A52391391DC75001AAD40 /* IOAudioStream.h */,
619A523A1391DC75001AAD40 /* IOAudioToggleControl.h */,
619A523B1391DC75001AAD40 /* IOAudioTypes.h */,
618C280013947DEB005E47FA /* IOAudioControl.h */,
618C280113947DEB005E47FA /* IOAudioControlUserClient.h */,
618C280213947DEB005E47FA /* IOAudioDebug.h */,
618C280313947DEB005E47FA /* IOAudioDefines.h */,
618C280413947DEB005E47FA /* IOAudioDevice.h */,
618C280513947DEB005E47FA /* IOAudioEngine.h */,
618C280613947DEB005E47FA /* IOAudioEngineUserClient.h */,
618C280713947DEB005E47FA /* IOAudioLevelControl.h */,
618C280813947DEB005E47FA /* IOAudioPort.h */,
618C280913947DEB005E47FA /* IOAudioSelectorControl.h */,
618C280A13947DEB005E47FA /* IOAudioStream.h */,
618C280B13947DEB005E47FA /* IOAudioToggleControl.h */,
618C280C13947DEB005E47FA /* IOAudioTypes.h */,
);
path = audio;
sourceTree = "<group>";
};
619A523C1391DC75001AAD40 /* avc */ = {
618C280D13947DEB005E47FA /* avc */ = {
isa = PBXGroup;
children = (
619A523D1391DC75001AAD40 /* IOFireWireAVCCommand.h */,
619A523E1391DC75001AAD40 /* IOFireWireAVCConsts.h */,
619A523F1391DC75001AAD40 /* IOFireWireAVCRequestSpace.h */,
619A52401391DC75001AAD40 /* IOFireWireAVCTargetSpace.h */,
619A52411391DC75001AAD40 /* IOFireWireAVCUnit.h */,
619A52421391DC75001AAD40 /* IOFireWireAVCUserClientCommon.h */,
619A52431391DC75001AAD40 /* IOFireWirePCRSpace.h */,
618C280E13947DEB005E47FA /* IOFireWireAVCCommand.h */,
618C280F13947DEB005E47FA /* IOFireWireAVCConsts.h */,
618C281013947DEB005E47FA /* IOFireWireAVCRequestSpace.h */,
618C281113947DEB005E47FA /* IOFireWireAVCTargetSpace.h */,
618C281213947DEB005E47FA /* IOFireWireAVCUnit.h */,
618C281313947DEB005E47FA /* IOFireWireAVCUserClientCommon.h */,
618C281413947DEB005E47FA /* IOFireWirePCRSpace.h */,
);
path = avc;
sourceTree = "<group>";
};
619A52441391DC75001AAD40 /* bluetooth */ = {
618C281513947DEB005E47FA /* bluetooth */ = {
isa = PBXGroup;
children = (
619A52451391DC75001AAD40 /* Bluetooth.h */,
619A52461391DC75001AAD40 /* BluetoothAssignedNumbers.h */,
619A52471391DC75001AAD40 /* IOBluetoothHCIController.h */,
619A52481391DC75001AAD40 /* IOBluetoothHCIRequest.h */,
619A52491391DC75001AAD40 /* IOBluetoothHIDDriver.h */,
619A524A1391DC75001AAD40 /* IOBluetoothHIDDriverTypes.h */,
619A524B1391DC75001AAD40 /* IOBluetoothInternal.h */,
619A524C1391DC75001AAD40 /* IOBluetoothTypes.h */,
618C281613947DEB005E47FA /* Bluetooth.h */,
618C281713947DEB005E47FA /* BluetoothAssignedNumbers.h */,
618C281813947DEB005E47FA /* IOBluetoothHCIController.h */,
618C281913947DEB005E47FA /* IOBluetoothHCIRequest.h */,
618C281A13947DEB005E47FA /* IOBluetoothHIDDriver.h */,
618C281B13947DEB005E47FA /* IOBluetoothHIDDriverTypes.h */,
618C281C13947DEB005E47FA /* IOBluetoothInternal.h */,
618C281D13947DEB005E47FA /* IOBluetoothTypes.h */,
);
path = bluetooth;
sourceTree = "<group>";
};
619A524D1391DC75001AAD40 /* firewire */ = {
618C281E13947DEB005E47FA /* firewire */ = {
isa = PBXGroup;
children = (
619A524E1391DC75001AAD40 /* IOConfigDirectory.h */,
619A524F1391DC75001AAD40 /* IOFireWireBus.h */,
619A52501391DC75001AAD40 /* IOFireWireController.h */,
619A52511391DC75001AAD40 /* IOFireWireDevice.h */,
619A52521391DC75001AAD40 /* IOFireWireFamilyCommon.h */,
619A52531391DC75001AAD40 /* IOFireWireIRMAllocation.h */,
619A52541391DC75001AAD40 /* IOFireWireLocalNode.h */,
619A52551391DC75001AAD40 /* IOFireWireMultiIsochReceive.h */,
619A52561391DC75001AAD40 /* IOFireWireNub.h */,
619A52571391DC75001AAD40 /* IOFireWirePowerManager.h */,
619A52581391DC75001AAD40 /* IOFireWireUnit.h */,
619A52591391DC75001AAD40 /* IOFWAddressSpace.h */,
619A525A1391DC75001AAD40 /* IOFWAsyncStreamListener.h */,
619A525B1391DC75001AAD40 /* IOFWCommand.h */,
619A525C1391DC75001AAD40 /* IOFWDCL.h */,
619A525D1391DC75001AAD40 /* IOFWDCLPool.h */,
619A525E1391DC75001AAD40 /* IOFWDCLProgram.h */,
619A525F1391DC75001AAD40 /* IOFWDCLTranslator.h */,
619A52601391DC75001AAD40 /* IOFWIsochChannel.h */,
619A52611391DC75001AAD40 /* IOFWIsochPort.h */,
619A52621391DC75001AAD40 /* IOFWLocalIsochPort.h */,
619A52631391DC75001AAD40 /* IOFWPHYPacketListener.h */,
619A52641391DC75001AAD40 /* IOFWPhysicalAddressSpace.h */,
619A52651391DC75001AAD40 /* IOFWPseudoAddressSpace.h */,
619A52661391DC75001AAD40 /* IOFWRegs.h */,
619A52671391DC75001AAD40 /* IOFWSimpleContiguousPhysicalAddressSpace.h */,
619A52681391DC75001AAD40 /* IOFWSimplePhysicalAddressSpace.h */,
619A52691391DC75001AAD40 /* IOFWSyncer.h */,
619A526A1391DC75001AAD40 /* IOFWUserObjectExporter.h */,
619A526B1391DC75001AAD40 /* IOFWUtils.h */,
619A526C1391DC75001AAD40 /* IOLocalConfigDirectory.h */,
619A526D1391DC75001AAD40 /* IORemoteConfigDirectory.h */,
618C281F13947DEB005E47FA /* IOConfigDirectory.h */,
618C282013947DEB005E47FA /* IOFireWireBus.h */,
618C282113947DEB005E47FA /* IOFireWireController.h */,
618C282213947DEB005E47FA /* IOFireWireDevice.h */,
618C282313947DEB005E47FA /* IOFireWireFamilyCommon.h */,
618C282413947DEB005E47FA /* IOFireWireIRMAllocation.h */,
618C282513947DEB005E47FA /* IOFireWireLocalNode.h */,
618C282613947DEB005E47FA /* IOFireWireMultiIsochReceive.h */,
618C282713947DEB005E47FA /* IOFireWireNub.h */,
618C282813947DEB005E47FA /* IOFireWirePowerManager.h */,
618C282913947DEB005E47FA /* IOFireWireUnit.h */,
618C282A13947DEB005E47FA /* IOFWAddressSpace.h */,
618C282B13947DEB005E47FA /* IOFWAsyncStreamListener.h */,
618C282C13947DEB005E47FA /* IOFWCommand.h */,
618C282D13947DEB005E47FA /* IOFWDCL.h */,
618C282E13947DEB005E47FA /* IOFWDCLPool.h */,
618C282F13947DEB005E47FA /* IOFWDCLProgram.h */,
618C283013947DEB005E47FA /* IOFWDCLTranslator.h */,
618C283113947DEB005E47FA /* IOFWIsochChannel.h */,
618C283213947DEB005E47FA /* IOFWIsochPort.h */,
618C283313947DEB005E47FA /* IOFWLocalIsochPort.h */,
618C283413947DEB005E47FA /* IOFWPHYPacketListener.h */,
618C283513947DEB005E47FA /* IOFWPhysicalAddressSpace.h */,
618C283613947DEB005E47FA /* IOFWPseudoAddressSpace.h */,
618C283713947DEB005E47FA /* IOFWRegs.h */,
618C283813947DEB005E47FA /* IOFWSimpleContiguousPhysicalAddressSpace.h */,
618C283913947DEB005E47FA /* IOFWSimplePhysicalAddressSpace.h */,
618C283A13947DEB005E47FA /* IOFWSyncer.h */,
618C283B13947DEB005E47FA /* IOFWUserObjectExporter.h */,
618C283C13947DEB005E47FA /* IOFWUtils.h */,
618C283D13947DEB005E47FA /* IOLocalConfigDirectory.h */,
618C283E13947DEB005E47FA /* IORemoteConfigDirectory.h */,
);
path = firewire;
sourceTree = "<group>";
};
619A526E1391DC75001AAD40 /* graphics */ = {
618C283F13947DEB005E47FA /* graphics */ = {
isa = PBXGroup;
children = (
619A526F1391DC75001AAD40 /* IOAccelClientConnect.h */,
619A52701391DC75001AAD40 /* IOAccelerator.h */,
619A52711391DC75001AAD40 /* IOAccelSurfaceConnect.h */,
619A52721391DC75001AAD40 /* IOAccelTypes.h */,
619A52731391DC75001AAD40 /* IODisplay.h */,
619A52741391DC75001AAD40 /* IOFramebuffer.h */,
619A52751391DC75001AAD40 /* IOFramebufferShared.h */,
619A52761391DC75001AAD40 /* IOGraphicsDevice.h */,
619A52771391DC75001AAD40 /* IOGraphicsEngine.h */,
619A52781391DC75001AAD40 /* IOGraphicsInterfaceTypes.h */,
619A52791391DC75001AAD40 /* IOGraphicsTypes.h */,
618C284013947DEB005E47FA /* IOAccelClientConnect.h */,
618C284113947DEB005E47FA /* IOAccelerator.h */,
618C284213947DEB005E47FA /* IOAccelSurfaceConnect.h */,
618C284313947DEB005E47FA /* IOAccelTypes.h */,
618C284413947DEB005E47FA /* IODisplay.h */,
618C284513947DEB005E47FA /* IOFramebuffer.h */,
618C284613947DEB005E47FA /* IOFramebufferShared.h */,
618C284713947DEB005E47FA /* IOGraphicsDevice.h */,
618C284813947DEB005E47FA /* IOGraphicsEngine.h */,
618C284913947DEB005E47FA /* IOGraphicsInterfaceTypes.h */,
618C284A13947DEB005E47FA /* IOGraphicsTypes.h */,
);
path = graphics;
sourceTree = "<group>";
};
619A527A1391DC75001AAD40 /* hid */ = {
618C284B13947DEB005E47FA /* hid */ = {
isa = PBXGroup;
children = (
619A527B1391DC75001AAD40 /* IOHIDDevice.h */,
619A527C1391DC75001AAD40 /* IOHIDElement.h */,
619A527D1391DC75001AAD40 /* IOHIDInterface.h */,
619A527E1391DC75001AAD40 /* IOHIDKeys.h */,
619A527F1391DC75001AAD40 /* IOHIDUsageTables.h */,
618C284C13947DEB005E47FA /* IOHIDDevice.h */,
618C284D13947DEB005E47FA /* IOHIDElement.h */,
618C284E13947DEB005E47FA /* IOHIDInterface.h */,
618C284F13947DEB005E47FA /* IOHIDKeys.h */,
618C285013947DEB005E47FA /* IOHIDUsageTables.h */,
);
path = hid;
sourceTree = "<group>";
};
619A52801391DC75001AAD40 /* hidevent */ = {
618C285113947DEB005E47FA /* hidevent */ = {
isa = PBXGroup;
children = (
619A52811391DC75001AAD40 /* IOHIDEventDriver.h */,
619A52821391DC75001AAD40 /* IOHIDEventService.h */,
618C285213947DEB005E47FA /* IOHIDEventDriver.h */,
618C285313947DEB005E47FA /* IOHIDEventService.h */,
);
path = hidevent;
sourceTree = "<group>";
};
619A52831391DC75001AAD40 /* hidsystem */ = {
618C285413947DEB005E47FA /* hidsystem */ = {
isa = PBXGroup;
children = (
619A52841391DC75001AAD40 /* ev_keymap.h */,
619A52851391DC75001AAD40 /* IOHIDDescriptorParser.h */,
619A52861391DC75001AAD40 /* IOHIDevice.h */,
619A52871391DC75001AAD40 /* IOHIDParameter.h */,
619A52881391DC75001AAD40 /* IOHIDShared.h */,
619A52891391DC75001AAD40 /* IOHIDSystem.h */,
619A528A1391DC75001AAD40 /* IOHIDTypes.h */,
619A528B1391DC75001AAD40 /* IOHIDUsageTables.h */,
619A528C1391DC75001AAD40 /* IOHIKeyboard.h */,
619A528D1391DC75001AAD40 /* IOHIKeyboardMapper.h */,
619A528E1391DC75001AAD40 /* IOHIPointing.h */,
619A528F1391DC75001AAD40 /* IOLLEvent.h */,
618C285513947DEB005E47FA /* ev_keymap.h */,
618C285613947DEB005E47FA /* IOHIDDescriptorParser.h */,
618C285713947DEB005E47FA /* IOHIDevice.h */,
618C285813947DEB005E47FA /* IOHIDParameter.h */,
618C285913947DEB005E47FA /* IOHIDShared.h */,
618C285A13947DEB005E47FA /* IOHIDSystem.h */,
618C285B13947DEB005E47FA /* IOHIDTypes.h */,
618C285C13947DEB005E47FA /* IOHIDUsageTables.h */,
618C285D13947DEB005E47FA /* IOHIKeyboard.h */,
618C285E13947DEB005E47FA /* IOHIKeyboardMapper.h */,
618C285F13947DEB005E47FA /* IOHIPointing.h */,
618C286013947DEB005E47FA /* IOLLEvent.h */,
);
path = hidsystem;
sourceTree = "<group>";
};
619A52901391DC75001AAD40 /* i2c */ = {
618C286113947DEB005E47FA /* i2c */ = {
isa = PBXGroup;
children = (
619A52911391DC75001AAD40 /* IOI2CInterface.h */,
618C286213947DEB005E47FA /* IOI2CInterface.h */,
);
path = i2c;
sourceTree = "<group>";
};
619A52C11391DC75001AAD40 /* ndrvsupport */ = {
618C289213947DEB005E47FA /* ndrvsupport */ = {
isa = PBXGroup;
children = (
619A52C21391DC75001AAD40 /* IOMacOSTypes.h */,
619A52C31391DC75001AAD40 /* IOMacOSVideo.h */,
619A52C41391DC75001AAD40 /* IONDRVFramebuffer.h */,
619A52C51391DC75001AAD40 /* IONDRVLibraries.h */,
619A52C61391DC75001AAD40 /* IONDRVSupport.h */,
618C289313947DEB005E47FA /* IOMacOSTypes.h */,
618C289413947DEB005E47FA /* IOMacOSVideo.h */,
618C289513947DEB005E47FA /* IONDRVFramebuffer.h */,
618C289613947DEB005E47FA /* IONDRVLibraries.h */,
618C289713947DEB005E47FA /* IONDRVSupport.h */,
);
path = ndrvsupport;
sourceTree = "<group>";
};
619A52C71391DC75001AAD40 /* network */ = {
618C289813947DEB005E47FA /* network */ = {
isa = PBXGroup;
children = (
619A52C81391DC75001AAD40 /* IOBasicOutputQueue.h */,
619A52C91391DC75001AAD40 /* IOEthernetController.h */,
619A52CA1391DC75001AAD40 /* IOEthernetInterface.h */,
619A52CB1391DC75001AAD40 /* IOEthernetStats.h */,
619A52CC1391DC75001AAD40 /* IOGatedOutputQueue.h */,
619A52CD1391DC75001AAD40 /* IOKernelDebugger.h */,
619A52CE1391DC75001AAD40 /* IOMbufMemoryCursor.h */,
619A52CF1391DC75001AAD40 /* IONetworkController.h */,
619A52D01391DC75001AAD40 /* IONetworkData.h */,
619A52D11391DC75001AAD40 /* IONetworkInterface.h */,
619A52D21391DC75001AAD40 /* IONetworkMedium.h */,
619A52D31391DC75001AAD40 /* IONetworkStats.h */,
619A52D41391DC75001AAD40 /* IOOutputQueue.h */,
619A52D51391DC75001AAD40 /* IOPacketQueue.h */,
618C289913947DEB005E47FA /* IOBasicOutputQueue.h */,
618C289A13947DEB005E47FA /* IOEthernetController.h */,
618C289B13947DEB005E47FA /* IOEthernetInterface.h */,
618C289C13947DEB005E47FA /* IOEthernetStats.h */,
618C289D13947DEB005E47FA /* IOGatedOutputQueue.h */,
618C289E13947DEB005E47FA /* IOKernelDebugger.h */,
618C289F13947DEB005E47FA /* IOMbufMemoryCursor.h */,
618C28A013947DEB005E47FA /* IONetworkController.h */,
618C28A113947DEB005E47FA /* IONetworkData.h */,
618C28A213947DEB005E47FA /* IONetworkInterface.h */,
618C28A313947DEB005E47FA /* IONetworkMedium.h */,
618C28A413947DEB005E47FA /* IONetworkStats.h */,
618C28A513947DEB005E47FA /* IOOutputQueue.h */,
618C28A613947DEB005E47FA /* IOPacketQueue.h */,
);
path = network;
sourceTree = "<group>";
};
619A52D61391DC75001AAD40 /* nvram */ = {
618C28A713947DEB005E47FA /* nvram */ = {
isa = PBXGroup;
children = (
619A52D71391DC75001AAD40 /* IONVRAMController.h */,
618C28A813947DEB005E47FA /* IONVRAMController.h */,
);
path = nvram;
sourceTree = "<group>";
};
619A52D91391DC75001AAD40 /* pci */ = {
618C28AA13947DEB005E47FA /* pci */ = {
isa = PBXGroup;
children = (
619A52DA1391DC75001AAD40 /* IOAGPDevice.h */,
619A52DB1391DC75001AAD40 /* IOPCIBridge.h */,
619A52DC1391DC75001AAD40 /* IOPCIDevice.h */,
618C28AB13947DEB005E47FA /* IOAGPDevice.h */,
618C28AC13947DEB005E47FA /* IOPCIBridge.h */,
618C28AD13947DEB005E47FA /* IOPCIDevice.h */,
);
path = pci;
sourceTree = "<group>";
};
619A52DD1391DC75001AAD40 /* platform */ = {
618C28AE13947DEB005E47FA /* platform */ = {
isa = PBXGroup;
children = (
619A52DE1391DC75001AAD40 /* AppleMacIO.h */,
619A52DF1391DC75001AAD40 /* AppleMacIODevice.h */,
619A52E01391DC75001AAD40 /* AppleNMI.h */,
619A52E11391DC75001AAD40 /* ApplePlatformExpert.h */,
618C28AF13947DEB005E47FA /* AppleMacIO.h */,
618C28B013947DEB005E47FA /* AppleMacIODevice.h */,
618C28B113947DEB005E47FA /* AppleNMI.h */,
618C28B213947DEB005E47FA /* ApplePlatformExpert.h */,
);
path = platform;
sourceTree = "<group>";
};
619A52E21391DC75001AAD40 /* power */ = {
618C28B313947DEB005E47FA /* power */ = {
isa = PBXGroup;
children = (
619A52E31391DC75001AAD40 /* IOPwrController.h */,
618C28B413947DEB005E47FA /* IOPwrController.h */,
);
path = power;
sourceTree = "<group>";
};
619A52E41391DC75001AAD40 /* ppc */ = {
618C28B513947DEB005E47FA /* ppc */ = {
isa = PBXGroup;
children = (
619A52E51391DC75001AAD40 /* IODBDMA.h */,
618C28B613947DEB005E47FA /* IODBDMA.h */,
);
path = ppc;
sourceTree = "<group>";
};
619A52E61391DC75001AAD40 /* pwr_mgt */ = {
618C28B713947DEB005E47FA /* pwr_mgt */ = {
isa = PBXGroup;
children = (
619A52E71391DC75001AAD40 /* IOPM.h */,
619A52E81391DC75001AAD40 /* IOPMDeprecated.h */,
619A52E91391DC75001AAD40 /* IOPMLibDefs.h */,
619A52EA1391DC75001AAD40 /* IOPMPowerSource.h */,
619A52EB1391DC75001AAD40 /* IOPMPowerSourceList.h */,
619A52EC1391DC75001AAD40 /* IOPMpowerState.h */,
619A52ED1391DC75001AAD40 /* IOPMPrivate.h */,
619A52EE1391DC75001AAD40 /* IOPowerConnection.h */,
619A52EF1391DC75001AAD40 /* RootDomain.h */,
618C28B813947DEB005E47FA /* IOPM.h */,
618C28B913947DEB005E47FA /* IOPMDeprecated.h */,
618C28BA13947DEB005E47FA /* IOPMLibDefs.h */,
618C28BB13947DEB005E47FA /* IOPMPowerSource.h */,
618C28BC13947DEB005E47FA /* IOPMPowerSourceList.h */,
618C28BD13947DEB005E47FA /* IOPMpowerState.h */,
618C28BE13947DEB005E47FA /* IOPMPrivate.h */,
618C28BF13947DEB005E47FA /* IOPowerConnection.h */,
618C28C013947DEB005E47FA /* RootDomain.h */,
);
path = pwr_mgt;
sourceTree = "<group>";
};
619A52F01391DC75001AAD40 /* rtc */ = {
618C28C113947DEB005E47FA /* rtc */ = {
isa = PBXGroup;
children = (
619A52F11391DC75001AAD40 /* IORTCController.h */,
618C28C213947DEB005E47FA /* IORTCController.h */,
);
path = rtc;
sourceTree = "<group>";
};
619A52F21391DC75001AAD40 /* sbp2 */ = {
618C28C313947DEB005E47FA /* sbp2 */ = {
isa = PBXGroup;
children = (
619A52F31391DC75001AAD40 /* IOFireWireSBP2Login.h */,
619A52F41391DC75001AAD40 /* IOFireWireSBP2LSIWorkaroundDescriptor.h */,
619A52F51391DC75001AAD40 /* IOFireWireSBP2LUN.h */,
619A52F61391DC75001AAD40 /* IOFireWireSBP2ManagementORB.h */,
619A52F71391DC75001AAD40 /* IOFireWireSBP2ORB.h */,
619A52F81391DC75001AAD40 /* IOFireWireSBP2Target.h */,
619A52F91391DC75001AAD40 /* IOFireWireSBP2UserClient.h */,
619A52FA1391DC75001AAD40 /* IOFireWireSBP2UserClientCommon.h */,
619A52FB1391DC75001AAD40 /* IOFireWireSerialBusProtocolTransport.h */,
618C28C413947DEB005E47FA /* IOFireWireSBP2Login.h */,
618C28C513947DEB005E47FA /* IOFireWireSBP2LSIWorkaroundDescriptor.h */,
618C28C613947DEB005E47FA /* IOFireWireSBP2LUN.h */,
618C28C713947DEB005E47FA /* IOFireWireSBP2ManagementORB.h */,
618C28C813947DEB005E47FA /* IOFireWireSBP2ORB.h */,
618C28C913947DEB005E47FA /* IOFireWireSBP2Target.h */,
618C28CA13947DEB005E47FA /* IOFireWireSBP2UserClient.h */,
618C28CB13947DEB005E47FA /* IOFireWireSBP2UserClientCommon.h */,
618C28CC13947DEB005E47FA /* IOFireWireSerialBusProtocolTransport.h */,
);
path = sbp2;
sourceTree = "<group>";
};
619A52FC1391DC75001AAD40 /* scsi */ = {
618C28CD13947DEB005E47FA /* scsi */ = {
isa = PBXGroup;
children = (
619A52FD1391DC75001AAD40 /* IOBDServices.h */,
619A52FE1391DC75001AAD40 /* IOBlockStorageServices.h */,
619A52FF1391DC75001AAD40 /* IOCompactDiscServices.h */,
619A53001391DC75001AAD40 /* IODVDServices.h */,
619A53011391DC75001AAD40 /* IOReducedBlockServices.h */,
619A53021391DC75001AAD40 /* IOSCSIBlockCommandsDevice.h */,
619A53031391DC75001AAD40 /* IOSCSIMultimediaCommandsDevice.h */,
619A53041391DC75001AAD40 /* IOSCSIPeripheralDeviceNub.h */,
619A53051391DC75001AAD40 /* IOSCSIPeripheralDeviceType00.h */,
619A53061391DC75001AAD40 /* IOSCSIPeripheralDeviceType05.h */,
619A53071391DC75001AAD40 /* IOSCSIPeripheralDeviceType07.h */,
619A53081391DC75001AAD40 /* IOSCSIPeripheralDeviceType0E.h */,
619A53091391DC75001AAD40 /* IOSCSIPrimaryCommandsDevice.h */,
619A530A1391DC75001AAD40 /* IOSCSIProtocolInterface.h */,
619A530B1391DC75001AAD40 /* IOSCSIProtocolServices.h */,
619A530C1391DC75001AAD40 /* IOSCSIReducedBlockCommandsDevice.h */,
619A530D1391DC75001AAD40 /* SCSICmds_INQUIRY_Definitions.h */,
619A530E1391DC75001AAD40 /* SCSICmds_MODE_Definitions.h */,
619A530F1391DC75001AAD40 /* SCSICmds_READ_CAPACITY_Definitions.h */,
619A53101391DC75001AAD40 /* SCSICmds_REPORT_LUNS_Definitions.h */,
619A53111391DC75001AAD40 /* SCSICmds_REQUEST_SENSE_Defs.h */,
619A53121391DC75001AAD40 /* SCSICommandDefinitions.h */,
619A53131391DC75001AAD40 /* SCSICommandOperationCodes.h */,
619A53141391DC75001AAD40 /* SCSIPort.h */,
619A53151391DC75001AAD40 /* SCSITask.h */,
619A53161391DC75001AAD40 /* spi */,
618C28CE13947DEB005E47FA /* IOBDServices.h */,
618C28CF13947DEB005E47FA /* IOBlockStorageServices.h */,
618C28D013947DEB005E47FA /* IOCompactDiscServices.h */,
618C28D113947DEB005E47FA /* IODVDServices.h */,
618C28D213947DEB005E47FA /* IOReducedBlockServices.h */,
618C28D313947DEB005E47FA /* IOSCSIBlockCommandsDevice.h */,
618C28D413947DEB005E47FA /* IOSCSIMultimediaCommandsDevice.h */,
618C28D513947DEB005E47FA /* IOSCSIPeripheralDeviceNub.h */,
618C28D613947DEB005E47FA /* IOSCSIPeripheralDeviceType00.h */,
618C28D713947DEB005E47FA /* IOSCSIPeripheralDeviceType05.h */,
618C28D813947DEB005E47FA /* IOSCSIPeripheralDeviceType07.h */,
618C28D913947DEB005E47FA /* IOSCSIPeripheralDeviceType0E.h */,
618C28DA13947DEB005E47FA /* IOSCSIPrimaryCommandsDevice.h */,
618C28DB13947DEB005E47FA /* IOSCSIProtocolInterface.h */,
618C28DC13947DEB005E47FA /* IOSCSIProtocolServices.h */,
618C28DD13947DEB005E47FA /* IOSCSIReducedBlockCommandsDevice.h */,
618C28DE13947DEB005E47FA /* SCSICmds_INQUIRY_Definitions.h */,
618C28DF13947DEB005E47FA /* SCSICmds_MODE_Definitions.h */,
618C28E013947DEB005E47FA /* SCSICmds_READ_CAPACITY_Definitions.h */,
618C28E113947DEB005E47FA /* SCSICmds_REPORT_LUNS_Definitions.h */,
618C28E213947DEB005E47FA /* SCSICmds_REQUEST_SENSE_Defs.h */,
618C28E313947DEB005E47FA /* SCSICommandDefinitions.h */,
618C28E413947DEB005E47FA /* SCSICommandOperationCodes.h */,
618C28E513947DEB005E47FA /* SCSIPort.h */,
618C28E613947DEB005E47FA /* SCSITask.h */,
618C28E713947DEB005E47FA /* spi */,
);
path = scsi;
sourceTree = "<group>";
};
619A53161391DC75001AAD40 /* spi */ = {
618C28E713947DEB005E47FA /* spi */ = {
isa = PBXGroup;
children = (
619A53171391DC75001AAD40 /* IOSCSIParallelInterfaceController.h */,
618C28E813947DEB005E47FA /* IOSCSIParallelInterfaceController.h */,
);
path = spi;
sourceTree = "<group>";
};
619A53181391DC75001AAD40 /* serial */ = {
618C28E913947DEB005E47FA /* serial */ = {
isa = PBXGroup;
children = (
619A53191391DC75001AAD40 /* IOModemSerialStreamSync.h */,
619A531A1391DC75001AAD40 /* IORS232SerialStreamSync.h */,
619A531B1391DC75001AAD40 /* IOSerialDriverSync.h */,
619A531C1391DC75001AAD40 /* IOSerialKeys.h */,
619A531D1391DC75001AAD40 /* IOSerialStreamSync.h */,
618C28EA13947DEB005E47FA /* IOModemSerialStreamSync.h */,
618C28EB13947DEB005E47FA /* IORS232SerialStreamSync.h */,
618C28EC13947DEB005E47FA /* IOSerialDriverSync.h */,
618C28ED13947DEB005E47FA /* IOSerialKeys.h */,
618C28EE13947DEB005E47FA /* IOSerialStreamSync.h */,
);
path = serial;
sourceTree = "<group>";
};
619A531E1391DC75001AAD40 /* storage */ = {
618C28EF13947DEB005E47FA /* storage */ = {
isa = PBXGroup;
children = (
619A531F1391DC75001AAD40 /* ata */,
619A53221391DC75001AAD40 /* IOAppleLabelScheme.h */,
619A53231391DC75001AAD40 /* IOApplePartitionScheme.h */,
619A53241391DC75001AAD40 /* IOBDBlockStorageDevice.h */,
619A53251391DC75001AAD40 /* IOBDBlockStorageDriver.h */,
619A53261391DC75001AAD40 /* IOBDMedia.h */,
619A53271391DC75001AAD40 /* IOBDMediaBSDClient.h */,
619A53281391DC75001AAD40 /* IOBDTypes.h */,
619A53291391DC75001AAD40 /* IOBlockStorageDevice.h */,
619A532A1391DC75001AAD40 /* IOBlockStorageDriver.h */,
619A532B1391DC75001AAD40 /* IOCDBlockStorageDevice.h */,
619A532C1391DC75001AAD40 /* IOCDBlockStorageDriver.h */,
619A532D1391DC75001AAD40 /* IOCDMedia.h */,
619A532E1391DC75001AAD40 /* IOCDMediaBSDClient.h */,
619A532F1391DC75001AAD40 /* IOCDPartitionScheme.h */,
619A53301391DC75001AAD40 /* IOCDTypes.h */,
619A53311391DC75001AAD40 /* IODVDBlockStorageDevice.h */,
619A53321391DC75001AAD40 /* IODVDBlockStorageDriver.h */,
619A53331391DC75001AAD40 /* IODVDMedia.h */,
619A53341391DC75001AAD40 /* IODVDMediaBSDClient.h */,
619A53351391DC75001AAD40 /* IODVDTypes.h */,
619A53361391DC75001AAD40 /* IOFDiskPartitionScheme.h */,
619A53371391DC75001AAD40 /* IOFilterScheme.h */,
619A53381391DC75001AAD40 /* IOFireWireStorageCharacteristics.h */,
619A53391391DC75001AAD40 /* IOGUIDPartitionScheme.h */,
619A533A1391DC75001AAD40 /* IOMedia.h */,
619A533B1391DC75001AAD40 /* IOMediaBSDClient.h */,
619A533C1391DC75001AAD40 /* IOPartitionScheme.h */,
619A533D1391DC75001AAD40 /* IOStorage.h */,
619A533E1391DC75001AAD40 /* IOStorageDeviceCharacteristics.h */,
619A533F1391DC75001AAD40 /* IOStorageProtocolCharacteristics.h */,
618C28F013947DEB005E47FA /* ata */,
618C28F313947DEB005E47FA /* IOAppleLabelScheme.h */,
618C28F413947DEB005E47FA /* IOApplePartitionScheme.h */,
618C28F513947DEB005E47FA /* IOBDBlockStorageDevice.h */,
618C28F613947DEB005E47FA /* IOBDBlockStorageDriver.h */,
618C28F713947DEB005E47FA /* IOBDMedia.h */,
618C28F813947DEB005E47FA /* IOBDMediaBSDClient.h */,
618C28F913947DEB005E47FA /* IOBDTypes.h */,
618C28FA13947DEB005E47FA /* IOBlockStorageDevice.h */,
618C28FB13947DEB005E47FA /* IOBlockStorageDriver.h */,
618C28FC13947DEB005E47FA /* IOCDBlockStorageDevice.h */,
618C28FD13947DEB005E47FA /* IOCDBlockStorageDriver.h */,
618C28FE13947DEB005E47FA /* IOCDMedia.h */,
618C28FF13947DEB005E47FA /* IOCDMediaBSDClient.h */,
618C290013947DEB005E47FA /* IOCDPartitionScheme.h */,
618C290113947DEB005E47FA /* IOCDTypes.h */,
618C290213947DEB005E47FA /* IODVDBlockStorageDevice.h */,
618C290313947DEB005E47FA /* IODVDBlockStorageDriver.h */,
618C290413947DEB005E47FA /* IODVDMedia.h */,
618C290513947DEB005E47FA /* IODVDMediaBSDClient.h */,
618C290613947DEB005E47FA /* IODVDTypes.h */,
618C290713947DEB005E47FA /* IOFDiskPartitionScheme.h */,
618C290813947DEB005E47FA /* IOFilterScheme.h */,
618C290913947DEB005E47FA /* IOFireWireStorageCharacteristics.h */,
618C290A13947DEB005E47FA /* IOGUIDPartitionScheme.h */,
618C290B13947DEB005E47FA /* IOMedia.h */,
618C290C13947DEB005E47FA /* IOMediaBSDClient.h */,
618C290D13947DEB005E47FA /* IOPartitionScheme.h */,
618C290E13947DEB005E47FA /* IOStorage.h */,
618C290F13947DEB005E47FA /* IOStorageDeviceCharacteristics.h */,
618C291013947DEB005E47FA /* IOStorageProtocolCharacteristics.h */,
);
path = storage;
sourceTree = "<group>";
};
619A531F1391DC75001AAD40 /* ata */ = {
618C28F013947DEB005E47FA /* ata */ = {
isa = PBXGroup;
children = (
619A53201391DC75001AAD40 /* IOATAPIProtocolTransport.h */,
619A53211391DC75001AAD40 /* IOATAStorageDefines.h */,
618C28F113947DEB005E47FA /* IOATAPIProtocolTransport.h */,
618C28F213947DEB005E47FA /* IOATAStorageDefines.h */,
);
path = ata;
sourceTree = "<group>";
};
619A53401391DC75001AAD40 /* stream */ = {
618C291113947DEB005E47FA /* stream */ = {
isa = PBXGroup;
children = (
619A53411391DC75001AAD40 /* IOStream.h */,
619A53421391DC75001AAD40 /* IOStreamFamily.h */,
619A53431391DC75001AAD40 /* IOStreamShared.h */,
619A53441391DC75001AAD40 /* IOStreamUserClient.h */,
618C291213947DEB005E47FA /* IOStream.h */,
618C291313947DEB005E47FA /* IOStreamFamily.h */,
618C291413947DEB005E47FA /* IOStreamShared.h */,
618C291513947DEB005E47FA /* IOStreamUserClient.h */,
);
path = stream;
sourceTree = "<group>";
};
619A53461391DC75001AAD40 /* system_management */ = {
618C291713947DEB005E47FA /* system_management */ = {
isa = PBXGroup;
children = (
619A53471391DC75001AAD40 /* IOWatchDogTimer.h */,
618C291813947DEB005E47FA /* IOWatchDogTimer.h */,
);
path = system_management;
sourceTree = "<group>";
};
619A53481391DC75001AAD40 /* usb */ = {
618C291913947DEB005E47FA /* usb */ = {
isa = PBXGroup;
children = (
619A53491391DC75001AAD40 /* IOUFIStorageServices.h */,
619A534A1391DC75001AAD40 /* IOUSBBus.h */,
619A534B1391DC75001AAD40 /* IOUSBCommand.h */,
619A534C1391DC75001AAD40 /* IOUSBCompositeDriver.h */,
619A534D1391DC75001AAD40 /* IOUSBController.h */,
619A534E1391DC75001AAD40 /* IOUSBControllerListElement.h */,
619A534F1391DC75001AAD40 /* IOUSBControllerV2.h */,
619A53501391DC75001AAD40 /* IOUSBControllerV3.h */,
619A53511391DC75001AAD40 /* IOUSBDevice.h */,
619A53521391DC75001AAD40 /* IOUSBHIDDriver.h */,
619A53531391DC75001AAD40 /* IOUSBHubDevice.h */,
619A53541391DC75001AAD40 /* IOUSBHubPolicyMaker.h */,
619A53551391DC75001AAD40 /* IOUSBInterface.h */,
619A53561391DC75001AAD40 /* IOUSBLog.h */,
619A53571391DC75001AAD40 /* IOUSBMassStorageClass.h */,
619A53581391DC75001AAD40 /* IOUSBMassStorageUFISubclass.h */,
619A53591391DC75001AAD40 /* IOUSBNub.h */,
619A535A1391DC75001AAD40 /* IOUSBPipe.h */,
619A535B1391DC75001AAD40 /* IOUSBRootHubDevice.h */,
619A535C1391DC75001AAD40 /* IOUSBUserClient.h */,
619A535D1391DC75001AAD40 /* IOUSBWorkLoop.h */,
619A535E1391DC75001AAD40 /* USB.h */,
619A535F1391DC75001AAD40 /* USBHub.h */,
619A53601391DC75001AAD40 /* USBSpec.h */,
619A53611391DC75001AAD40 /* USBTracepoints.h */,
618C291A13947DEB005E47FA /* IOUFIStorageServices.h */,
618C291B13947DEB005E47FA /* IOUSBBus.h */,
618C291C13947DEB005E47FA /* IOUSBCommand.h */,
618C291D13947DEB005E47FA /* IOUSBCompositeDriver.h */,
618C291E13947DEB005E47FA /* IOUSBController.h */,
618C291F13947DEB005E47FA /* IOUSBControllerListElement.h */,
618C292013947DEB005E47FA /* IOUSBControllerV2.h */,
618C292113947DEB005E47FA /* IOUSBControllerV3.h */,
618C292213947DEB005E47FA /* IOUSBDevice.h */,
618C292313947DEB005E47FA /* IOUSBHIDDriver.h */,
618C292413947DEB005E47FA /* IOUSBHubDevice.h */,
618C292513947DEB005E47FA /* IOUSBHubPolicyMaker.h */,
618C292613947DEB005E47FA /* IOUSBInterface.h */,
618C292713947DEB005E47FA /* IOUSBLog.h */,
618C292813947DEB005E47FA /* IOUSBMassStorageClass.h */,
618C292913947DEB005E47FA /* IOUSBMassStorageUFISubclass.h */,
618C292A13947DEB005E47FA /* IOUSBNub.h */,
618C292B13947DEB005E47FA /* IOUSBPipe.h */,
618C292C13947DEB005E47FA /* IOUSBRootHubDevice.h */,
618C292D13947DEB005E47FA /* IOUSBUserClient.h */,
618C292E13947DEB005E47FA /* IOUSBWorkLoop.h */,
618C292F13947DEB005E47FA /* USB.h */,
618C293013947DEB005E47FA /* USBHub.h */,
618C293113947DEB005E47FA /* USBSpec.h */,
618C293213947DEB005E47FA /* USBTracepoints.h */,
);
path = usb;
sourceTree = "<group>";
};
619A53621391DC75001AAD40 /* libkern */ = {
618C293313947DEB005E47FA /* libkern */ = {
isa = PBXGroup;
children = (
619A53631391DC75001AAD40 /* _OSByteOrder.h */,
619A53641391DC75001AAD40 /* crypto */,
619A53671391DC75001AAD40 /* i386 */,
619A536A1391DC75001AAD40 /* machine */,
619A536C1391DC75001AAD40 /* OSAtomic.h */,
619A536D1391DC75001AAD40 /* OSByteOrder.h */,
619A536E1391DC75001AAD40 /* OSCacheControl.h */,
619A536F1391DC75001AAD40 /* OSDebug.h */,
619A53701391DC75001AAD40 /* OSKextLib.h */,
619A53711391DC75001AAD40 /* OSReturn.h */,
619A53721391DC75001AAD40 /* OSTypes.h */,
619A53731391DC75001AAD40 /* ppc */,
618C293413947DEB005E47FA /* _OSByteOrder.h */,
618C293513947DEB005E47FA /* crypto */,
618C293813947DEB005E47FA /* i386 */,
618C293B13947DEB005E47FA /* machine */,
618C293D13947DEB005E47FA /* OSAtomic.h */,
618C293E13947DEB005E47FA /* OSByteOrder.h */,
618C293F13947DEB005E47FA /* OSCacheControl.h */,
618C294013947DEB005E47FA /* OSDebug.h */,
618C294113947DEB005E47FA /* OSKextLib.h */,
618C294213947DEB005E47FA /* OSReturn.h */,
618C294313947DEB005E47FA /* OSTypes.h */,
618C294413947DEB005E47FA /* ppc */,
);
path = libkern;
sourceTree = "<group>";
};
619A53641391DC75001AAD40 /* crypto */ = {
618C293513947DEB005E47FA /* crypto */ = {
isa = PBXGroup;
children = (
619A53651391DC75001AAD40 /* md5.h */,
619A53661391DC75001AAD40 /* sha1.h */,
618C293613947DEB005E47FA /* md5.h */,
618C293713947DEB005E47FA /* sha1.h */,
);
path = crypto;
sourceTree = "<group>";
};
619A53671391DC75001AAD40 /* i386 */ = {
618C293813947DEB005E47FA /* i386 */ = {
isa = PBXGroup;
children = (
619A53681391DC75001AAD40 /* _OSByteOrder.h */,
619A53691391DC75001AAD40 /* OSByteOrder.h */,
618C293913947DEB005E47FA /* _OSByteOrder.h */,
618C293A13947DEB005E47FA /* OSByteOrder.h */,
);
path = i386;
sourceTree = "<group>";
};
619A536A1391DC75001AAD40 /* machine */ = {
618C293B13947DEB005E47FA /* machine */ = {
isa = PBXGroup;
children = (
619A536B1391DC75001AAD40 /* OSByteOrder.h */,
618C293C13947DEB005E47FA /* OSByteOrder.h */,
);
path = machine;
sourceTree = "<group>";
};
619A53731391DC75001AAD40 /* ppc */ = {
618C294413947DEB005E47FA /* ppc */ = {
isa = PBXGroup;
children = (
619A53741391DC75001AAD40 /* OSByteOrder.h */,
618C294513947DEB005E47FA /* OSByteOrder.h */,
);
path = ppc;
sourceTree = "<group>";
};
619A53771391DC75001AAD40 /* mach */ = {
618C294813947DEB005E47FA /* mach */ = {
isa = PBXGroup;
children = (
619A53781391DC75001AAD40 /* audit_triggers.defs */,
619A53791391DC75001AAD40 /* boolean.h */,
619A537A1391DC75001AAD40 /* bootstrap.h */,
619A537B1391DC75001AAD40 /* clock.defs */,
619A537C1391DC75001AAD40 /* clock.h */,
619A537D1391DC75001AAD40 /* clock_priv.defs */,
619A537E1391DC75001AAD40 /* clock_priv.h */,
619A537F1391DC75001AAD40 /* clock_reply.defs */,
619A53801391DC75001AAD40 /* clock_reply.h */,
619A53811391DC75001AAD40 /* clock_types.defs */,
619A53821391DC75001AAD40 /* clock_types.h */,
619A53831391DC75001AAD40 /* error.h */,
619A53841391DC75001AAD40 /* exc.defs */,
619A53851391DC75001AAD40 /* exc.h */,
619A53861391DC75001AAD40 /* exception.h */,
619A53871391DC75001AAD40 /* exception_types.h */,
619A53881391DC75001AAD40 /* host_info.h */,
619A53891391DC75001AAD40 /* host_notify.h */,
619A538A1391DC75001AAD40 /* host_notify_reply.defs */,
619A538B1391DC75001AAD40 /* host_priv.defs */,
619A538C1391DC75001AAD40 /* host_priv.h */,
619A538D1391DC75001AAD40 /* host_reboot.h */,
619A538E1391DC75001AAD40 /* host_security.defs */,
619A538F1391DC75001AAD40 /* host_security.h */,
619A53901391DC75001AAD40 /* host_special_ports.h */,
619A53911391DC75001AAD40 /* i386 */,
619A53A31391DC75001AAD40 /* kern_return.h */,
619A53A41391DC75001AAD40 /* kmod.h */,
619A53A51391DC75001AAD40 /* ledger.defs */,
619A53A61391DC75001AAD40 /* ledger.h */,
619A53A71391DC75001AAD40 /* lock_set.defs */,
619A53A81391DC75001AAD40 /* lock_set.h */,
619A53A91391DC75001AAD40 /* mach.h */,
619A53AA1391DC75001AAD40 /* mach_error.h */,
619A53AB1391DC75001AAD40 /* mach_exc.defs */,
619A53AC1391DC75001AAD40 /* mach_host.defs */,
619A53AD1391DC75001AAD40 /* mach_host.h */,
619A53AE1391DC75001AAD40 /* mach_init.h */,
619A53AF1391DC75001AAD40 /* mach_interface.h */,
619A53B01391DC75001AAD40 /* mach_param.h */,
619A53B11391DC75001AAD40 /* mach_port.defs */,
619A53B21391DC75001AAD40 /* mach_port.h */,
619A53B31391DC75001AAD40 /* mach_syscalls.h */,
619A53B41391DC75001AAD40 /* mach_time.h */,
619A53B51391DC75001AAD40 /* mach_traps.h */,
619A53B61391DC75001AAD40 /* mach_types.defs */,
619A53B71391DC75001AAD40 /* mach_types.h */,
619A53B81391DC75001AAD40 /* mach_vm.defs */,
619A53B91391DC75001AAD40 /* mach_vm.h */,
619A53BA1391DC75001AAD40 /* machine */,
619A53C91391DC75001AAD40 /* machine.h */,
619A53CA1391DC75001AAD40 /* memory_object_types.h */,
619A53CB1391DC75001AAD40 /* message.h */,
619A53CC1391DC75001AAD40 /* mig.h */,
619A53CD1391DC75001AAD40 /* mig_errors.h */,
619A53CE1391DC75001AAD40 /* ndr.h */,
619A53CF1391DC75001AAD40 /* notify.defs */,
619A53D01391DC75001AAD40 /* notify.h */,
619A53D11391DC75001AAD40 /* policy.h */,
619A53D21391DC75001AAD40 /* port.h */,
619A53D31391DC75001AAD40 /* port_obj.h */,
619A53D41391DC75001AAD40 /* ppc */,
619A53E51391DC75001AAD40 /* processor.defs */,
619A53E61391DC75001AAD40 /* processor.h */,
619A53E71391DC75001AAD40 /* processor_info.h */,
619A53E81391DC75001AAD40 /* processor_set.defs */,
619A53E91391DC75001AAD40 /* processor_set.h */,
619A53EA1391DC75001AAD40 /* rpc.h */,
619A53EB1391DC75001AAD40 /* sdt.h */,
619A53EC1391DC75001AAD40 /* security.defs */,
619A53ED1391DC75001AAD40 /* semaphore.h */,
619A53EE1391DC75001AAD40 /* shared_memory_server.h */,
619A53EF1391DC75001AAD40 /* shared_region.h */,
619A53F01391DC75001AAD40 /* std_types.defs */,
619A53F11391DC75001AAD40 /* std_types.h */,
619A53F21391DC75001AAD40 /* sync.h */,
619A53F31391DC75001AAD40 /* sync_policy.h */,
619A53F41391DC75001AAD40 /* task.defs */,
619A53F51391DC75001AAD40 /* task.h */,
619A53F61391DC75001AAD40 /* task_access.defs */,
619A53F71391DC75001AAD40 /* task_info.h */,
619A53F81391DC75001AAD40 /* task_ledger.h */,
619A53F91391DC75001AAD40 /* task_policy.h */,
619A53FA1391DC75001AAD40 /* task_special_ports.h */,
619A53FB1391DC75001AAD40 /* thread_act.defs */,
619A53FC1391DC75001AAD40 /* thread_act.h */,
619A53FD1391DC75001AAD40 /* thread_info.h */,
619A53FE1391DC75001AAD40 /* thread_policy.h */,
619A53FF1391DC75001AAD40 /* thread_special_ports.h */,
619A54001391DC75001AAD40 /* thread_status.h */,
619A54011391DC75001AAD40 /* thread_switch.h */,
619A54021391DC75001AAD40 /* time_value.h */,
619A54031391DC75001AAD40 /* vm_attributes.h */,
619A54041391DC75001AAD40 /* vm_behavior.h */,
619A54051391DC75001AAD40 /* vm_inherit.h */,
619A54061391DC75001AAD40 /* vm_map.defs */,
619A54071391DC75001AAD40 /* vm_map.h */,
619A54081391DC75001AAD40 /* vm_param.h */,
619A54091391DC75001AAD40 /* vm_prot.h */,
619A540A1391DC75001AAD40 /* vm_purgable.h */,
619A540B1391DC75001AAD40 /* vm_region.h */,
619A540C1391DC75001AAD40 /* vm_statistics.h */,
619A540D1391DC75001AAD40 /* vm_sync.h */,
619A540E1391DC75001AAD40 /* vm_task.h */,
619A540F1391DC75001AAD40 /* vm_types.h */,
619A54101391DC75001AAD40 /* x86_64 */,
618C294913947DEB005E47FA /* audit_triggers.defs */,
618C294A13947DEB005E47FA /* boolean.h */,
618C294B13947DEB005E47FA /* bootstrap.h */,
618C294C13947DEB005E47FA /* clock.defs */,
618C294D13947DEB005E47FA /* clock.h */,
618C294E13947DEB005E47FA /* clock_priv.defs */,
618C294F13947DEB005E47FA /* clock_priv.h */,
618C295013947DEB005E47FA /* clock_reply.defs */,
618C295113947DEB005E47FA /* clock_reply.h */,
618C295213947DEB005E47FA /* clock_types.defs */,
618C295313947DEB005E47FA /* clock_types.h */,
618C295413947DEB005E47FA /* error.h */,
618C295513947DEB005E47FA /* exc.defs */,
618C295613947DEB005E47FA /* exc.h */,
618C295713947DEB005E47FA /* exception.h */,
618C295813947DEB005E47FA /* exception_types.h */,
618C295913947DEB005E47FA /* host_info.h */,
618C295A13947DEB005E47FA /* host_notify.h */,
618C295B13947DEB005E47FA /* host_notify_reply.defs */,
618C295C13947DEB005E47FA /* host_priv.defs */,
618C295D13947DEB005E47FA /* host_priv.h */,
618C295E13947DEB005E47FA /* host_reboot.h */,
618C295F13947DEB005E47FA /* host_security.defs */,
618C296013947DEB005E47FA /* host_security.h */,
618C296113947DEB005E47FA /* host_special_ports.h */,
618C296213947DEB005E47FA /* i386 */,
618C297413947DEB005E47FA /* kern_return.h */,
618C297513947DEB005E47FA /* kmod.h */,
618C297613947DEB005E47FA /* ledger.defs */,
618C297713947DEB005E47FA /* ledger.h */,
618C297813947DEB005E47FA /* lock_set.defs */,
618C297913947DEB005E47FA /* lock_set.h */,
618C297A13947DEB005E47FA /* mach.h */,
618C297B13947DEB005E47FA /* mach_error.h */,
618C297C13947DEB005E47FA /* mach_exc.defs */,
618C297D13947DEB005E47FA /* mach_host.defs */,
618C297E13947DEB005E47FA /* mach_host.h */,
618C297F13947DEB005E47FA /* mach_init.h */,
618C298013947DEB005E47FA /* mach_interface.h */,
618C298113947DEB005E47FA /* mach_param.h */,
618C298213947DEB005E47FA /* mach_port.defs */,
618C298313947DEB005E47FA /* mach_port.h */,
618C298413947DEB005E47FA /* mach_syscalls.h */,
618C298513947DEB005E47FA /* mach_time.h */,
618C298613947DEB005E47FA /* mach_traps.h */,
618C298713947DEB005E47FA /* mach_types.defs */,
618C298813947DEB005E47FA /* mach_types.h */,
618C298913947DEB005E47FA /* mach_vm.defs */,
618C298A13947DEB005E47FA /* mach_vm.h */,
618C298B13947DEB005E47FA /* machine */,
618C299A13947DEB005E47FA /* machine.h */,
618C299B13947DEB005E47FA /* memory_object_types.h */,
618C299C13947DEB005E47FA /* message.h */,
618C299D13947DEB005E47FA /* mig.h */,
618C299E13947DEB005E47FA /* mig_errors.h */,
618C299F13947DEB005E47FA /* ndr.h */,
618C29A013947DEB005E47FA /* notify.defs */,
618C29A113947DEB005E47FA /* notify.h */,
618C29A213947DEB005E47FA /* policy.h */,
618C29A313947DEB005E47FA /* port.h */,
618C29A413947DEB005E47FA /* port_obj.h */,
618C29A513947DEB005E47FA /* ppc */,
618C29B613947DEB005E47FA /* processor.defs */,
618C29B713947DEB005E47FA /* processor.h */,
618C29B813947DEB005E47FA /* processor_info.h */,
618C29B913947DEB005E47FA /* processor_set.defs */,
618C29BA13947DEB005E47FA /* processor_set.h */,
618C29BB13947DEB005E47FA /* rpc.h */,
618C29BC13947DEB005E47FA /* sdt.h */,
618C29BD13947DEB005E47FA /* security.defs */,
618C29BE13947DEB005E47FA /* semaphore.h */,
618C29BF13947DEB005E47FA /* shared_memory_server.h */,
618C29C013947DEB005E47FA /* shared_region.h */,
618C29C113947DEB005E47FA /* std_types.defs */,
618C29C213947DEB005E47FA /* std_types.h */,
618C29C313947DEB005E47FA /* sync.h */,
618C29C413947DEB005E47FA /* sync_policy.h */,
618C29C513947DEB005E47FA /* task.defs */,
618C29C613947DEB005E47FA /* task.h */,
618C29C713947DEB005E47FA /* task_access.defs */,
618C29C813947DEB005E47FA /* task_info.h */,
618C29C913947DEB005E47FA /* task_ledger.h */,
618C29CA13947DEB005E47FA /* task_policy.h */,
618C29CB13947DEB005E47FA /* task_special_ports.h */,
618C29CC13947DEB005E47FA /* thread_act.defs */,
618C29CD13947DEB005E47FA /* thread_act.h */,
618C29CE13947DEB005E47FA /* thread_info.h */,
618C29CF13947DEB005E47FA /* thread_policy.h */,
618C29D013947DEB005E47FA /* thread_special_ports.h */,
618C29D113947DEB005E47FA /* thread_status.h */,
618C29D213947DEB005E47FA /* thread_switch.h */,
618C29D313947DEB005E47FA /* time_value.h */,
618C29D413947DEB005E47FA /* vm_attributes.h */,
618C29D513947DEB005E47FA /* vm_behavior.h */,
618C29D613947DEB005E47FA /* vm_inherit.h */,
618C29D713947DEB005E47FA /* vm_map.defs */,
618C29D813947DEB005E47FA /* vm_map.h */,
618C29D913947DEB005E47FA /* vm_param.h */,
618C29DA13947DEB005E47FA /* vm_prot.h */,
618C29DB13947DEB005E47FA /* vm_purgable.h */,
618C29DC13947DEB005E47FA /* vm_region.h */,
618C29DD13947DEB005E47FA /* vm_statistics.h */,
618C29DE13947DEB005E47FA /* vm_sync.h */,
618C29DF13947DEB005E47FA /* vm_task.h */,
618C29E013947DEB005E47FA /* vm_types.h */,
618C29E113947DEB005E47FA /* x86_64 */,
);
path = mach;
sourceTree = "<group>";
};
619A53911391DC75001AAD40 /* i386 */ = {
618C296213947DEB005E47FA /* i386 */ = {
isa = PBXGroup;
children = (
619A53921391DC75001AAD40 /* _structs.h */,
619A53931391DC75001AAD40 /* asm.h */,
619A53941391DC75001AAD40 /* boolean.h */,
619A53951391DC75001AAD40 /* exception.h */,
619A53961391DC75001AAD40 /* fp_reg.h */,
619A53971391DC75001AAD40 /* kern_return.h */,
619A53981391DC75001AAD40 /* machine_types.defs */,
619A53991391DC75001AAD40 /* ndr_def.h */,
619A539A1391DC75001AAD40 /* processor_info.h */,
619A539B1391DC75001AAD40 /* rpc.h */,
619A539C1391DC75001AAD40 /* sdt_isa.h */,
619A539D1391DC75001AAD40 /* task.h */,
619A539E1391DC75001AAD40 /* thread_act.h */,
619A539F1391DC75001AAD40 /* thread_state.h */,
619A53A01391DC75001AAD40 /* thread_status.h */,
619A53A11391DC75001AAD40 /* vm_param.h */,
619A53A21391DC75001AAD40 /* vm_types.h */,
618C296313947DEB005E47FA /* _structs.h */,
618C296413947DEB005E47FA /* asm.h */,
618C296513947DEB005E47FA /* boolean.h */,
618C296613947DEB005E47FA /* exception.h */,
618C296713947DEB005E47FA /* fp_reg.h */,
618C296813947DEB005E47FA /* kern_return.h */,
618C296913947DEB005E47FA /* machine_types.defs */,
618C296A13947DEB005E47FA /* ndr_def.h */,
618C296B13947DEB005E47FA /* processor_info.h */,
618C296C13947DEB005E47FA /* rpc.h */,
618C296D13947DEB005E47FA /* sdt_isa.h */,
618C296E13947DEB005E47FA /* task.h */,
618C296F13947DEB005E47FA /* thread_act.h */,
618C297013947DEB005E47FA /* thread_state.h */,
618C297113947DEB005E47FA /* thread_status.h */,
618C297213947DEB005E47FA /* vm_param.h */,
618C297313947DEB005E47FA /* vm_types.h */,
);
path = i386;
sourceTree = "<group>";
};
619A53BA1391DC75001AAD40 /* machine */ = {
618C298B13947DEB005E47FA /* machine */ = {
isa = PBXGroup;
children = (
619A53BB1391DC75001AAD40 /* asm.h */,
619A53BC1391DC75001AAD40 /* boolean.h */,
619A53BD1391DC75001AAD40 /* exception.h */,
619A53BE1391DC75001AAD40 /* kern_return.h */,
619A53BF1391DC75001AAD40 /* machine_types.defs */,
619A53C01391DC75001AAD40 /* ndr_def.h */,
619A53C11391DC75001AAD40 /* processor_info.h */,
619A53C21391DC75001AAD40 /* rpc.h */,
619A53C31391DC75001AAD40 /* sdt.h */,
619A53C41391DC75001AAD40 /* sdt_isa.h */,
619A53C51391DC75001AAD40 /* thread_state.h */,
619A53C61391DC75001AAD40 /* thread_status.h */,
619A53C71391DC75001AAD40 /* vm_param.h */,
619A53C81391DC75001AAD40 /* vm_types.h */,
618C298C13947DEB005E47FA /* asm.h */,
618C298D13947DEB005E47FA /* boolean.h */,
618C298E13947DEB005E47FA /* exception.h */,
618C298F13947DEB005E47FA /* kern_return.h */,
618C299013947DEB005E47FA /* machine_types.defs */,
618C299113947DEB005E47FA /* ndr_def.h */,
618C299213947DEB005E47FA /* processor_info.h */,
618C299313947DEB005E47FA /* rpc.h */,
618C299413947DEB005E47FA /* sdt.h */,
618C299513947DEB005E47FA /* sdt_isa.h */,
618C299613947DEB005E47FA /* thread_state.h */,
618C299713947DEB005E47FA /* thread_status.h */,
618C299813947DEB005E47FA /* vm_param.h */,
618C299913947DEB005E47FA /* vm_types.h */,
);
path = machine;
sourceTree = "<group>";
};
619A53D41391DC75001AAD40 /* ppc */ = {
618C29A513947DEB005E47FA /* ppc */ = {
isa = PBXGroup;
children = (
619A53D51391DC75001AAD40 /* _structs.h */,
619A53D61391DC75001AAD40 /* asm.h */,
619A53D71391DC75001AAD40 /* boolean.h */,
619A53D81391DC75001AAD40 /* exception.h */,
619A53D91391DC75001AAD40 /* kern_return.h */,
619A53DA1391DC75001AAD40 /* machine_types.defs */,
619A53DB1391DC75001AAD40 /* ndr_def.h */,
619A53DC1391DC75001AAD40 /* processor_info.h */,
619A53DD1391DC75001AAD40 /* rpc.h */,
619A53DE1391DC75001AAD40 /* sdt_isa.h */,
619A53DF1391DC75001AAD40 /* task.h */,
619A53E01391DC75001AAD40 /* thread_act.h */,
619A53E11391DC75001AAD40 /* thread_state.h */,
619A53E21391DC75001AAD40 /* thread_status.h */,
619A53E31391DC75001AAD40 /* vm_param.h */,
619A53E41391DC75001AAD40 /* vm_types.h */,
618C29A613947DEB005E47FA /* _structs.h */,
618C29A713947DEB005E47FA /* asm.h */,
618C29A813947DEB005E47FA /* boolean.h */,
618C29A913947DEB005E47FA /* exception.h */,
618C29AA13947DEB005E47FA /* kern_return.h */,
618C29AB13947DEB005E47FA /* machine_types.defs */,
618C29AC13947DEB005E47FA /* ndr_def.h */,
618C29AD13947DEB005E47FA /* processor_info.h */,
618C29AE13947DEB005E47FA /* rpc.h */,
618C29AF13947DEB005E47FA /* sdt_isa.h */,
618C29B013947DEB005E47FA /* task.h */,
618C29B113947DEB005E47FA /* thread_act.h */,
618C29B213947DEB005E47FA /* thread_state.h */,
618C29B313947DEB005E47FA /* thread_status.h */,
618C29B413947DEB005E47FA /* vm_param.h */,
618C29B513947DEB005E47FA /* vm_types.h */,
);
path = ppc;
sourceTree = "<group>";
};
619A54101391DC75001AAD40 /* x86_64 */ = {
618C29E113947DEB005E47FA /* x86_64 */ = {
isa = PBXGroup;
children = (
619A54111391DC75001AAD40 /* task.h */,
619A54121391DC75001AAD40 /* thread_act.h */,
618C29E213947DEB005E47FA /* task.h */,
618C29E313947DEB005E47FA /* thread_act.h */,
);
path = x86_64;
sourceTree = "<group>";
};
619A54131391DC75001AAD40 /* mach-o */ = {
618C29E413947DEB005E47FA /* mach-o */ = {
isa = PBXGroup;
children = (
619A54141391DC75001AAD40 /* arch.h */,
619A54151391DC75001AAD40 /* compact_unwind_encoding.h */,
619A54161391DC75001AAD40 /* dyld.h */,
619A54171391DC75001AAD40 /* dyld_images.h */,
619A54181391DC75001AAD40 /* fat.h */,
619A54191391DC75001AAD40 /* getsect.h */,
619A541A1391DC75001AAD40 /* i386 */,
619A541C1391DC75001AAD40 /* ldsyms.h */,
619A541D1391DC75001AAD40 /* loader.h */,
619A541E1391DC75001AAD40 /* nlist.h */,
619A541F1391DC75001AAD40 /* ppc */,
619A54221391DC75001AAD40 /* ranlib.h */,
619A54231391DC75001AAD40 /* reloc.h */,
619A54241391DC75001AAD40 /* stab.h */,
619A54251391DC75001AAD40 /* swap.h */,
619A54261391DC75001AAD40 /* x86_64 */,
618C29E513947DEB005E47FA /* arch.h */,
618C29E613947DEB005E47FA /* compact_unwind_encoding.h */,
618C29E713947DEB005E47FA /* dyld.h */,
618C29E813947DEB005E47FA /* dyld_images.h */,
618C29E913947DEB005E47FA /* fat.h */,
618C29EA13947DEB005E47FA /* getsect.h */,
618C29EB13947DEB005E47FA /* i386 */,
618C29ED13947DEB005E47FA /* ldsyms.h */,
618C29EE13947DEB005E47FA /* loader.h */,
618C29EF13947DEB005E47FA /* nlist.h */,
618C29F013947DEB005E47FA /* ppc */,
618C29F313947DEB005E47FA /* ranlib.h */,
618C29F413947DEB005E47FA /* reloc.h */,
618C29F513947DEB005E47FA /* stab.h */,
618C29F613947DEB005E47FA /* swap.h */,
618C29F713947DEB005E47FA /* x86_64 */,
);
path = "mach-o";
sourceTree = "<group>";
};
619A541A1391DC75001AAD40 /* i386 */ = {
618C29EB13947DEB005E47FA /* i386 */ = {
isa = PBXGroup;
children = (
619A541B1391DC75001AAD40 /* swap.h */,
618C29EC13947DEB005E47FA /* swap.h */,
);
path = i386;
sourceTree = "<group>";
};
619A541F1391DC75001AAD40 /* ppc */ = {
618C29F013947DEB005E47FA /* ppc */ = {
isa = PBXGroup;
children = (
619A54201391DC75001AAD40 /* reloc.h */,
619A54211391DC75001AAD40 /* swap.h */,
618C29F113947DEB005E47FA /* reloc.h */,
618C29F213947DEB005E47FA /* swap.h */,
);
path = ppc;
sourceTree = "<group>";
};
619A54261391DC75001AAD40 /* x86_64 */ = {
618C29F713947DEB005E47FA /* x86_64 */ = {
isa = PBXGroup;
children = (
619A54271391DC75001AAD40 /* reloc.h */,
618C29F813947DEB005E47FA /* reloc.h */,
);
path = x86_64;
sourceTree = "<group>";
};
619A54281391DC75001AAD40 /* machine */ = {
618C29F913947DEB005E47FA /* machine */ = {
isa = PBXGroup;
children = (
619A54291391DC75001AAD40 /* _limits.h */,
619A542A1391DC75001AAD40 /* _param.h */,
619A542B1391DC75001AAD40 /* _structs.h */,
619A542C1391DC75001AAD40 /* _types.h */,
619A542D1391DC75001AAD40 /* byte_order.h */,
619A542E1391DC75001AAD40 /* endian.h */,
619A542F1391DC75001AAD40 /* fasttrap_isa.h */,
619A54301391DC75001AAD40 /* limits.h */,
619A54311391DC75001AAD40 /* param.h */,
619A54321391DC75001AAD40 /* profile.h */,
619A54331391DC75001AAD40 /* setjmp.h */,
619A54341391DC75001AAD40 /* signal.h */,
619A54351391DC75001AAD40 /* types.h */,
619A54361391DC75001AAD40 /* vmparam.h */,
618C29FA13947DEB005E47FA /* _limits.h */,
618C29FB13947DEB005E47FA /* _param.h */,
618C29FC13947DEB005E47FA /* _structs.h */,
618C29FD13947DEB005E47FA /* _types.h */,
618C29FE13947DEB005E47FA /* byte_order.h */,
618C29FF13947DEB005E47FA /* endian.h */,
618C2A0013947DEB005E47FA /* fasttrap_isa.h */,
618C2A0113947DEB005E47FA /* limits.h */,
618C2A0213947DEB005E47FA /* param.h */,
618C2A0313947DEB005E47FA /* profile.h */,
618C2A0413947DEB005E47FA /* setjmp.h */,
618C2A0513947DEB005E47FA /* signal.h */,
618C2A0613947DEB005E47FA /* types.h */,
618C2A0713947DEB005E47FA /* vmparam.h */,
);
path = machine;
sourceTree = "<group>";
};
619A54381391DC75001AAD40 /* netinet */ = {
618C2A0913947DEB005E47FA /* netinet */ = {
isa = PBXGroup;
children = (
619A54391391DC75001AAD40 /* bootp.h */,
619A543A1391DC75001AAD40 /* icmp6.h */,
619A543B1391DC75001AAD40 /* icmp_var.h */,
619A543C1391DC75001AAD40 /* if_ether.h */,
619A543D1391DC75001AAD40 /* igmp.h */,
619A543E1391DC75001AAD40 /* igmp_var.h */,
619A543F1391DC75001AAD40 /* in.h */,
619A54401391DC75001AAD40 /* in_pcb.h */,
619A54411391DC75001AAD40 /* in_systm.h */,
619A54421391DC75001AAD40 /* in_var.h */,
619A54431391DC75001AAD40 /* ip.h */,
619A54441391DC75001AAD40 /* ip6.h */,
619A54451391DC75001AAD40 /* ip_fw.h */,
619A54461391DC75001AAD40 /* ip_fw2.h */,
619A54471391DC75001AAD40 /* ip_icmp.h */,
619A54481391DC75001AAD40 /* ip_mroute.h */,
619A54491391DC75001AAD40 /* ip_var.h */,
619A544A1391DC75001AAD40 /* tcp.h */,
619A544B1391DC75001AAD40 /* tcp_fsm.h */,
619A544C1391DC75001AAD40 /* tcp_seq.h */,
619A544D1391DC75001AAD40 /* tcp_timer.h */,
619A544E1391DC75001AAD40 /* tcp_var.h */,
619A544F1391DC75001AAD40 /* tcpip.h */,
619A54501391DC75001AAD40 /* udp.h */,
619A54511391DC75001AAD40 /* udp_var.h */,
618C2A0A13947DEB005E47FA /* bootp.h */,
618C2A0B13947DEB005E47FA /* icmp6.h */,
618C2A0C13947DEB005E47FA /* icmp_var.h */,
618C2A0D13947DEB005E47FA /* if_ether.h */,
618C2A0E13947DEB005E47FA /* igmp.h */,
618C2A0F13947DEB005E47FA /* igmp_var.h */,
618C2A1013947DEB005E47FA /* in.h */,
618C2A1113947DEB005E47FA /* in_pcb.h */,
618C2A1213947DEB005E47FA /* in_systm.h */,
618C2A1313947DEB005E47FA /* in_var.h */,
618C2A1413947DEB005E47FA /* ip.h */,
618C2A1513947DEB005E47FA /* ip6.h */,
618C2A1613947DEB005E47FA /* ip_fw.h */,
618C2A1713947DEB005E47FA /* ip_fw2.h */,
618C2A1813947DEB005E47FA /* ip_icmp.h */,
618C2A1913947DEB005E47FA /* ip_mroute.h */,
618C2A1A13947DEB005E47FA /* ip_var.h */,
618C2A1B13947DEB005E47FA /* tcp.h */,
618C2A1C13947DEB005E47FA /* tcp_fsm.h */,
618C2A1D13947DEB005E47FA /* tcp_seq.h */,
618C2A1E13947DEB005E47FA /* tcp_timer.h */,
618C2A1F13947DEB005E47FA /* tcp_var.h */,
618C2A2013947DEB005E47FA /* tcpip.h */,
618C2A2113947DEB005E47FA /* udp.h */,
618C2A2213947DEB005E47FA /* udp_var.h */,
);
path = netinet;
sourceTree = "<group>";
};
619A54521391DC75001AAD40 /* netinet6 */ = {
618C2A2313947DEB005E47FA /* netinet6 */ = {
isa = PBXGroup;
children = (
619A54531391DC75001AAD40 /* ah.h */,
619A54541391DC75001AAD40 /* esp.h */,
619A54551391DC75001AAD40 /* in6.h */,
619A54561391DC75001AAD40 /* in6_var.h */,
619A54571391DC75001AAD40 /* ip6_fw.h */,
619A54581391DC75001AAD40 /* ip6_mroute.h */,
619A54591391DC75001AAD40 /* ipcomp.h */,
619A545A1391DC75001AAD40 /* ipsec.h */,
619A545B1391DC75001AAD40 /* nd6.h */,
619A545C1391DC75001AAD40 /* pim6.h */,
619A545D1391DC75001AAD40 /* raw_ip6.h */,
618C2A2413947DEB005E47FA /* ah.h */,
618C2A2513947DEB005E47FA /* esp.h */,
618C2A2613947DEB005E47FA /* in6.h */,
618C2A2713947DEB005E47FA /* in6_var.h */,
618C2A2813947DEB005E47FA /* ip6_fw.h */,
618C2A2913947DEB005E47FA /* ip6_mroute.h */,
618C2A2A13947DEB005E47FA /* ipcomp.h */,
618C2A2B13947DEB005E47FA /* ipsec.h */,
618C2A2C13947DEB005E47FA /* nd6.h */,
618C2A2D13947DEB005E47FA /* pim6.h */,
618C2A2E13947DEB005E47FA /* raw_ip6.h */,
);
path = netinet6;
sourceTree = "<group>";
};
619A545F1391DC75001AAD40 /* secure */ = {
618C2A3013947DEB005E47FA /* secure */ = {
isa = PBXGroup;
children = (
619A54601391DC75001AAD40 /* _common.h */,
619A54611391DC75001AAD40 /* _stdio.h */,
618C2A3113947DEB005E47FA /* _common.h */,
618C2A3213947DEB005E47FA /* _stdio.h */,
);
path = secure;
sourceTree = "<group>";
};
619A546B1391DC75001AAD40 /* sys */ = {
618C2A3C13947DEB005E47FA /* sys */ = {
isa = PBXGroup;
children = (
619A546C1391DC75001AAD40 /* _endian.h */,
619A546D1391DC75001AAD40 /* _select.h */,
619A546E1391DC75001AAD40 /* _structs.h */,
619A546F1391DC75001AAD40 /* _types.h */,
619A54701391DC75001AAD40 /* appleapiopts.h */,
619A54711391DC75001AAD40 /* buf.h */,
619A54721391DC75001AAD40 /* cdefs.h */,
619A54731391DC75001AAD40 /* disk.h */,
619A54741391DC75001AAD40 /* kernel_types.h */,
619A54751391DC75001AAD40 /* param.h */,
619A54761391DC75001AAD40 /* reboot.h */,
619A54771391DC75001AAD40 /* select.h */,
619A54781391DC75001AAD40 /* socket.h */,
619A54791391DC75001AAD40 /* syscall.h */,
619A547A1391DC75001AAD40 /* syslimits.h */,
619A547B1391DC75001AAD40 /* time.h */,
619A547C1391DC75001AAD40 /* types.h */,
619A547D1391DC75001AAD40 /* unistd.h */,
618C2A3D13947DEB005E47FA /* _endian.h */,
618C2A3E13947DEB005E47FA /* _select.h */,
618C2A3F13947DEB005E47FA /* _structs.h */,
618C2A4013947DEB005E47FA /* _types.h */,
618C2A4113947DEB005E47FA /* appleapiopts.h */,
618C2A4213947DEB005E47FA /* buf.h */,
618C2A4313947DEB005E47FA /* cdefs.h */,
618C2A4413947DEB005E47FA /* disk.h */,
618C2A4513947DEB005E47FA /* kernel_types.h */,
618C2A4613947DEB005E47FA /* param.h */,
618C2A4713947DEB005E47FA /* reboot.h */,
618C2A4813947DEB005E47FA /* select.h */,
618C2A4913947DEB005E47FA /* socket.h */,
618C2A4A13947DEB005E47FA /* syscall.h */,
618C2A4B13947DEB005E47FA /* syslimits.h */,
618C2A4C13947DEB005E47FA /* time.h */,
618C2A4D13947DEB005E47FA /* types.h */,
618C2A4E13947DEB005E47FA /* unistd.h */,
);
path = sys;
sourceTree = "<group>";
};
619A547F1391DC75001AAD40 /* ufs */ = {
618C2A5013947DEB005E47FA /* ufs */ = {
isa = PBXGroup;
children = (
619A54801391DC75001AAD40 /* ffs */,
619A54831391DC75001AAD40 /* ufs */,
618C2A5113947DEB005E47FA /* ffs */,
618C2A5413947DEB005E47FA /* ufs */,
);
path = ufs;
sourceTree = "<group>";
};
619A54801391DC75001AAD40 /* ffs */ = {
618C2A5113947DEB005E47FA /* ffs */ = {
isa = PBXGroup;
children = (
619A54811391DC75001AAD40 /* ffs_extern.h */,
619A54821391DC75001AAD40 /* fs.h */,
618C2A5213947DEB005E47FA /* ffs_extern.h */,
618C2A5313947DEB005E47FA /* fs.h */,
);
path = ffs;
sourceTree = "<group>";
};
619A54831391DC75001AAD40 /* ufs */ = {
618C2A5413947DEB005E47FA /* ufs */ = {
isa = PBXGroup;
children = (
619A54841391DC75001AAD40 /* dinode.h */,
619A54851391DC75001AAD40 /* dir.h */,
619A54861391DC75001AAD40 /* inode.h */,
619A54871391DC75001AAD40 /* ufs_extern.h */,
619A54881391DC75001AAD40 /* ufsmount.h */,
618C2A5513947DEB005E47FA /* dinode.h */,
618C2A5613947DEB005E47FA /* dir.h */,
618C2A5713947DEB005E47FA /* inode.h */,
618C2A5813947DEB005E47FA /* ufs_extern.h */,
618C2A5913947DEB005E47FA /* ufsmount.h */,
);
path = ufs;
sourceTree = "<group>";
};
619A548B1391DC75001AAD40 /* libsa */ = {
618C2A5C13947DEB005E47FA /* libsa */ = {
isa = PBXGroup;
children = (
619A548C1391DC75001AAD40 /* Cconfig */,
619A548D1391DC75001AAD40 /* efi_tables.c */,
619A548E1391DC75001AAD40 /* efi_tables.h */,
619A548F1391DC75001AAD40 /* error.c */,
619A54901391DC75001AAD40 /* libsa.h */,
619A54911391DC75001AAD40 /* Makefile */,
619A54921391DC75001AAD40 /* memory.h */,
619A54931391DC75001AAD40 /* prf.c */,
619A54941391DC75001AAD40 /* printf.c */,
619A54951391DC75001AAD40 /* qsort.c */,
619A54961391DC75001AAD40 /* setjmp.s */,
619A54971391DC75001AAD40 /* string.c */,
619A54981391DC75001AAD40 /* strtol.c */,
619A54991391DC75001AAD40 /* zalloc.c */,
618C2A5D13947DEB005E47FA /* Cconfig */,
618C2A5E13947DEB005E47FA /* efi_tables.c */,
618C2A5F13947DEB005E47FA /* efi_tables.h */,
618C2A6013947DEB005E47FA /* error.c */,
618C2A6113947DEB005E47FA /* libsa.h */,
618C2A6213947DEB005E47FA /* Makefile */,
618C2A6313947DEB005E47FA /* memory.h */,
618C2A6413947DEB005E47FA /* prf.c */,
618C2A6513947DEB005E47FA /* printf.c */,
618C2A6613947DEB005E47FA /* qsort.c */,
618C2A6713947DEB005E47FA /* setjmp.s */,
618C2A6813947DEB005E47FA /* string.c */,
618C2A6913947DEB005E47FA /* strtol.c */,
618C2A6A13947DEB005E47FA /* zalloc.c */,
);
path = libsa;
sourceTree = "<group>";
};
619A549A1391DC75001AAD40 /* libsaio */ = {
618C2A6B13947DEB005E47FA /* libsaio */ = {
isa = PBXGroup;
children = (
619A549B1391DC75001AAD40 /* acpi.h */,
619A549C1391DC75001AAD40 /* acpi_patcher.c */,
619A549D1391DC75001AAD40 /* acpi_patcher.h */,
619A549E1391DC75001AAD40 /* allocate.c */,
619A549F1391DC75001AAD40 /* aml_generator.c */,
619A54A01391DC75001AAD40 /* aml_generator.h */,
619A54A11391DC75001AAD40 /* asm.s */,
619A54A21391DC75001AAD40 /* ati.c */,
619A54A31391DC75001AAD40 /* ati_reg.h */,
619A54A41391DC75001AAD40 /* befs.c */,
619A54A51391DC75001AAD40 /* befs.h */,
619A54A61391DC75001AAD40 /* bios.h */,
619A54A71391DC75001AAD40 /* bios.s */,
619A54A81391DC75001AAD40 /* biosfn.c */,
619A54A91391DC75001AAD40 /* bootargs.h */,
619A54AA1391DC75001AAD40 /* bootstruct.c */,
619A54AB1391DC75001AAD40 /* bootstruct.h */,
619A54AC1391DC75001AAD40 /* cache.c */,
619A54AD1391DC75001AAD40 /* Cconfig */,
619A54AE1391DC75001AAD40 /* console.c */,
619A54AF1391DC75001AAD40 /* convert.c */,
619A54B01391DC75001AAD40 /* convert.h */,
619A54B11391DC75001AAD40 /* cpu.c */,
619A54B21391DC75001AAD40 /* cpu.h */,
619A54B31391DC75001AAD40 /* device_inject.c */,
619A54B41391DC75001AAD40 /* device_inject.h */,
619A54B51391DC75001AAD40 /* device_tree.c */,
619A54B61391DC75001AAD40 /* device_tree.h */,
619A54B71391DC75001AAD40 /* disk.c */,
619A54B81391DC75001AAD40 /* disk.h */,
619A54B91391DC75001AAD40 /* dram_controllers.c */,
619A54BA1391DC75001AAD40 /* dram_controllers.h */,
619A54BB1391DC75001AAD40 /* efi.h */,
619A54BC1391DC75001AAD40 /* ext2fs.c */,
619A54BD1391DC75001AAD40 /* ext2fs.h */,
619A54BE1391DC75001AAD40 /* fake_efi.c */,
619A54BF1391DC75001AAD40 /* fake_efi.h */,
619A54C01391DC75001AAD40 /* fdisk.h */,
619A54C11391DC75001AAD40 /* freebsd.c */,
619A54C21391DC75001AAD40 /* freebsd.h */,
619A54C31391DC75001AAD40 /* hfs.c */,
619A54C41391DC75001AAD40 /* hfs.h */,
619A54C51391DC75001AAD40 /* hfs_CaseTables.h */,
619A54C61391DC75001AAD40 /* hfs_compare.c */,
619A54C71391DC75001AAD40 /* hpet.c */,
619A54C81391DC75001AAD40 /* hpet.h */,
619A54C91391DC75001AAD40 /* io_inline.h */,
619A54CA1391DC75001AAD40 /* libsaio.h */,
619A54CB1391DC75001AAD40 /* load.c */,
619A54CC1391DC75001AAD40 /* Makefile */,
619A54CD1391DC75001AAD40 /* md5c.c */,
619A54CE1391DC75001AAD40 /* memvendors.h */,
619A54CF1391DC75001AAD40 /* misc.c */,
619A54D01391DC75001AAD40 /* msdos.c */,
619A54D11391DC75001AAD40 /* msdos.h */,
619A54D21391DC75001AAD40 /* msdos_private.h */,
619A54D31391DC75001AAD40 /* nbp.c */,
619A54D41391DC75001AAD40 /* nbp_cmd.h */,
619A54D51391DC75001AAD40 /* ntfs.c */,
619A54D61391DC75001AAD40 /* ntfs.h */,
619A54D71391DC75001AAD40 /* ntfs_private.h */,
619A54D81391DC75001AAD40 /* nvidia.c */,
619A54D91391DC75001AAD40 /* nvidia.h */,
619A54DA1391DC75001AAD40 /* openbsd.c */,
619A54DB1391DC75001AAD40 /* openbsd.h */,
619A54DC1391DC75001AAD40 /* pci.c */,
619A54DD1391DC75001AAD40 /* pci.h */,
619A54DE1391DC75001AAD40 /* pci_root.c */,
619A54DF1391DC75001AAD40 /* pci_root.h */,
619A54E01391DC75001AAD40 /* pci_setup.c */,
619A54E11391DC75001AAD40 /* platform.c */,
619A54E21391DC75001AAD40 /* platform.h */,
619A54E31391DC75001AAD40 /* saio_internal.h */,
619A54E41391DC75001AAD40 /* saio_types.h */,
619A54E51391DC75001AAD40 /* sl.h */,
619A54E61391DC75001AAD40 /* smbios.c */,
619A54E71391DC75001AAD40 /* smbios.h */,
619A54E81391DC75001AAD40 /* smbios_decode.c */,
619A54E91391DC75001AAD40 /* smbios_getters.c */,
619A54EA1391DC75001AAD40 /* smbios_getters.h */,
619A54EB1391DC75001AAD40 /* spd.c */,
619A54EC1391DC75001AAD40 /* spd.h */,
619A54ED1391DC75001AAD40 /* stringTable.c */,
619A54EE1391DC75001AAD40 /* sys.c */,
619A54EF1391DC75001AAD40 /* table.c */,
619A54F01391DC75001AAD40 /* ufs.c */,
619A54F11391DC75001AAD40 /* ufs.h */,
619A54F21391DC75001AAD40 /* ufs_byteorder.c */,
619A54F31391DC75001AAD40 /* ufs_byteorder.h */,
619A54F41391DC75001AAD40 /* usb.c */,
619A54F51391DC75001AAD40 /* vbe.c */,
619A54F61391DC75001AAD40 /* vbe.h */,
619A54F71391DC75001AAD40 /* xml.c */,
619A54F81391DC75001AAD40 /* xml.h */,
618C2A6C13947DEB005E47FA /* acpi.h */,
618C2A6D13947DEB005E47FA /* acpi_patcher.c */,
618C2A6E13947DEB005E47FA /* acpi_patcher.h */,
618C2A6F13947DEB005E47FA /* allocate.c */,
618C2A7013947DEB005E47FA /* aml_generator.c */,
618C2A7113947DEB005E47FA /* aml_generator.h */,
618C2A7213947DEB005E47FA /* asm.s */,
618C2A7313947DEB005E47FA /* ati.c */,
618C2A7413947DEB005E47FA /* ati_reg.h */,
618C2A7513947DEC005E47FA /* befs.c */,
618C2A7613947DEC005E47FA /* befs.h */,
618C2A7713947DEC005E47FA /* bios.h */,
618C2A7813947DEC005E47FA /* bios.s */,
618C2A7913947DEC005E47FA /* biosfn.c */,
618C2A7A13947DEC005E47FA /* bootargs.h */,
618C2A7B13947DEC005E47FA /* bootstruct.c */,
618C2A7C13947DEC005E47FA /* bootstruct.h */,
618C2A7D13947DEC005E47FA /* cache.c */,
618C2A7E13947DEC005E47FA /* Cconfig */,
618C2A7F13947DEC005E47FA /* console.c */,
618C2A8013947DEC005E47FA /* convert.c */,
618C2A8113947DEC005E47FA /* convert.h */,
618C2A8213947DEC005E47FA /* cpu.c */,
618C2A8313947DEC005E47FA /* cpu.h */,
618C2A8413947DEC005E47FA /* device_inject.c */,
618C2A8513947DEC005E47FA /* device_inject.h */,
618C2A8613947DEC005E47FA /* device_tree.c */,
618C2A8713947DEC005E47FA /* device_tree.h */,
618C2A8813947DEC005E47FA /* disk.c */,
618C2A8913947DEC005E47FA /* disk.h */,
618C2A8A13947DEC005E47FA /* dram_controllers.c */,
618C2A8B13947DEC005E47FA /* dram_controllers.h */,
618C2A8C13947DEC005E47FA /* efi.h */,
618C2A8D13947DEC005E47FA /* ext2fs.c */,
618C2A8E13947DEC005E47FA /* ext2fs.h */,
618C2A8F13947DEC005E47FA /* fake_efi.c */,
618C2A9013947DEC005E47FA /* fake_efi.h */,
618C2A9113947DEC005E47FA /* fdisk.h */,
618C2A9213947DEC005E47FA /* freebsd.c */,
618C2A9313947DEC005E47FA /* freebsd.h */,
618C2A9413947DEC005E47FA /* hfs.c */,
618C2A9513947DEC005E47FA /* hfs.h */,
618C2A9613947DEC005E47FA /* hfs_CaseTables.h */,
618C2A9713947DEC005E47FA /* hfs_compare.c */,
618C2A9813947DEC005E47FA /* hpet.c */,
618C2A9913947DEC005E47FA /* hpet.h */,
618C2A9A13947DEC005E47FA /* io_inline.h */,
618C2A9B13947DEC005E47FA /* libsaio.h */,
618C2A9C13947DEC005E47FA /* load.c */,
618C2A9D13947DEC005E47FA /* Makefile */,
618C2A9E13947DEC005E47FA /* md5c.c */,
618C2A9F13947DEC005E47FA /* memvendors.h */,
618C2AA013947DEC005E47FA /* misc.c */,
618C2AA113947DEC005E47FA /* msdos.c */,
618C2AA213947DEC005E47FA /* msdos.h */,
618C2AA313947DEC005E47FA /* msdos_private.h */,
618C2AA413947DEC005E47FA /* nbp.c */,
618C2AA513947DEC005E47FA /* nbp_cmd.h */,
618C2AA613947DEC005E47FA /* ntfs.c */,
618C2AA713947DEC005E47FA /* ntfs.h */,
618C2AA813947DEC005E47FA /* ntfs_private.h */,
618C2AA913947DEC005E47FA /* nvidia.c */,
618C2AAA13947DEC005E47FA /* nvidia.h */,
618C2AAB13947DEC005E47FA /* openbsd.c */,
618C2AAC13947DEC005E47FA /* openbsd.h */,
618C2AAD13947DEC005E47FA /* pci.c */,
618C2AAE13947DEC005E47FA /* pci.h */,
618C2AAF13947DEC005E47FA /* pci_root.c */,
618C2AB013947DEC005E47FA /* pci_root.h */,
618C2AB113947DEC005E47FA /* pci_setup.c */,
618C2AB213947DEC005E47FA /* platform.c */,
618C2AB313947DEC005E47FA /* platform.h */,
618C2AB413947DEC005E47FA /* saio_internal.h */,
618C2AB513947DEC005E47FA /* saio_types.h */,
618C2AB613947DEC005E47FA /* sl.h */,
618C2AB713947DEC005E47FA /* smbios.c */,
618C2AB813947DEC005E47FA /* smbios.h */,
618C2AB913947DEC005E47FA /* smbios_decode.c */,
618C2ABA13947DEC005E47FA /* smbios_getters.c */,
618C2ABB13947DEC005E47FA /* smbios_getters.h */,
618C2ABC13947DEC005E47FA /* spd.c */,
618C2ABD13947DEC005E47FA /* spd.h */,
618C2ABE13947DEC005E47FA /* stringTable.c */,
618C2ABF13947DEC005E47FA /* sys.c */,
618C2AC013947DEC005E47FA /* table.c */,
618C2AC113947DEC005E47FA /* ufs.c */,
618C2AC213947DEC005E47FA /* ufs.h */,
618C2AC313947DEC005E47FA /* ufs_byteorder.c */,
618C2AC413947DEC005E47FA /* ufs_byteorder.h */,
618C2AC513947DEC005E47FA /* usb.c */,
618C2AC613947DEC005E47FA /* vbe.c */,
618C2AC713947DEC005E47FA /* vbe.h */,
618C2AC813947DEC005E47FA /* xml.c */,
618C2AC913947DEC005E47FA /* xml.h */,
);
path = libsaio;
sourceTree = "<group>";
};
619A54FC1391DC75001AAD40 /* modules */ = {
618C2ACC13947DEC005E47FA /* modules */ = {
isa = PBXGroup;
children = (
619A54FD1391DC75001AAD40 /* AMDGraphicsEnabler */,
619A55041391DC75001AAD40 /* ATiGraphicsEnabler */,
619A550B1391DC75001AAD40 /* Cconfig */,
619A550C1391DC75001AAD40 /* HelloWorld */,
619A55111391DC75001AAD40 /* include */,
619A55141391DC75001AAD40 /* IntelGraphicsEnabler */,
619A551B1391DC75001AAD40 /* klibc */,
619A55651391DC75001AAD40 /* Makefile */,
619A55661391DC75001AAD40 /* MakeInc.dir */,
619A55671391DC75001AAD40 /* Modules.txt */,
619A55681391DC75001AAD40 /* NVIDIAGraphicsEnabler */,
619A556F1391DC75001AAD40 /* Resolution */,
619A557A1391DC75001AAD40 /* uClibcxx */,
618C2ACD13947DEC005E47FA /* AMDGraphicsEnabler */,
618C2AD413947DEC005E47FA /* ATiGraphicsEnabler */,
618C2ADB13947DEC005E47FA /* Cconfig */,
618C2ADC13947DEC005E47FA /* HelloWorld */,
618C2AE113947DEC005E47FA /* include */,
618C2AE313947DEC005E47FA /* IntelGraphicsEnabler */,
618C2AEA13947DEC005E47FA /* klibc */,
618C2B3413947DEC005E47FA /* Makefile */,
618C2B3513947DEC005E47FA /* MakeInc.dir */,
618C2B3613947DEC005E47FA /* Modules.txt */,
618C2B3713947DEC005E47FA /* NVIDIAGraphicsEnabler */,
618C2B3E13947DEC005E47FA /* Resolution */,
618C2B4913947DEC005E47FA /* uClibcxx */,
);
path = modules;
sourceTree = "<group>";
};
619A54FD1391DC75001AAD40 /* AMDGraphicsEnabler */ = {
618C2ACD13947DEC005E47FA /* AMDGraphicsEnabler */ = {
isa = PBXGroup;
children = (
619A54FE1391DC75001AAD40 /* AMDGraphicsEnabler.c */,
619A54FF1391DC75001AAD40 /* ati.c */,
619A55001391DC75001AAD40 /* ati_reg.h */,
619A55011391DC75001AAD40 /* Cconfig */,
619A55021391DC75001AAD40 /* Makefile */,
619A55031391DC75001AAD40 /* Readme.txt */,
618C2ACE13947DEC005E47FA /* AMDGraphicsEnabler.c */,
618C2ACF13947DEC005E47FA /* ati.c */,
618C2AD013947DEC005E47FA /* ati_reg.h */,
618C2AD113947DEC005E47FA /* Cconfig */,
618C2AD213947DEC005E47FA /* Makefile */,
618C2AD313947DEC005E47FA /* Readme.txt */,
);
path = AMDGraphicsEnabler;
sourceTree = "<group>";
};
619A55041391DC75001AAD40 /* ATiGraphicsEnabler */ = {
618C2AD413947DEC005E47FA /* ATiGraphicsEnabler */ = {
isa = PBXGroup;
children = (
619A55051391DC75001AAD40 /* ati.c */,
619A55061391DC75001AAD40 /* ati.h */,
619A55071391DC75001AAD40 /* ATiGraphicsEnabler.c */,
619A55081391DC75001AAD40 /* Cconfig */,
619A55091391DC75001AAD40 /* Makefile */,
619A550A1391DC75001AAD40 /* Readme.txt */,
618C2AD513947DEC005E47FA /* ati.c */,
618C2AD613947DEC005E47FA /* ati.h */,
618C2AD713947DEC005E47FA /* ATiGraphicsEnabler.c */,
618C2AD813947DEC005E47FA /* Cconfig */,
618C2AD913947DEC005E47FA /* Makefile */,
618C2ADA13947DEC005E47FA /* Readme.txt */,
);
path = ATiGraphicsEnabler;
sourceTree = "<group>";
};
619A550C1391DC75001AAD40 /* HelloWorld */ = {
618C2ADC13947DEC005E47FA /* HelloWorld */ = {
isa = PBXGroup;
children = (
619A550D1391DC75001AAD40 /* Cconfig */,
619A550E1391DC75001AAD40 /* HelloWorld.cpp */,
619A550F1391DC75001AAD40 /* include */,
619A55101391DC75001AAD40 /* Makefile */,
618C2ADD13947DEC005E47FA /* Cconfig */,
618C2ADE13947DEC005E47FA /* HelloWorld.cpp */,
618C2ADF13947DEC005E47FA /* include */,
618C2AE013947DEC005E47FA /* Makefile */,
);
path = HelloWorld;
sourceTree = "<group>";
};
619A550F1391DC75001AAD40 /* include */ = {
618C2ADF13947DEC005E47FA /* include */ = {
isa = PBXGroup;
children = (
);
path = include;
sourceTree = "<group>";
};
619A55111391DC75001AAD40 /* include */ = {
618C2AE113947DEC005E47FA /* include */ = {
isa = PBXGroup;
children = (
619A55121391DC75001AAD40 /* modules */,
619A55131391DC75001AAD40 /* types.h */,
618C2AE213947DEC005E47FA /* modules */,
);
path = include;
sourceTree = "<group>";
};
619A55141391DC75001AAD40 /* IntelGraphicsEnabler */ = {
618C2AE313947DEC005E47FA /* IntelGraphicsEnabler */ = {
isa = PBXGroup;
children = (
619A55151391DC75001AAD40 /* Cconfig */,
619A55161391DC75001AAD40 /* gma.c */,
619A55171391DC75001AAD40 /* gma.h */,
619A55181391DC75001AAD40 /* IntelGraphicsEnabler.c */,
619A55191391DC75001AAD40 /* Makefile */,
619A551A1391DC75001AAD40 /* Readme.txt */,
618C2AE413947DEC005E47FA /* Cconfig */,
618C2AE513947DEC005E47FA /* gma.c */,
618C2AE613947DEC005E47FA /* gma.h */,
618C2AE713947DEC005E47FA /* IntelGraphicsEnabler.c */,
618C2AE813947DEC005E47FA /* Makefile */,
618C2AE913947DEC005E47FA /* Readme.txt */,
);
path = IntelGraphicsEnabler;
sourceTree = "<group>";
};
619A551B1391DC75001AAD40 /* klibc */ = {
618C2AEA13947DEC005E47FA /* klibc */ = {
isa = PBXGroup;
children = (
619A551C1391DC75001AAD40 /* __ashldi3.c */,
619A551D1391DC75001AAD40 /* __ashrdi3.c */,
619A551E1391DC75001AAD40 /* __clzsi2.c */,
619A551F1391DC75001AAD40 /* __divdi3.c */,
619A55201391DC75001AAD40 /* __divsi3.c */,
619A55211391DC75001AAD40 /* __lshrdi3.c */,
619A55221391DC75001AAD40 /* __moddi3.c */,
619A55231391DC75001AAD40 /* __modsi3.c */,
619A55241391DC75001AAD40 /* __udivdi3.c */,
619A55251391DC75001AAD40 /* __udivmoddi4.c */,
619A55261391DC75001AAD40 /* __udivmodsi4.c */,
619A55271391DC75001AAD40 /* __udivsi3.c */,
619A55281391DC75001AAD40 /* __umoddi3.c */,
619A55291391DC75001AAD40 /* __umodsi3.c */,
619A552A1391DC75001AAD40 /* atexit.c */,
619A552B1391DC75001AAD40 /* atexit.h */,
619A552C1391DC75001AAD40 /* atoi.c */,
619A552D1391DC75001AAD40 /* atol.c */,
619A552E1391DC75001AAD40 /* atoll.c */,
619A552F1391DC75001AAD40 /* atox.c */,
619A55301391DC75001AAD40 /* bsearch.c */,
619A55311391DC75001AAD40 /* calloc.c */,
619A55321391DC75001AAD40 /* Cconfig */,
619A55331391DC75001AAD40 /* exit.c */,
619A55341391DC75001AAD40 /* jrand48.c */,
619A55351391DC75001AAD40 /* klibc.c */,
619A55361391DC75001AAD40 /* LICENSE */,
619A55371391DC75001AAD40 /* limits.h */,
619A55381391DC75001AAD40 /* lrand48.c */,
619A55391391DC75001AAD40 /* Makefile */,
619A553A1391DC75001AAD40 /* memccpy.c */,
619A553B1391DC75001AAD40 /* memchr.c */,
619A553C1391DC75001AAD40 /* memmem.c */,
619A553D1391DC75001AAD40 /* memmove.c */,
619A553E1391DC75001AAD40 /* memrchr.c */,
619A553F1391DC75001AAD40 /* memswap.c */,
619A55401391DC75001AAD40 /* mrand48.c */,
619A55411391DC75001AAD40 /* nrand48.c */,
619A55421391DC75001AAD40 /* onexit.c */,
619A55431391DC75001AAD40 /* qsort.c */,
619A55441391DC75001AAD40 /* Readme.txt */,
619A55451391DC75001AAD40 /* seed48.c */,
619A55461391DC75001AAD40 /* sha1hash.c */,
619A55471391DC75001AAD40 /* snprintf.c */,
619A55481391DC75001AAD40 /* srand48.c */,
619A55491391DC75001AAD40 /* sscanf.c */,
619A554A1391DC75001AAD40 /* strcasecmp.c */,
619A554B1391DC75001AAD40 /* strdup.c */,
619A554C1391DC75001AAD40 /* strlcat.c */,
619A554D1391DC75001AAD40 /* strncasecmp.c */,
619A554E1391DC75001AAD40 /* strndup.c */,
619A554F1391DC75001AAD40 /* strnlen.c */,
619A55501391DC75001AAD40 /* strntoimax.c */,
619A55511391DC75001AAD40 /* strntoumax.c */,
619A55521391DC75001AAD40 /* strpbrk.c */,
619A55531391DC75001AAD40 /* strsep.c */,
619A55541391DC75001AAD40 /* strtoimax.c */,
619A55551391DC75001AAD40 /* strtok.c */,
619A55561391DC75001AAD40 /* strtok_r.c */,
619A55571391DC75001AAD40 /* strtol.c */,
619A55581391DC75001AAD40 /* strtoll.c */,
619A55591391DC75001AAD40 /* strtotimespec.c */,
619A555A1391DC75001AAD40 /* strtotimeval.c */,
619A555B1391DC75001AAD40 /* strtotimex.c */,
619A555C1391DC75001AAD40 /* strtoul.c */,
619A555D1391DC75001AAD40 /* strtoull.c */,
619A555E1391DC75001AAD40 /* strtoumax.c */,
619A555F1391DC75001AAD40 /* strtox.c */,
619A55601391DC75001AAD40 /* strxspn.c */,
619A55611391DC75001AAD40 /* strxspn.h */,
619A55621391DC75001AAD40 /* version */,
619A55631391DC75001AAD40 /* vsnprintf.c */,
619A55641391DC75001AAD40 /* vsscanf.c */,
618C2AEB13947DEC005E47FA /* __ashldi3.c */,
618C2AEC13947DEC005E47FA /* __ashrdi3.c */,
618C2AED13947DEC005E47FA /* __clzsi2.c */,
618C2AEE13947DEC005E47FA /* __divdi3.c */,
618C2AEF13947DEC005E47FA /* __divsi3.c */,
618C2AF013947DEC005E47FA /* __lshrdi3.c */,
618C2AF113947DEC005E47FA /* __moddi3.c */,
618C2AF213947DEC005E47FA /* __modsi3.c */,
618C2AF313947DEC005E47FA /* __udivdi3.c */,
618C2AF413947DEC005E47FA /* __udivmoddi4.c */,
618C2AF513947DEC005E47FA /* __udivmodsi4.c */,
618C2AF613947DEC005E47FA /* __udivsi3.c */,
618C2AF713947DEC005E47FA /* __umoddi3.c */,
618C2AF813947DEC005E47FA /* __umodsi3.c */,
618C2AF913947DEC005E47FA /* atexit.c */,
618C2AFA13947DEC005E47FA /* atexit.h */,
618C2AFB13947DEC005E47FA /* atoi.c */,
618C2AFC13947DEC005E47FA /* atol.c */,
618C2AFD13947DEC005E47FA /* atoll.c */,
618C2AFE13947DEC005E47FA /* atox.c */,
618C2AFF13947DEC005E47FA /* bsearch.c */,
618C2B0013947DEC005E47FA /* calloc.c */,
618C2B0113947DEC005E47FA /* Cconfig */,
618C2B0213947DEC005E47FA /* exit.c */,
618C2B0313947DEC005E47FA /* jrand48.c */,
618C2B0413947DEC005E47FA /* klibc.c */,
618C2B0513947DEC005E47FA /* LICENSE */,
618C2B0613947DEC005E47FA /* limits.h */,
618C2B0713947DEC005E47FA /* lrand48.c */,
618C2B0813947DEC005E47FA /* Makefile */,
618C2B0913947DEC005E47FA /* memccpy.c */,
618C2B0A13947DEC005E47FA /* memchr.c */,
618C2B0B13947DEC005E47FA /* memmem.c */,
618C2B0C13947DEC005E47FA /* memmove.c */,
618C2B0D13947DEC005E47FA /* memrchr.c */,
618C2B0E13947DEC005E47FA /* memswap.c */,
618C2B0F13947DEC005E47FA /* mrand48.c */,
618C2B1013947DEC005E47FA /* nrand48.c */,
618C2B1113947DEC005E47FA /* onexit.c */,
618C2B1213947DEC005E47FA /* qsort.c */,
618C2B1313947DEC005E47FA /* Readme.txt */,
618C2B1413947DEC005E47FA /* seed48.c */,
618C2B1513947DEC005E47FA /* sha1hash.c */,
618C2B1613947DEC005E47FA /* snprintf.c */,
618C2B1713947DEC005E47FA /* srand48.c */,
618C2B1813947DEC005E47FA /* sscanf.c */,
618C2B1913947DEC005E47FA /* strcasecmp.c */,
618C2B1A13947DEC005E47FA /* strdup.c */,
618C2B1B13947DEC005E47FA /* strlcat.c */,
618C2B1C13947DEC005E47FA /* strncasecmp.c */,
618C2B1D13947DEC005E47FA /* strndup.c */,
618C2B1E13947DEC005E47FA /* strnlen.c */,
618C2B1F13947DEC005E47FA /* strntoimax.c */,
618C2B2013947DEC005E47FA /* strntoumax.c */,
618C2B2113947DEC005E47FA /* strpbrk.c */,
618C2B2213947DEC005E47FA /* strsep.c */,
618C2B2313947DEC005E47FA /* strtoimax.c */,
618C2B2413947DEC005E47FA /* strtok.c */,
618C2B2513947DEC005E47FA /* strtok_r.c */,
618C2B2613947DEC005E47FA /* strtol.c */,
618C2B2713947DEC005E47FA /* strtoll.c */,
618C2B2813947DEC005E47FA /* strtotimespec.c */,
618C2B2913947DEC005E47FA /* strtotimeval.c */,
618C2B2A13947DEC005E47FA /* strtotimex.c */,
618C2B2B13947DEC005E47FA /* strtoul.c */,
618C2B2C13947DEC005E47FA /* strtoull.c */,
618C2B2D13947DEC005E47FA /* strtoumax.c */,
618C2B2E13947DEC005E47FA /* strtox.c */,
618C2B2F13947DEC005E47FA /* strxspn.c */,
618C2B3013947DEC005E47FA /* strxspn.h */,
618C2B3113947DEC005E47FA /* version */,
618C2B3213947DEC005E47FA /* vsnprintf.c */,
618C2B3313947DEC005E47FA /* vsscanf.c */,
);
path = klibc;
sourceTree = "<group>";
};
619A55681391DC75001AAD40 /* NVIDIAGraphicsEnabler */ = {
618C2B3713947DEC005E47FA /* NVIDIAGraphicsEnabler */ = {
isa = PBXGroup;
children = (
619A55691391DC75001AAD40 /* Cconfig */,
619A556A1391DC75001AAD40 /* Makefile */,
619A556B1391DC75001AAD40 /* nvidia.c */,
619A556C1391DC75001AAD40 /* nvidia.h */,
619A556D1391DC75001AAD40 /* NVIDIAGraphicsEnabler.c */,
619A556E1391DC75001AAD40 /* Readme.txt */,
618C2B3813947DEC005E47FA /* Cconfig */,
618C2B3913947DEC005E47FA /* Makefile */,
618C2B3A13947DEC005E47FA /* nvidia.c */,
618C2B3B13947DEC005E47FA /* nvidia.h */,
618C2B3C13947DEC005E47FA /* NVIDIAGraphicsEnabler.c */,
618C2B3D13947DEC005E47FA /* Readme.txt */,
);
path = NVIDIAGraphicsEnabler;
sourceTree = "<group>";
};
619A556F1391DC75001AAD40 /* Resolution */ = {
618C2B3E13947DEC005E47FA /* Resolution */ = {
isa = PBXGroup;
children = (
619A55701391DC75001AAD40 /* 915resolution.c */,
619A55711391DC75001AAD40 /* 915resolution.h */,
619A55721391DC75001AAD40 /* Cconfig */,
619A55731391DC75001AAD40 /* edid.c */,
619A55741391DC75001AAD40 /* include */,
619A55761391DC75001AAD40 /* Makefile */,
619A55771391DC75001AAD40 /* Readme.txt */,
619A55781391DC75001AAD40 /* Resolution.c */,
619A55791391DC75001AAD40 /* shortatombios.h */,
618C2B3F13947DEC005E47FA /* 915resolution.c */,
618C2B4013947DEC005E47FA /* 915resolution.h */,
618C2B4113947DEC005E47FA /* Cconfig */,
618C2B4213947DEC005E47FA /* edid.c */,
618C2B4313947DEC005E47FA /* include */,
618C2B4513947DEC005E47FA /* Makefile */,
618C2B4613947DEC005E47FA /* Readme.txt */,
618C2B4713947DEC005E47FA /* Resolution.c */,
618C2B4813947DEC005E47FA /* shortatombios.h */,
);
path = Resolution;
sourceTree = "<group>";
};
619A55741391DC75001AAD40 /* include */ = {
618C2B4313947DEC005E47FA /* include */ = {
isa = PBXGroup;
children = (
619A55751391DC75001AAD40 /* edid.h */,
618C2B4413947DEC005E47FA /* edid.h */,
);
path = include;
sourceTree = "<group>";
};
619A557A1391DC75001AAD40 /* uClibcxx */ = {
618C2B4913947DEC005E47FA /* uClibcxx */ = {
isa = PBXGroup;
children = (
619A557B1391DC75001AAD40 /* abi.cpp */,
619A557C1391DC75001AAD40 /* algorithm.cpp */,
619A557D1391DC75001AAD40 /* associative_base.cpp */,
619A557E1391DC75001AAD40 /* bitset.cpp */,
619A557F1391DC75001AAD40 /* Cconfig */,
619A55801391DC75001AAD40 /* char_traits.cpp */,
619A55811391DC75001AAD40 /* complex.cpp */,
619A55821391DC75001AAD40 /* del_op.cpp */,
619A55831391DC75001AAD40 /* del_opnt.cpp */,
619A55841391DC75001AAD40 /* del_opv.cpp */,
619A55851391DC75001AAD40 /* del_opvnt.cpp */,
619A55861391DC75001AAD40 /* deque.cpp */,
619A55871391DC75001AAD40 /* eh_alloc.cpp */,
619A55881391DC75001AAD40 /* eh_globals.cpp */,
619A55891391DC75001AAD40 /* exception.cpp */,
619A558A1391DC75001AAD40 /* fstream.cpp */,
619A558B1391DC75001AAD40 /* func_exception.cpp */,
619A558C1391DC75001AAD40 /* include */,
619A55CE1391DC75001AAD40 /* iomanip.cpp */,
619A55CF1391DC75001AAD40 /* ios.cpp */,
619A55D01391DC75001AAD40 /* iostream.cpp */,
619A55D11391DC75001AAD40 /* istream.cpp */,
619A55D21391DC75001AAD40 /* iterator.cpp */,
619A55D31391DC75001AAD40 /* limits.cpp */,
619A55D41391DC75001AAD40 /* list.cpp */,
619A55D51391DC75001AAD40 /* locale.cpp */,
619A55D61391DC75001AAD40 /* Makefile */,
619A55D71391DC75001AAD40 /* map.cpp */,
619A55D81391DC75001AAD40 /* new_handler.cpp */,
619A55D91391DC75001AAD40 /* new_op.cpp */,
619A55DA1391DC75001AAD40 /* new_opnt.cpp */,
619A55DB1391DC75001AAD40 /* new_opv.cpp */,
619A55DC1391DC75001AAD40 /* new_opvnt.cpp */,
619A55DD1391DC75001AAD40 /* numeric.cpp */,
619A55DE1391DC75001AAD40 /* ostream.cpp */,
619A55DF1391DC75001AAD40 /* queue.cpp */,
619A55E01391DC75001AAD40 /* Readme.txt */,
619A55E11391DC75001AAD40 /* set.cpp */,
619A55E21391DC75001AAD40 /* sstream.cpp */,
619A55E31391DC75001AAD40 /* stack.cpp */,
619A55E41391DC75001AAD40 /* stdexcept.cpp */,
619A55E51391DC75001AAD40 /* streambuf.cpp */,
619A55E61391DC75001AAD40 /* string.cpp */,
619A55E71391DC75001AAD40 /* support.cpp */,
619A55E81391DC75001AAD40 /* typeinfo.cpp */,
619A55E91391DC75001AAD40 /* uClibc++.c */,
619A55EA1391DC75001AAD40 /* utility.cpp */,
619A55EB1391DC75001AAD40 /* valarray.cpp */,
619A55EC1391DC75001AAD40 /* vector.cpp */,
618C2B4A13947DEC005E47FA /* abi.cpp */,
618C2B4B13947DEC005E47FA /* algorithm.cpp */,
618C2B4C13947DEC005E47FA /* associative_base.cpp */,
618C2B4D13947DEC005E47FA /* bitset.cpp */,
618C2B4E13947DEC005E47FA /* Cconfig */,
618C2B4F13947DEC005E47FA /* char_traits.cpp */,
618C2B5013947DEC005E47FA /* complex.cpp */,
618C2B5113947DEC005E47FA /* del_op.cpp */,
618C2B5213947DEC005E47FA /* del_opnt.cpp */,
618C2B5313947DEC005E47FA /* del_opv.cpp */,
618C2B5413947DEC005E47FA /* del_opvnt.cpp */,
618C2B5513947DEC005E47FA /* deque.cpp */,
618C2B5613947DEC005E47FA /* eh_alloc.cpp */,
618C2B5713947DEC005E47FA /* eh_globals.cpp */,
618C2B5813947DEC005E47FA /* exception.cpp */,
618C2B5913947DEC005E47FA /* fstream.cpp */,
618C2B5A13947DEC005E47FA /* func_exception.cpp */,
618C2B5B13947DEC005E47FA /* include */,
618C2B9D13947DEC005E47FA /* iomanip.cpp */,
618C2B9E13947DEC005E47FA /* ios.cpp */,
618C2B9F13947DEC005E47FA /* iostream.cpp */,
618C2BA013947DEC005E47FA /* istream.cpp */,
618C2BA113947DEC005E47FA /* iterator.cpp */,
618C2BA213947DEC005E47FA /* limits.cpp */,
618C2BA313947DEC005E47FA /* list.cpp */,
618C2BA413947DEC005E47FA /* locale.cpp */,
618C2BA513947DEC005E47FA /* Makefile */,
618C2BA613947DEC005E47FA /* map.cpp */,
618C2BA713947DEC005E47FA /* new_handler.cpp */,
618C2BA813947DEC005E47FA /* new_op.cpp */,
618C2BA913947DEC005E47FA /* new_opnt.cpp */,
618C2BAA13947DEC005E47FA /* new_opv.cpp */,
618C2BAB13947DEC005E47FA /* new_opvnt.cpp */,
618C2BAC13947DEC005E47FA /* numeric.cpp */,
618C2BAD13947DEC005E47FA /* ostream.cpp */,
618C2BAE13947DEC005E47FA /* queue.cpp */,
618C2BAF13947DEC005E47FA /* Readme.txt */,
618C2BB013947DEC005E47FA /* set.cpp */,
618C2BB113947DEC005E47FA /* sstream.cpp */,
618C2BB213947DEC005E47FA /* stack.cpp */,
618C2BB313947DEC005E47FA /* stdexcept.cpp */,
618C2BB413947DEC005E47FA /* streambuf.cpp */,
618C2BB513947DEC005E47FA /* string.cpp */,
618C2BB613947DEC005E47FA /* support.cpp */,
618C2BB713947DEC005E47FA /* typeinfo.cpp */,
618C2BB813947DEC005E47FA /* uClibc++.c */,
618C2BB913947DEC005E47FA /* utility.cpp */,
618C2BBA13947DEC005E47FA /* valarray.cpp */,
618C2BBB13947DEC005E47FA /* vector.cpp */,
);
path = uClibcxx;
sourceTree = "<group>";
};
619A558C1391DC75001AAD40 /* include */ = {
618C2B5B13947DEC005E47FA /* include */ = {
isa = PBXGroup;
children = (
619A558D1391DC75001AAD40 /* algorithm */,
619A558E1391DC75001AAD40 /* associative_base */,
619A558F1391DC75001AAD40 /* basic_definitions */,
619A55901391DC75001AAD40 /* bitset */,
619A55911391DC75001AAD40 /* cassert */,
619A55921391DC75001AAD40 /* cctype */,
619A55931391DC75001AAD40 /* cerrno */,
619A55941391DC75001AAD40 /* cfloat */,
619A55951391DC75001AAD40 /* char_traits */,
619A55961391DC75001AAD40 /* climits */,
619A55971391DC75001AAD40 /* clocale */,
619A55981391DC75001AAD40 /* cmath */,
619A55991391DC75001AAD40 /* complex */,
619A559A1391DC75001AAD40 /* csetjmp */,
619A559B1391DC75001AAD40 /* csignal */,
619A559C1391DC75001AAD40 /* cstdarg */,
619A559D1391DC75001AAD40 /* cstddef */,
619A559E1391DC75001AAD40 /* cstdio */,
619A559F1391DC75001AAD40 /* cstdlib */,
619A55A01391DC75001AAD40 /* cstring */,
619A55A11391DC75001AAD40 /* ctime */,
619A55A21391DC75001AAD40 /* cwchar */,
619A55A31391DC75001AAD40 /* cwctype */,
619A55A41391DC75001AAD40 /* deque */,
619A55A51391DC75001AAD40 /* exception */,
619A55A61391DC75001AAD40 /* fstream */,
619A55A71391DC75001AAD40 /* func_exception */,
619A55A81391DC75001AAD40 /* functional */,
619A55A91391DC75001AAD40 /* iomanip */,
619A55AA1391DC75001AAD40 /* ios */,
619A55AB1391DC75001AAD40 /* iosfwd */,
619A55AC1391DC75001AAD40 /* iostream */,
619A55AD1391DC75001AAD40 /* istream */,
619A55AE1391DC75001AAD40 /* istream_helpers */,
619A55AF1391DC75001AAD40 /* iterator */,
619A55B01391DC75001AAD40 /* iterator_base */,
619A55B11391DC75001AAD40 /* limits */,
619A55B21391DC75001AAD40 /* list */,
619A55B31391DC75001AAD40 /* locale */,
619A55B41391DC75001AAD40 /* Makefile */,
619A55B51391DC75001AAD40 /* map */,
619A55B61391DC75001AAD40 /* map.old */,
619A55B71391DC75001AAD40 /* memory */,
619A55B81391DC75001AAD40 /* new */,
619A55B91391DC75001AAD40 /* numeric */,
619A55BA1391DC75001AAD40 /* ostream */,
619A55BB1391DC75001AAD40 /* ostream_helpers */,
619A55BC1391DC75001AAD40 /* queue */,
619A55BD1391DC75001AAD40 /* set */,
619A55BE1391DC75001AAD40 /* set.old */,
619A55BF1391DC75001AAD40 /* sstream */,
619A55C01391DC75001AAD40 /* stack */,
619A55C11391DC75001AAD40 /* stdexcept */,
619A55C21391DC75001AAD40 /* streambuf */,
619A55C31391DC75001AAD40 /* string */,
619A55C41391DC75001AAD40 /* string_iostream */,
619A55C51391DC75001AAD40 /* support */,
619A55C61391DC75001AAD40 /* system_configuration.h */,
619A55C71391DC75001AAD40 /* type_traits */,
619A55C81391DC75001AAD40 /* typeinfo */,
619A55C91391DC75001AAD40 /* types */,
619A55CA1391DC75001AAD40 /* unwind-cxx.h */,
619A55CB1391DC75001AAD40 /* utility */,
619A55CC1391DC75001AAD40 /* valarray */,
619A55CD1391DC75001AAD40 /* vector */,
618C2B5C13947DEC005E47FA /* algorithm */,
618C2B5D13947DEC005E47FA /* associative_base */,
618C2B5E13947DEC005E47FA /* basic_definitions */,
618C2B5F13947DEC005E47FA /* bitset */,
618C2B6013947DEC005E47FA /* cassert */,
618C2B6113947DEC005E47FA /* cctype */,
618C2B6213947DEC005E47FA /* cerrno */,
618C2B6313947DEC005E47FA /* cfloat */,
618C2B6413947DEC005E47FA /* char_traits */,
618C2B6513947DEC005E47FA /* climits */,
618C2B6613947DEC005E47FA /* clocale */,
618C2B6713947DEC005E47FA /* cmath */,
618C2B6813947DEC005E47FA /* complex */,
618C2B6913947DEC005E47FA /* csetjmp */,
618C2B6A13947DEC005E47FA /* csignal */,
618C2B6B13947DEC005E47FA /* cstdarg */,
618C2B6C13947DEC005E47FA /* cstddef */,
618C2B6D13947DEC005E47FA /* cstdio */,
618C2B6E13947DEC005E47FA /* cstdlib */,
618C2B6F13947DEC005E47FA /* cstring */,
618C2B7013947DEC005E47FA /* ctime */,
618C2B7113947DEC005E47FA /* cwchar */,
618C2B7213947DEC005E47FA /* cwctype */,
618C2B7313947DEC005E47FA /* deque */,
618C2B7413947DEC005E47FA /* exception */,
618C2B7513947DEC005E47FA /* fstream */,
618C2B7613947DEC005E47FA /* func_exception */,
618C2B7713947DEC005E47FA /* functional */,
618C2B7813947DEC005E47FA /* iomanip */,
618C2B7913947DEC005E47FA /* ios */,
618C2B7A13947DEC005E47FA /* iosfwd */,
618C2B7B13947DEC005E47FA /* iostream */,
618C2B7C13947DEC005E47FA /* istream */,
618C2B7D13947DEC005E47FA /* istream_helpers */,
618C2B7E13947DEC005E47FA /* iterator */,
618C2B7F13947DEC005E47FA /* iterator_base */,
618C2B8013947DEC005E47FA /* limits */,
618C2B8113947DEC005E47FA /* list */,
618C2B8213947DEC005E47FA /* locale */,
618C2B8313947DEC005E47FA /* Makefile */,
618C2B8413947DEC005E47FA /* map */,
618C2B8513947DEC005E47FA /* map.old */,
618C2B8613947DEC005E47FA /* memory */,
618C2B8713947DEC005E47FA /* new */,
618C2B8813947DEC005E47FA /* numeric */,
618C2B8913947DEC005E47FA /* ostream */,
618C2B8A13947DEC005E47FA /* ostream_helpers */,
618C2B8B13947DEC005E47FA /* queue */,
618C2B8C13947DEC005E47FA /* set */,
618C2B8D13947DEC005E47FA /* set.old */,
618C2B8E13947DEC005E47FA /* sstream */,
618C2B8F13947DEC005E47FA /* stack */,
618C2B9013947DEC005E47FA /* stdexcept */,
618C2B9113947DEC005E47FA /* streambuf */,
618C2B9213947DEC005E47FA /* string */,
618C2B9313947DEC005E47FA /* string_iostream */,
618C2B9413947DEC005E47FA /* support */,
618C2B9513947DEC005E47FA /* system_configuration.h */,
618C2B9613947DEC005E47FA /* type_traits */,
618C2B9713947DEC005E47FA /* typeinfo */,
618C2B9813947DEC005E47FA /* types */,
618C2B9913947DEC005E47FA /* unwind-cxx.h */,
618C2B9A13947DEC005E47FA /* utility */,
618C2B9B13947DEC005E47FA /* valarray */,
618C2B9C13947DEC005E47FA /* vector */,
);
path = include;
sourceTree = "<group>";
};
619A55ED1391DC75001AAD40 /* util */ = {
618C2BBC13947DEC005E47FA /* util */ = {
isa = PBXGroup;
children = (
619A55EE1391DC75001AAD40 /* bdmesg.c */,
619A55EF1391DC75001AAD40 /* Cconfig */,
619A55F01391DC75001AAD40 /* dyldsymboltool.c */,
619A55F11391DC75001AAD40 /* machOconv.c */,
619A55F21391DC75001AAD40 /* Makefile */,
618C2BBD13947DEC005E47FA /* bdmesg.c */,
618C2BBE13947DEC005E47FA /* Cconfig */,
618C2BBF13947DEC005E47FA /* dyldsymboltool.c */,
618C2BC013947DEC005E47FA /* fdisk */,
618C2BD713947DEC005E47FA /* machOconv.c */,
618C2BD813947DEC005E47FA /* Makefile */,
618C2BD913947DEC005E47FA /* openUp.c */,
);
path = util;
sourceTree = "<group>";
};
619A55F61391DC75001AAD40 /* package */ = {
618C2BC013947DEC005E47FA /* fdisk */ = {
isa = PBXGroup;
children = (
619A55F71391DC75001AAD40 /* builddmg */,
619A55F81391DC75001AAD40 /* buildpkg */,
619A55F91391DC75001AAD40 /* Configuration */,
619A56341391DC75001AAD40 /* Distribution */,
619A56351391DC75001AAD40 /* doc */,
619A56391391DC75001AAD40 /* fdisk440 */,
619A563A1391DC75001AAD40 /* Icon.zip */,
619A563B1391DC75001AAD40 /* Kexts */,
619A56421391DC75001AAD40 /* Resources */,
619A564E1391DC75001AAD40 /* Scripts */,
619A56A31391DC75001AAD40 /* slimpkg */,
619A56A41391DC75001AAD40 /* smbios.plist */,
618C2BC113947DEC005E47FA /* auto.c */,
618C2BC213947DEC005E47FA /* auto.h */,
618C2BC313947DEC005E47FA /* Cconfig */,
618C2BC413947DEC005E47FA /* cmd.c */,
618C2BC513947DEC005E47FA /* cmd.h */,
618C2BC613947DEC005E47FA /* disk.c */,
618C2BC713947DEC005E47FA /* disk.h */,
618C2BC813947DEC005E47FA /* fdisk.8 */,
618C2BC913947DEC005E47FA /* fdisk.c */,
618C2BCA13947DEC005E47FA /* getrawpartition.c */,
618C2BCB13947DEC005E47FA /* Makefile */,
618C2BCC13947DEC005E47FA /* mbr.c */,
618C2BCD13947DEC005E47FA /* mbr.h */,
618C2BCE13947DEC005E47FA /* mbrcode.h */,
618C2BCF13947DEC005E47FA /* misc.c */,
618C2BD013947DEC005E47FA /* misc.h */,
618C2BD113947DEC005E47FA /* opendev.c */,
618C2BD213947DEC005E47FA /* part.c */,
618C2BD313947DEC005E47FA /* part.h */,
618C2BD413947DEC005E47FA /* user.c */,
618C2BD513947DEC005E47FA /* user.h */,
618C2BD613947DEC005E47FA /* util.h */,
);
path = fdisk;
sourceTree = "<group>";
};
618C2BDD13947DEC005E47FA /* package */ = {
isa = PBXGroup;
children = (
618C2BDE13947DEC005E47FA /* builddmg */,
618C2BDF13947DEC005E47FA /* buildpkg */,
618C2BE013947DEC005E47FA /* Configuration */,
618C2C1B13947DEC005E47FA /* Distribution */,
618C2C1C13947DEC005E47FA /* dmg */,
618C2C2913947DEC005E47FA /* doc */,
618C2C2D13947DEC005E47FA /* Icon.zip */,
618C2C2E13947DEC005E47FA /* Kexts */,
618C2C3513947DEC005E47FA /* Resources */,
618C2C4113947DEC005E47FA /* Scripts */,
618C2C9613947DEC005E47FA /* slimpkg */,
618C2C9713947DEC005E47FA /* smbios.plist */,
);
path = package;
sourceTree = "<group>";
};
619A55F91391DC75001AAD40 /* Configuration */ = {
618C2BE013947DEC005E47FA /* Configuration */ = {
isa = PBXGroup;
children = (
619A55FA1391DC75001AAD40 /* EFIMounter */,
619A55FC1391DC75001AAD40 /* PrefPanel */,
619A56321391DC75001AAD40 /* SMBIOSDefault */,
618C2BE113947DEC005E47FA /* EFIMounter */,
618C2BE313947DEC005E47FA /* PrefPanel */,
618C2C1913947DEC005E47FA /* SMBIOSDefault */,
);
path = Configuration;
sourceTree = "<group>";
};
619A55FA1391DC75001AAD40 /* EFIMounter */ = {
618C2BE113947DEC005E47FA /* EFIMounter */ = {
isa = PBXGroup;
children = (
619A55FB1391DC75001AAD40 /* EFI Mounter.app */,
618C2BE213947DEC005E47FA /* EFI Mounter.app */,
);
path = EFIMounter;
sourceTree = "<group>";
};
619A55FC1391DC75001AAD40 /* PrefPanel */ = {
618C2BE313947DEC005E47FA /* PrefPanel */ = {
isa = PBXGroup;
children = (
619A55FD1391DC75001AAD40 /* Chameleon.prefPane */,
618C2BE413947DEC005E47FA /* Chameleon.prefPane */,
);
path = PrefPanel;
sourceTree = "<group>";
};
619A55FD1391DC75001AAD40 /* Chameleon.prefPane */ = {
618C2BE413947DEC005E47FA /* Chameleon.prefPane */ = {
isa = PBXGroup;
children = (
619A55FE1391DC75001AAD40 /* Contents */,
618C2BE513947DEC005E47FA /* Contents */,
);
path = Chameleon.prefPane;
sourceTree = "<group>";
};
619A55FE1391DC75001AAD40 /* Contents */ = {
618C2BE513947DEC005E47FA /* Contents */ = {
isa = PBXGroup;
children = (
619A55FF1391DC75001AAD40 /* Info.plist */,
619A56001391DC75001AAD40 /* MacOS */,
619A56021391DC75001AAD40 /* Resources */,
618C2BE613947DEC005E47FA /* Info.plist */,
618C2BE713947DEC005E47FA /* MacOS */,
618C2BE913947DEC005E47FA /* Resources */,
);
path = Contents;
sourceTree = "<group>";
};
619A56001391DC75001AAD40 /* MacOS */ = {
618C2BE713947DEC005E47FA /* MacOS */ = {
isa = PBXGroup;
children = (
619A56011391DC75001AAD40 /* Chameleon */,
618C2BE813947DEC005E47FA /* Chameleon */,
);
path = MacOS;
sourceTree = "<group>";
};
619A56021391DC75001AAD40 /* Resources */ = {
618C2BE913947DEC005E47FA /* Resources */ = {
isa = PBXGroup;
children = (
619A56031391DC75001AAD40 /* advanced.png */,
619A56041391DC75001AAD40 /* background.png */,
619A56051391DC75001AAD40 /* cdBootCreator.sh */,
619A56061391DC75001AAD40 /* CDROM.png */,
619A56071391DC75001AAD40 /* cham.png */,
619A56081391DC75001AAD40 /* Chameleon.icns */,
619A56091391DC75001AAD40 /* Chameleon.tiff */,
619A560A1391DC75001AAD40 /* chamsmall.png */,
619A560B1391DC75001AAD40 /* CHANGES */,
619A560C1391DC75001AAD40 /* chip.png */,
619A560D1391DC75001AAD40 /* CREDITS */,
619A560E1391DC75001AAD40 /* disk.png */,
619A560F1391DC75001AAD40 /* Chameleon.nib */,
619A56111391DC75001AAD40 /* Chameleon.strings */,
619A56131391DC75001AAD40 /* InfoPlist.strings */,
619A56151391DC75001AAD40 /* Localizable.strings */,
619A56171391DC75001AAD40 /* extractAcpi.sh */,
619A56181391DC75001AAD40 /* flag.png */,
619A56191391DC75001AAD40 /* footer.png */,
619A56201391DC75001AAD40 /* getDevProp.sh */,
619A56211391DC75001AAD40 /* gfxutil */,
619A56251391DC75001AAD40 /* Linux.png */,
619A56261391DC75001AAD40 /* MacOSX.png */,
619A56271391DC75001AAD40 /* name.png */,
619A56281391DC75001AAD40 /* plug.png */,
619A56291391DC75001AAD40 /* README */,
619A562D1391DC75001AAD40 /* syringe.png */,
619A562E1391DC75001AAD40 /* TODO */,
619A562F1391DC75001AAD40 /* version */,
619A56301391DC75001AAD40 /* Windows.png */,
619A56311391DC75001AAD40 /* wrench.png */,
618C2BEA13947DEC005E47FA /* advanced.png */,
618C2BEB13947DEC005E47FA /* background.png */,
618C2BEC13947DEC005E47FA /* cdBootCreator.sh */,
618C2BED13947DEC005E47FA /* CDROM.png */,
618C2BEE13947DEC005E47FA /* cham.png */,
618C2BEF13947DEC005E47FA /* Chameleon.icns */,
618C2BF013947DEC005E47FA /* Chameleon.tiff */,
618C2BF113947DEC005E47FA /* chamsmall.png */,
618C2BF213947DEC005E47FA /* CHANGES */,
618C2BF313947DEC005E47FA /* chip.png */,
618C2BF413947DEC005E47FA /* CREDITS */,
618C2BF513947DEC005E47FA /* disk.png */,
618C2BF613947DEC005E47FA /* Chameleon.nib */,
618C2BF813947DEC005E47FA /* Chameleon.strings */,
618C2BFA13947DEC005E47FA /* InfoPlist.strings */,
618C2BFC13947DEC005E47FA /* Localizable.strings */,
618C2BFE13947DEC005E47FA /* extractAcpi.sh */,
618C2BFF13947DEC005E47FA /* flag.png */,
618C2C0013947DEC005E47FA /* footer.png */,
618C2C0713947DEC005E47FA /* getDevProp.sh */,
618C2C0813947DEC005E47FA /* gfxutil */,
618C2C0C13947DEC005E47FA /* Linux.png */,
618C2C0D13947DEC005E47FA /* MacOSX.png */,
618C2C0E13947DEC005E47FA /* name.png */,
618C2C0F13947DEC005E47FA /* plug.png */,
618C2C1013947DEC005E47FA /* README */,
618C2C1413947DEC005E47FA /* syringe.png */,
618C2C1513947DEC005E47FA /* TODO */,
618C2C1613947DEC005E47FA /* version */,
618C2C1713947DEC005E47FA /* Windows.png */,
618C2C1813947DEC005E47FA /* wrench.png */,
);
path = Resources;
sourceTree = "<group>";
};
619A56321391DC75001AAD40 /* SMBIOSDefault */ = {
618C2C1913947DEC005E47FA /* SMBIOSDefault */ = {
isa = PBXGroup;
children = (
619A56331391DC75001AAD40 /* smbios.plist */,
618C2C1A13947DEC005E47FA /* smbios.plist */,
);
path = SMBIOSDefault;
sourceTree = "<group>";
};
619A56351391DC75001AAD40 /* doc */ = {
618C2C1C13947DEC005E47FA /* dmg */ = {
isa = PBXGroup;
children = (
619A56361391DC75001AAD40 /* BootHelp.txt */,
619A56371391DC75001AAD40 /* README */,
619A56381391DC75001AAD40 /* Users_Guide0.5.pdf */,
618C2C1D13947DEC005E47FA /* background.png */,
618C2C1E13947DEC005E47FA /* dmg.icns */,
618C2C1F13947DEC005E47FA /* doc.icns */,
618C2C2013947DEC005E47FA /* i386.icns */,
618C2C2113947DEC005E47FA /* openUp */,
618C2C2613947DEC005E47FA /* pan.icns */,
618C2C2713947DEC005E47FA /* tm.icns */,
618C2C2813947DEC005E47FA /* Volume.icns */,
);
path = dmg;
sourceTree = "<group>";
};
618C2C2113947DEC005E47FA /* openUp */ = {
isa = PBXGroup;
children = (
618C2C2213947DEC005E47FA /* Makefile */,
618C2C2313947DEC005E47FA /* openUp */,
618C2C2413947DEC005E47FA /* openUp.c */,
618C2C2513947DEC005E47FA /* openUp.o */,
);
path = openUp;
sourceTree = "<group>";
};
618C2C2913947DEC005E47FA /* doc */ = {
isa = PBXGroup;
children = (
618C2C2A13947DEC005E47FA /* BootHelp.txt */,
618C2C2B13947DEC005E47FA /* README */,
618C2C2C13947DEC005E47FA /* Users_Guide0.5.pdf */,
);
path = doc;
sourceTree = "<group>";
};
619A563B1391DC75001AAD40 /* Kexts */ = {
618C2C2E13947DEC005E47FA /* Kexts */ = {
isa = PBXGroup;
children = (
619A563C1391DC75001AAD40 /* AHCIPortInjector.kext */,
619A563D1391DC75001AAD40 /* ATAPortInjector.kext */,
619A563E1391DC75001AAD40 /* FakeSMC.kext */,
619A563F1391DC75001AAD40 /* IOAHCIBlockStorageInjector.kext */,
619A56401391DC75001AAD40 /* IOATAFamily.kext */,
619A56411391DC75001AAD40 /* JMicronATAInjector.kext */,
618C2C2F13947DEC005E47FA /* AHCIPortInjector.kext */,
618C2C3013947DEC005E47FA /* ATAPortInjector.kext */,
618C2C3113947DEC005E47FA /* FakeSMC.kext */,
618C2C3213947DEC005E47FA /* IOAHCIBlockStorageInjector.kext */,
618C2C3313947DEC005E47FA /* IOATAFamily.kext */,
618C2C3413947DEC005E47FA /* JMicronATAInjector.kext */,
);
path = Kexts;
sourceTree = "<group>";
};
619A56421391DC75001AAD40 /* Resources */ = {
618C2C3513947DEC005E47FA /* Resources */ = {
isa = PBXGroup;
children = (
619A56431391DC75001AAD40 /* background.tiff */,
619A56441391DC75001AAD40 /* Conclusion.rtfd */,
619A56461391DC75001AAD40 /* Description.html */,
619A56481391DC75001AAD40 /* License.rtf */,
619A564A1391DC75001AAD40 /* Localizable.strings */,
619A564C1391DC75001AAD40 /* Welcome.rtfd */,
618C2C3613947DEC005E47FA /* background.tiff */,
618C2C3713947DEC005E47FA /* Conclusion.rtfd */,
618C2C3913947DEC005E47FA /* Description.html */,
618C2C3B13947DEC005E47FA /* License.rtf */,
618C2C3D13947DEC005E47FA /* Localizable.strings */,
618C2C3F13947DEC005E47FA /* Welcome.rtfd */,
);
path = Resources;
sourceTree = "<group>";
};
619A564E1391DC75001AAD40 /* Scripts */ = {
618C2C4113947DEC005E47FA /* Scripts */ = {
isa = PBXGroup;
children = (
619A564F1391DC75001AAD40 /* Advanced */,
619A566E1391DC75001AAD40 /* BaseOptions */,
619A567F1391DC75001AAD40 /* EFI */,
619A56811391DC75001AAD40 /* Modules */,
619A56901391DC75001AAD40 /* Post */,
619A56921391DC75001AAD40 /* Resolutions */,
619A56A11391DC75001AAD40 /* Standard */,
618C2C4213947DEC005E47FA /* Advanced */,
618C2C6113947DEC005E47FA /* BaseOptions */,
618C2C7213947DEC005E47FA /* EFI */,
618C2C7413947DEC005E47FA /* Modules */,
618C2C8313947DEC005E47FA /* Post */,
618C2C8513947DEC005E47FA /* Resolutions */,
618C2C9413947DEC005E47FA /* Standard */,
);
path = Scripts;
sourceTree = "<group>";
};
619A564F1391DC75001AAD40 /* Advanced */ = {
618C2C4213947DEC005E47FA /* Advanced */ = {
isa = PBXGroup;
children = (
619A56501391DC75001AAD40 /* BootBanner */,
619A56521391DC75001AAD40 /* EHCIacquire */,
619A56541391DC75001AAD40 /* ForceHPET */,
619A56561391DC75001AAD40 /* ForceWake */,
619A56581391DC75001AAD40 /* GUI */,
619A565A1391DC75001AAD40 /* LegacyLogo */,
619A565C1391DC75001AAD40 /* QuietBoot */,
619A565E1391DC75001AAD40 /* SMBIOSdefaults */,
619A56601391DC75001AAD40 /* UHCIreset */,
619A56621391DC75001AAD40 /* UseAtiROM */,
619A56641391DC75001AAD40 /* UseMemDetect */,
619A56661391DC75001AAD40 /* UseNvidiaROM */,
619A56681391DC75001AAD40 /* VBIOS */,
619A566A1391DC75001AAD40 /* Wait */,
619A566C1391DC75001AAD40 /* Wake */,
618C2C4313947DEC005E47FA /* BootBanner */,
618C2C4513947DEC005E47FA /* EHCIacquire */,
618C2C4713947DEC005E47FA /* ForceHPET */,
618C2C4913947DEC005E47FA /* ForceWake */,
618C2C4B13947DEC005E47FA /* GUI */,
618C2C4D13947DEC005E47FA /* LegacyLogo */,
618C2C4F13947DEC005E47FA /* QuietBoot */,
618C2C5113947DEC005E47FA /* SMBIOSdefaults */,
618C2C5313947DEC005E47FA /* UHCIreset */,
618C2C5513947DEC005E47FA /* UseAtiROM */,
618C2C5713947DEC005E47FA /* UseMemDetect */,
618C2C5913947DEC005E47FA /* UseNvidiaROM */,
618C2C5B13947DEC005E47FA /* VBIOS */,
618C2C5D13947DEC005E47FA /* Wait */,
618C2C5F13947DEC005E47FA /* Wake */,
);
path = Advanced;
sourceTree = "<group>";
};
619A56501391DC75001AAD40 /* BootBanner */ = {
618C2C4313947DEC005E47FA /* BootBanner */ = {
isa = PBXGroup;
children = (
619A56511391DC75001AAD40 /* postinstall */,
618C2C4413947DEC005E47FA /* postinstall */,
);
path = BootBanner;
sourceTree = "<group>";
};
619A56521391DC75001AAD40 /* EHCIacquire */ = {
618C2C4513947DEC005E47FA /* EHCIacquire */ = {
isa = PBXGroup;
children = (
619A56531391DC75001AAD40 /* postinstall */,
618C2C4613947DEC005E47FA /* postinstall */,
);
path = EHCIacquire;
sourceTree = "<group>";
};
619A56541391DC75001AAD40 /* ForceHPET */ = {
618C2C4713947DEC005E47FA /* ForceHPET */ = {
isa = PBXGroup;
children = (
619A56551391DC75001AAD40 /* postinstall */,
618C2C4813947DEC005E47FA /* postinstall */,
);
path = ForceHPET;
sourceTree = "<group>";
};
619A56561391DC75001AAD40 /* ForceWake */ = {
618C2C4913947DEC005E47FA /* ForceWake */ = {
isa = PBXGroup;
children = (
619A56571391DC75001AAD40 /* postinstall */,
618C2C4A13947DEC005E47FA /* postinstall */,
);
path = ForceWake;
sourceTree = "<group>";
};
619A56581391DC75001AAD40 /* GUI */ = {
618C2C4B13947DEC005E47FA /* GUI */ = {
isa = PBXGroup;
children = (
619A56591391DC75001AAD40 /* postinstall */,
618C2C4C13947DEC005E47FA /* postinstall */,
);
path = GUI;
sourceTree = "<group>";
};
619A565A1391DC75001AAD40 /* LegacyLogo */ = {
618C2C4D13947DEC005E47FA /* LegacyLogo */ = {
isa = PBXGroup;
children = (
619A565B1391DC75001AAD40 /* postinstall */,
618C2C4E13947DEC005E47FA /* postinstall */,
);
path = LegacyLogo;
sourceTree = "<group>";
};
619A565C1391DC75001AAD40 /* QuietBoot */ = {
618C2C4F13947DEC005E47FA /* QuietBoot */ = {
isa = PBXGroup;
children = (
619A565D1391DC75001AAD40 /* postinstall */,
618C2C5013947DEC005E47FA /* postinstall */,
);
path = QuietBoot;
sourceTree = "<group>";
};
619A565E1391DC75001AAD40 /* SMBIOSdefaults */ = {
618C2C5113947DEC005E47FA /* SMBIOSdefaults */ = {
isa = PBXGroup;
children = (
619A565F1391DC75001AAD40 /* postinstall */,
618C2C5213947DEC005E47FA /* postinstall */,
);
path = SMBIOSdefaults;
sourceTree = "<group>";
};
619A56601391DC75001AAD40 /* UHCIreset */ = {
618C2C5313947DEC005E47FA /* UHCIreset */ = {
isa = PBXGroup;
children = (
619A56611391DC75001AAD40 /* postinstall */,
618C2C5413947DEC005E47FA /* postinstall */,
);
path = UHCIreset;
sourceTree = "<group>";
};
619A56621391DC75001AAD40 /* UseAtiROM */ = {
618C2C5513947DEC005E47FA /* UseAtiROM */ = {
isa = PBXGroup;
children = (
619A56631391DC75001AAD40 /* postinstall */,
618C2C5613947DEC005E47FA /* postinstall */,
);
path = UseAtiROM;
sourceTree = "<group>";
};
619A56641391DC75001AAD40 /* UseMemDetect */ = {
618C2C5713947DEC005E47FA /* UseMemDetect */ = {
isa = PBXGroup;
children = (
619A56651391DC75001AAD40 /* postinstall */,
618C2C5813947DEC005E47FA /* postinstall */,
);
path = UseMemDetect;
sourceTree = "<group>";
};
619A56661391DC75001AAD40 /* UseNvidiaROM */ = {
618C2C5913947DEC005E47FA /* UseNvidiaROM */ = {
isa = PBXGroup;
children = (
619A56671391DC75001AAD40 /* postinstall */,
618C2C5A13947DEC005E47FA /* postinstall */,
);
path = UseNvidiaROM;
sourceTree = "<group>";
};
619A56681391DC75001AAD40 /* VBIOS */ = {
618C2C5B13947DEC005E47FA /* VBIOS */ = {
isa = PBXGroup;
children = (
619A56691391DC75001AAD40 /* postinstall */,
618C2C5C13947DEC005E47FA /* postinstall */,
);
path = VBIOS;
sourceTree = "<group>";
};
619A566A1391DC75001AAD40 /* Wait */ = {
618C2C5D13947DEC005E47FA /* Wait */ = {
isa = PBXGroup;
children = (
619A566B1391DC75001AAD40 /* postinstall */,
618C2C5E13947DEC005E47FA /* postinstall */,
);
path = Wait;
sourceTree = "<group>";
};
619A566C1391DC75001AAD40 /* Wake */ = {
618C2C5F13947DEC005E47FA /* Wake */ = {
isa = PBXGroup;
children = (
619A566D1391DC75001AAD40 /* postinstall */,
618C2C6013947DEC005E47FA /* postinstall */,
);
path = Wake;
sourceTree = "<group>";
};
619A566E1391DC75001AAD40 /* BaseOptions */ = {
618C2C6113947DEC005E47FA /* BaseOptions */ = {
isa = PBXGroup;
children = (
619A566F1391DC75001AAD40 /* arch */,
619A56711391DC75001AAD40 /* DropSSDT */,
619A56731391DC75001AAD40 /* EthernetBuiltIn */,
619A56751391DC75001AAD40 /* GenerateCStates */,
619A56771391DC75001AAD40 /* GeneratePStates */,
619A56791391DC75001AAD40 /* GraphicsEnabler */,
619A567B1391DC75001AAD40 /* InstantMenu */,
619A567D1391DC75001AAD40 /* RestartFix */,
618C2C6213947DEC005E47FA /* arch */,
618C2C6413947DEC005E47FA /* DropSSDT */,
618C2C6613947DEC005E47FA /* EthernetBuiltIn */,
618C2C6813947DEC005E47FA /* GenerateCStates */,
618C2C6A13947DEC005E47FA /* GeneratePStates */,
618C2C6C13947DEC005E47FA /* GraphicsEnabler */,
618C2C6E13947DEC005E47FA /* InstantMenu */,
618C2C7013947DEC005E47FA /* RestartFix */,
);
path = BaseOptions;
sourceTree = "<group>";
};
619A566F1391DC75001AAD40 /* arch */ = {
618C2C6213947DEC005E47FA /* arch */ = {
isa = PBXGroup;
children = (
619A56701391DC75001AAD40 /* postinstall */,
618C2C6313947DEC005E47FA /* postinstall */,
);
path = arch;
sourceTree = "<group>";
};
619A56711391DC75001AAD40 /* DropSSDT */ = {
618C2C6413947DEC005E47FA /* DropSSDT */ = {
isa = PBXGroup;
children = (
619A56721391DC75001AAD40 /* postinstall */,
618C2C6513947DEC005E47FA /* postinstall */,
);
path = DropSSDT;
sourceTree = "<group>";
};
619A56731391DC75001AAD40 /* EthernetBuiltIn */ = {
618C2C6613947DEC005E47FA /* EthernetBuiltIn */ = {
isa = PBXGroup;
children = (
619A56741391DC75001AAD40 /* postinstall */,
618C2C6713947DEC005E47FA /* postinstall */,
);
path = EthernetBuiltIn;
sourceTree = "<group>";
};
619A56751391DC75001AAD40 /* GenerateCStates */ = {
618C2C6813947DEC005E47FA /* GenerateCStates */ = {
isa = PBXGroup;
children = (
619A56761391DC75001AAD40 /* postinstall */,
618C2C6913947DEC005E47FA /* postinstall */,
);
path = GenerateCStates;
sourceTree = "<group>";
};
619A56771391DC75001AAD40 /* GeneratePStates */ = {
618C2C6A13947DEC005E47FA /* GeneratePStates */ = {
isa = PBXGroup;
children = (
619A56781391DC75001AAD40 /* postinstall */,
618C2C6B13947DEC005E47FA /* postinstall */,
);
path = GeneratePStates;
sourceTree = "<group>";
};
619A56791391DC75001AAD40 /* GraphicsEnabler */ = {
618C2C6C13947DEC005E47FA /* GraphicsEnabler */ = {
isa = PBXGroup;
children = (
619A567A1391DC75001AAD40 /* postinstall */,
618C2C6D13947DEC005E47FA /* postinstall */,
);
path = GraphicsEnabler;
sourceTree = "<group>";
};
619A567B1391DC75001AAD40 /* InstantMenu */ = {
618C2C6E13947DEC005E47FA /* InstantMenu */ = {
isa = PBXGroup;
children = (
619A567C1391DC75001AAD40 /* postinstall */,
618C2C6F13947DEC005E47FA /* postinstall */,
);
path = InstantMenu;
sourceTree = "<group>";
};
619A567D1391DC75001AAD40 /* RestartFix */ = {
618C2C7013947DEC005E47FA /* RestartFix */ = {
isa = PBXGroup;
children = (
619A567E1391DC75001AAD40 /* postinstall */,
618C2C7113947DEC005E47FA /* postinstall */,
);
path = RestartFix;
sourceTree = "<group>";
};
619A567F1391DC75001AAD40 /* EFI */ = {
618C2C7213947DEC005E47FA /* EFI */ = {
isa = PBXGroup;
children = (
619A56801391DC75001AAD40 /* postinstall */,
618C2C7313947DEC005E47FA /* postinstall */,
);
path = EFI;
sourceTree = "<group>";
};
619A56811391DC75001AAD40 /* Modules */ = {
618C2C7413947DEC005E47FA /* Modules */ = {
isa = PBXGroup;
children = (
619A56821391DC75001AAD40 /* Module_AMDGraphicsEnabler */,
619A56841391DC75001AAD40 /* Module_ATiGraphicsEnabler */,
619A56861391DC75001AAD40 /* Module_IntelGraphicsEnabler */,
619A56881391DC75001AAD40 /* Module_klibc */,
619A568A1391DC75001AAD40 /* Module_NVIDIAGraphicsEnabler */,
619A568C1391DC75001AAD40 /* Module_Resolution */,
619A568E1391DC75001AAD40 /* Module_uClibc */,
618C2C7513947DEC005E47FA /* Module_AMDGraphicsEnabler */,
618C2C7713947DEC005E47FA /* Module_ATiGraphicsEnabler */,
618C2C7913947DEC005E47FA /* Module_IntelGraphicsEnabler */,
618C2C7B13947DEC005E47FA /* Module_klibc */,
618C2C7D13947DEC005E47FA /* Module_NVIDIAGraphicsEnabler */,
618C2C7F13947DEC005E47FA /* Module_Resolution */,
618C2C8113947DEC005E47FA /* Module_uClibc */,
);
path = Modules;
sourceTree = "<group>";
};
619A56821391DC75001AAD40 /* Module_AMDGraphicsEnabler */ = {
618C2C7513947DEC005E47FA /* Module_AMDGraphicsEnabler */ = {
isa = PBXGroup;
children = (
619A56831391DC75001AAD40 /* postinstall */,
618C2C7613947DEC005E47FA /* postinstall */,
);
path = Module_AMDGraphicsEnabler;
sourceTree = "<group>";
};
619A56841391DC75001AAD40 /* Module_ATiGraphicsEnabler */ = {
618C2C7713947DEC005E47FA /* Module_ATiGraphicsEnabler */ = {
isa = PBXGroup;
children = (
619A56851391DC75001AAD40 /* postinstall */,
618C2C7813947DEC005E47FA /* postinstall */,
);
path = Module_ATiGraphicsEnabler;
sourceTree = "<group>";
};
619A56861391DC75001AAD40 /* Module_IntelGraphicsEnabler */ = {
618C2C7913947DEC005E47FA /* Module_IntelGraphicsEnabler */ = {
isa = PBXGroup;
children = (
619A56871391DC75001AAD40 /* postinstall */,
618C2C7A13947DEC005E47FA /* postinstall */,
);
path = Module_IntelGraphicsEnabler;
sourceTree = "<group>";
};
619A56881391DC75001AAD40 /* Module_klibc */ = {
618C2C7B13947DEC005E47FA /* Module_klibc */ = {
isa = PBXGroup;
children = (
619A56891391DC75001AAD40 /* postinstall */,
618C2C7C13947DEC005E47FA /* postinstall */,
);
path = Module_klibc;
sourceTree = "<group>";
};
619A568A1391DC75001AAD40 /* Module_NVIDIAGraphicsEnabler */ = {
618C2C7D13947DEC005E47FA /* Module_NVIDIAGraphicsEnabler */ = {
isa = PBXGroup;
children = (
619A568B1391DC75001AAD40 /* postinstall */,
618C2C7E13947DEC005E47FA /* postinstall */,
);
path = Module_NVIDIAGraphicsEnabler;
sourceTree = "<group>";
};
619A568C1391DC75001AAD40 /* Module_Resolution */ = {
618C2C7F13947DEC005E47FA /* Module_Resolution */ = {
isa = PBXGroup;
children = (
619A568D1391DC75001AAD40 /* postinstall */,
618C2C8013947DEC005E47FA /* postinstall */,
);
path = Module_Resolution;
sourceTree = "<group>";
};
619A568E1391DC75001AAD40 /* Module_uClibc */ = {
618C2C8113947DEC005E47FA /* Module_uClibc */ = {
isa = PBXGroup;
children = (
619A568F1391DC75001AAD40 /* postinstall */,
618C2C8213947DEC005E47FA /* postinstall */,
);
path = Module_uClibc;
sourceTree = "<group>";
};
619A56901391DC75001AAD40 /* Post */ = {
618C2C8313947DEC005E47FA /* Post */ = {
isa = PBXGroup;
children = (
619A56911391DC75001AAD40 /* postinstall */,
618C2C8413947DEC005E47FA /* postinstall */,
);
path = Post;
sourceTree = "<group>";
};
619A56921391DC75001AAD40 /* Resolutions */ = {
618C2C8513947DEC005E47FA /* Resolutions */ = {
isa = PBXGroup;
children = (
619A56931391DC75001AAD40 /* 1024x768x32 */,
619A56951391DC75001AAD40 /* 1280x1024x32 */,
619A56971391DC75001AAD40 /* 1280x960x32 */,
619A56991391DC75001AAD40 /* 1600x900x32 */,
619A569B1391DC75001AAD40 /* 1680x1050x32 */,
619A569D1391DC75001AAD40 /* 1920x1080x32 */,
619A569F1391DC75001AAD40 /* 1920x1200x32 */,
618C2C8613947DEC005E47FA /* 1024x768x32 */,
618C2C8813947DEC005E47FA /* 1280x1024x32 */,
618C2C8A13947DEC005E47FA /* 1280x960x32 */,
618C2C8C13947DEC005E47FA /* 1600x900x32 */,
618C2C8E13947DEC005E47FA /* 1680x1050x32 */,
618C2C9013947DEC005E47FA /* 1920x1080x32 */,
618C2C9213947DEC005E47FA /* 1920x1200x32 */,
);
path = Resolutions;
sourceTree = "<group>";
};
619A56931391DC75001AAD40 /* 1024x768x32 */ = {
618C2C8613947DEC005E47FA /* 1024x768x32 */ = {
isa = PBXGroup;
children = (
619A56941391DC75001AAD40 /* postinstall */,
618C2C8713947DEC005E47FA /* postinstall */,
);
path = 1024x768x32;
sourceTree = "<group>";
};
619A56951391DC75001AAD40 /* 1280x1024x32 */ = {
618C2C8813947DEC005E47FA /* 1280x1024x32 */ = {
isa = PBXGroup;
children = (
619A56961391DC75001AAD40 /* postinstall */,
618C2C8913947DEC005E47FA /* postinstall */,
);
path = 1280x1024x32;
sourceTree = "<group>";
};
619A56971391DC75001AAD40 /* 1280x960x32 */ = {
618C2C8A13947DEC005E47FA /* 1280x960x32 */ = {
isa = PBXGroup;
children = (
619A56981391DC75001AAD40 /* postinstall */,
618C2C8B13947DEC005E47FA /* postinstall */,
);
path = 1280x960x32;
sourceTree = "<group>";
};
619A56991391DC75001AAD40 /* 1600x900x32 */ = {
618C2C8C13947DEC005E47FA /* 1600x900x32 */ = {
isa = PBXGroup;
children = (
619A569A1391DC75001AAD40 /* postinstall */,
618C2C8D13947DEC005E47FA /* postinstall */,
);
path = 1600x900x32;
sourceTree = "<group>";
};
619A569B1391DC75001AAD40 /* 1680x1050x32 */ = {
618C2C8E13947DEC005E47FA /* 1680x1050x32 */ = {
isa = PBXGroup;
children = (
619A569C1391DC75001AAD40 /* postinstall */,
618C2C8F13947DEC005E47FA /* postinstall */,
);
path = 1680x1050x32;
sourceTree = "<group>";
};
619A569D1391DC75001AAD40 /* 1920x1080x32 */ = {
618C2C9013947DEC005E47FA /* 1920x1080x32 */ = {
isa = PBXGroup;
children = (
619A569E1391DC75001AAD40 /* postinstall */,
618C2C9113947DEC005E47FA /* postinstall */,
);
path = 1920x1080x32;
sourceTree = "<group>";
};
619A569F1391DC75001AAD40 /* 1920x1200x32 */ = {
618C2C9213947DEC005E47FA /* 1920x1200x32 */ = {
isa = PBXGroup;
children = (
619A56A01391DC75001AAD40 /* postinstall */,
618C2C9313947DEC005E47FA /* postinstall */,
);
path = 1920x1200x32;
sourceTree = "<group>";
};
619A56A11391DC75001AAD40 /* Standard */ = {
618C2C9413947DEC005E47FA /* Standard */ = {
isa = PBXGroup;
children = (
619A56A21391DC75001AAD40 /* postinstall */,
618C2C9513947DEC005E47FA /* postinstall */,
);
path = Standard;
sourceTree = "<group>";
/* End PBXProject section */
/* Begin PBXVariantGroup section */
619A560F1391DC75001AAD40 /* Chameleon.nib */ = {
618C2BF613947DEC005E47FA /* Chameleon.nib */ = {
isa = PBXVariantGroup;
children = (
619A56101391DC75001AAD40 /* English */,
619A561A1391DC75001AAD40 /* French */,
619A561D1391DC75001AAD40 /* German */,
619A56221391DC75001AAD40 /* Italian */,
619A562A1391DC75001AAD40 /* Spanish */,
618C2BF713947DEC005E47FA /* English */,
618C2C0113947DEC005E47FA /* French */,
618C2C0413947DEC005E47FA /* German */,
618C2C0913947DEC005E47FA /* Italian */,
618C2C1113947DEC005E47FA /* Spanish */,
);
name = Chameleon.nib;
sourceTree = "<group>";
};
619A56111391DC75001AAD40 /* Chameleon.strings */ = {
618C2BF813947DEC005E47FA /* Chameleon.strings */ = {
isa = PBXVariantGroup;
children = (
619A56121391DC75001AAD40 /* English */,
619A561B1391DC75001AAD40 /* French */,
619A561E1391DC75001AAD40 /* German */,
619A56231391DC75001AAD40 /* Italian */,
619A562B1391DC75001AAD40 /* Spanish */,
618C2BF913947DEC005E47FA /* English */,
618C2C0213947DEC005E47FA /* French */,
618C2C0513947DEC005E47FA /* German */,
618C2C0A13947DEC005E47FA /* Italian */,
618C2C1213947DEC005E47FA /* Spanish */,
);
name = Chameleon.strings;
sourceTree = "<group>";
};
619A56131391DC75001AAD40 /* InfoPlist.strings */ = {
618C2BFA13947DEC005E47FA /* InfoPlist.strings */ = {
isa = PBXVariantGroup;
children = (
619A56141391DC75001AAD40 /* English */,
618C2BFB13947DEC005E47FA /* English */,
);
name = InfoPlist.strings;
sourceTree = "<group>";
};
619A56151391DC75001AAD40 /* Localizable.strings */ = {
618C2BFC13947DEC005E47FA /* Localizable.strings */ = {
isa = PBXVariantGroup;
children = (
619A56161391DC75001AAD40 /* English */,
619A561C1391DC75001AAD40 /* French */,
619A561F1391DC75001AAD40 /* German */,
619A56241391DC75001AAD40 /* Italian */,
619A562C1391DC75001AAD40 /* Spanish */,
618C2BFD13947DEC005E47FA /* English */,
618C2C0313947DEC005E47FA /* French */,
618C2C0613947DEC005E47FA /* German */,
618C2C0B13947DEC005E47FA /* Italian */,
618C2C1313947DEC005E47FA /* Spanish */,
);
name = Localizable.strings;
sourceTree = "<group>";
};
619A56441391DC75001AAD40 /* Conclusion.rtfd */ = {
618C2C3713947DEC005E47FA /* Conclusion.rtfd */ = {
isa = PBXVariantGroup;
children = (
619A56451391DC75001AAD40 /* English */,
618C2C3813947DEC005E47FA /* English */,
);
name = Conclusion.rtfd;
sourceTree = "<group>";
};
619A56461391DC75001AAD40 /* Description.html */ = {
618C2C3913947DEC005E47FA /* Description.html */ = {
isa = PBXVariantGroup;
children = (
619A56471391DC75001AAD40 /* English */,
618C2C3A13947DEC005E47FA /* English */,
);
name = Description.html;
sourceTree = "<group>";
};
619A56481391DC75001AAD40 /* License.rtf */ = {
618C2C3B13947DEC005E47FA /* License.rtf */ = {
isa = PBXVariantGroup;
children = (
619A56491391DC75001AAD40 /* English */,
618C2C3C13947DEC005E47FA /* English */,
);
name = License.rtf;
sourceTree = "<group>";
};
619A564A1391DC75001AAD40 /* Localizable.strings */ = {
618C2C3D13947DEC005E47FA /* Localizable.strings */ = {
isa = PBXVariantGroup;
children = (
619A564B1391DC75001AAD40 /* English */,
618C2C3E13947DEC005E47FA /* English */,
);
name = Localizable.strings;
sourceTree = "<group>";
};
619A564C1391DC75001AAD40 /* Welcome.rtfd */ = {
618C2C3F13947DEC005E47FA /* Welcome.rtfd */ = {
isa = PBXVariantGroup;
children = (
619A564D1391DC75001AAD40 /* English */,
618C2C4013947DEC005E47FA /* English */,
);
name = Welcome.rtfd;
sourceTree = "<group>";
branches/iFabio/Chameleon/i386/libsaio/xml.c
356356
357357
358358
359
359
360360
361361
362362
......
381381
382382
383383
384
384
385385
386386
387387
......
424424
425425
426426
427
427
428428
429429
430430
......
449449
450450
451451
452
452
453453
454454
455455
......
670670
671671
672672
673
673
674674
675675
676676
......
711711
712712
713713
714
714
715715
716716
717717
......
732732
733733
734734
735
735
736736
737737
738738
......
772772
773773
774774
775
775
776776
777777
778778
......
804804
805805
806806
807
807
808808
809809
810810
else
{
printf("ParseStringID error (0x%x)\n", *val);
getc();
getchar();
return -1;
}
}
else
{
printf("ParseStringIDREF error (0x%x)\n", *val);
getc();
getchar();
return -1;
}
}
else
{
printf("ParseIntegerID error (0x%x)\n", *val);
getc();
getchar();
return -1;
}
}
else
{
printf("ParseStringIDREF error (0x%x)\n", *val);
getc();
getchar();
return -1;
}
}
if(buffer[0] == '<')
{
printf("Warning integer is non existant\n");
getc();
getchar();
tmpTag = NewTag();
tmpTag->type = kTagTypeInteger;
tmpTag->string = 0;
else
{
printf("ParseTagInteger hex error (0x%x) in buffer %s\n", *val, buffer);
getc();
getchar();
return -1;
}
}
if (*val < '0' || *val > '9')
{
printf("ParseTagInteger decimal error (0x%x) in buffer %s\n", *val, buffer);
getc();
getchar();
return -1;
}
//printf("ParseTagData unimplimented\n");
//printf("Data: %s\n", buffer);
//getc();
//getchar();
// TODO: base64 decode
if (tmpTag == 0) return -1;
printf("ParseTagDate unimplimented\n");
getc();
getchar();
tmpTag->type = kTagTypeDate;
tmpTag->string = 0;
branches/iFabio/Chameleon/i386/libsaio/saio_internal.h
4747
4848
4949
50
50
5151
52
5352
5453
5554
......
8180
8281
8382
84
83
8584
8685
8786
......
10099
101100
102101
103
102
104103
105
104
106105
107106
108107
......
127126
128127
129128
130
129
131130
132131
133132
......
168167
169168
170169
171
170
172171
173172
174173
extern int ebioswrite(int dev, long sec, int count);
extern int get_drive_info(int drive, struct driveInfo *dp);
extern int ebiosEjectMedia(int biosdev);
extern void bios_putchar(int ch);
extern void bios_putchar(int ch);
extern void putca(int ch, int attr, int repeat);
extern int getc(void);
extern void pause();
extern int readKeyboardStatus(void);
extern int readKeyboardShiftFlags(void);
extern void finalizeBootStruct(void);
/* cache.c */
extern void CacheReset();
extern void CacheReset();
extern void CacheInit(CICell ih, long blockSize);
extern long CacheRead(CICell ih, char *buffer, long long offset,
long length, long cache);
extern void stop(const char *format, ...);
/* disk.c */
extern void rescanBIOSDevice(int biosdev);
extern void rescanBIOSDevice(int biosdev);
extern struct DiskBVMap* diskResetBootVolumes(int biosdev);
extern void diskFreeMap(struct DiskBVMap *map);
extern void diskFreeMap(struct DiskBVMap *map);
extern int testBiosread( int biosdev, unsigned long long secno );
extern BVRef diskScanBootVolumes(int biosdev, int *count);
extern void diskSeek(BVRef bvr, long long position);
u_int16_t *ucslen, u_int32_t bufsize, int byte_order );
/* load.c */
extern bool gHaveKernelCache;
extern bool gHaveKernelCache;
extern long ThinFatFile(void **binary, unsigned long *length);
extern long DecodeMachO(void *binary, entry_t *rentry, char **raddr, int *rsize);
extern int ParseXMLFile( char * buffer, TagPtr * dict );
/* sys.c */
extern BVRef getBootVolumeRef( const char * path, const char ** outPath );
extern BVRef getBootVolumeRef( const char * path, const char ** outPath );
extern long LoadVolumeFile(BVRef bvr, const char *fileSpec);
extern long LoadFile(const char *fileSpec);
extern long ReadFileAtOffset(const char * fileSpec, void *buffer, uint64_t offset, uint64_t length);
branches/iFabio/Chameleon/i386/boot2/mboot.c
345345
346346
347347
348
349
350
351
352
353
354
355348
356349
357350
return bootdevice;
}
enum {
kReturnKey = 0x0d,
kEscapeKey = 0x1b,
kBackspaceKey = 0x08,
kASCIIKeyMask = 0x7f
};
// This is the meat of our implementation. It grabs the boot device from
// the multiboot_info and returns it as is. If it fails it returns
// BAD_BOOT_DEVICE. We can call an awful lot of libsa and libsaio but
branches/iFabio/Chameleon/i386/boot2/Makefile
110110
111111
112112
113
114
115
113116
114117
115118
......
120123
121124
122125
126
127
128
129
123130
124131
125132
-Wl,-sectcreate,__DATA,__Symbols,$(SYMROOT)/Symbols.dylib \
-o $(SYMROOT)/boot.sys $(filter %.o,$^) `find $(OBJROOT)/../boot2_modules/ -name \*.o` $(LIBS) -lcc_kext
@${RM} $(SYMROOT)/${SYMBOLS_MODULE}
@$(LD) -arch i386 \
-undefined dynamic_lookup \
-dylib -read_only_relocs suppress \
-macosx_version_min 10.6 \
-o $(OBJROOT)/Symbols_LINKER_ONLY.dylib
endif
@make embed_symbols# this is done in a sub process after boot.sys exists so the strings are populated correctly
branches/iFabio/Chameleon/i386/boot2/resume.c
106106
107107
108108
109
109
110110
111111
112112
......
119119
120120
121121
122
122
123123
124124
125125
126126
127127
128128
129
129
130130
131131
132132
133133
134134
135135
136
136
137137
138138
139139
140
140
141141
142142
143143
144144
145145
146
146
147147
148148
149
149
150150
151151
152
152
153153
154154
155155
......
157157
158158
159159
160
160
161161
162162
163163
164164
165165
166166
167
167
168168
169169
170170
171171
172
172
173173
174174
175175
......
197197
198198
199199
200
200
201201
202
202
203203
204204
205205
size = ReadFileAtOffset (image_filename, header, 0, sizeof(IOHibernateImageHeader));
printf("header read size %x\n", size);
imageSize = header->image1Size;
codeSize = header->restore1PageCount << 12;
if (kIOHibernateHeaderSignature != header->signature)
printf ("Resuming from Encrypted image is unsupported.\n"
"Uncheck \"Use secure virtual memory\" in \"Security\" pane on system preferences.\n"
"Press any key to proceed with normal boot.\n");
getc ();
getchar ();
return;
}
// depends on NVRAM
#if 0
{
uint32_t machineSignature;
size = GetProp(gChosenPH, kIOHibernateMachineSignatureKey,
size = GetProp(gChosenPH, kIOHibernateMachineSignatureKey,
(char *)&machineSignature, sizeof(machineSignature));
if (size != sizeof(machineSignature)) machineSignature = 0;
if (machineSignature != header->machineSignature)
break;
}
#endif
allocSize = imageSize + ((4095 + sizeof(hibernate_graphics_t)) & ~4095);
mem_base = getmemorylimit() - allocSize;//TODO: lower this
printf("mem_base %x\n", mem_base);
// Rek : hibernate fix
if (!((long long)mem_base+allocSize<1024*bootInfo->extmem+0x100000))
{
printf ("Not enough space to restore image. Press any key to proceed with normal boot.\n");
getc ();
getchar ();
return;
}
bcopy(header, (void *) mem_base, sizeof(IOHibernateImageHeader));
header = (IOHibernateImageHeader *) mem_base;
imageSize -= sizeof(IOHibernateImageHeader);
buffer = (long)(header + 1);
{
uint64_t preview_offset = header->fileExtentMapSize - sizeof(header->fileExtentMap) + codeSize;
uint8_t progressSaveUnder[kIOHibernateProgressCount][kIOHibernateProgressSaveUnderSize];
ReadFileAtOffset (image_filename, (char *)buffer, sizeof(IOHibernateImageHeader), preview_offset+header->previewSize);
drawPreview ((void *)(long)(buffer+preview_offset + header->previewPageListSize), &(progressSaveUnder[0][0]));
previewTotalSectors = (imageSize-(preview_offset+header->previewSize))/512;
previewLoadedSectors = 0;
previewSaveunder = &(progressSaveUnder[0][0]);
if (preview_offset+header->previewSize<imageSize)
ReadFileAtOffset (image_filename, (char *)(long)(buffer+preview_offset+header->previewSize),
ReadFileAtOffset (image_filename, (char *)(long)(buffer+preview_offset+header->previewSize),
sizeof(IOHibernateImageHeader)+preview_offset+header->previewSize,
imageSize-(preview_offset+header->previewSize));
previewTotalSectors = 0;
previewLoadedSectors = 0;
previewSaveunder = 0;
previewSaveunder = 0;
#if 0
AsereBLN:
check_vga_nvidia() didn't work as expected (recursion level > 0 & return value).
&cryptvars->ctx.decrypt);
// set the vector for the following decryptions
bcopy(((uint8_t *) header) + header->image1Size - AES_BLOCK_SIZE,
bcopy(((uint8_t *) header) + header->image1Size - AES_BLOCK_SIZE,
&cryptvars->aes_iv[0], AES_BLOCK_SIZE);
// decrypt the buffer
uint32_t len = (uint32_t)(header->image1Size - header->encryptStart);
aes_decrypt_cbc(((uint8_t *) header) + header->encryptStart,
branches/iFabio/Chameleon/i386/boot2/boot.c
186186
187187
188188
189
189
190190
191191
192192
......
351351
352352
353353
354
354
355355
356356
357357
bool dummyVal;
if (getBoolForKey(kWaitForKeypressKey, &dummyVal, &bootInfo->bootConfig) && dummyVal) {
printf("Press any key to continue...");
getc();
getchar();
}
usb_loop();
#if DEBUG
printf(" Default: %d, ->biosdev: %d, ->part_no: %d ->flags: %d\n", gBootVolume, gBootVolume->biosdev, gBootVolume->part_no, gBootVolume->flags);
printf(" bt(0,0): %d, ->biosdev: %d, ->part_no: %d ->flags: %d\n", gBIOSBootVolume, gBIOSBootVolume->biosdev, gBIOSBootVolume->part_no, gBIOSBootVolume->flags);
getc();
getchar();
#endif
useGUI = true;
branches/iFabio/Chameleon/i386/boot2/modules.c
1515
1616
1717
18
18
1919
2020
2121
2222
2323
2424
25
26
25
26
2727
2828
2929
......
8585
8686
8787
88
88
8989
9090
9191
......
179179
180180
181181
182
182
183183
184184
185185
......
286286
287287
288288
289
290
289
290
291291
292292
293293
......
349349
350350
351351
352
352
353353
354354
355355
......
358358
359359
360360
361
361
362362
363363
364364
......
493493
494494
495495
496
497
498
496
497
498
499499
500500
501501
......
738738
739739
740740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
741763
742764
743765
744766
745
767
746768
747769
748770
......
762784
763785
764786
765
766787
767788
768789
......
792813
793814
794815
795
796
797
798
799
800
801
802
816
803817
804818
805819
......
819833
820834
821835
822
823
824
825
826
827
828
829
830
836
831837
832838
833839
......
848854
849855
850856
851
852
853
854
855
856
857
858
859
860
861
862
857
858
863859
864860
865861
866
867
868
869
870
871
872
873
874
875
876
862
877863
878864
879865
......
886872
887873
888874
889
875
890876
891877
892878
......
894880
895881
896882
897
898
899
900
901
902
903
904
883
905884
906885
907886
......
912891
913892
914893
915
894
916895
917896
918897
......
930909
931910
932911
933
912
934913
935914
936915
......
938917
939918
940919
941
942
943
944
945
946
947
948
920
949921
922
950923
951
952
953
954
955
956
957
958
959
960
961924
962925
963926
......
971934
972935
973936
974
937
975938
976939
977940
......
11021065
11031066
11041067
1105
1068
11061069
11071070
11081071
......
11401103
11411104
11421105
1106
11431107
11441108
11451109
1146
1110
11471111
11481112
11491113
11501114
11511115
1152
1116
11531117
11541118
11551119
#if CONFIG_MODULE_DEBUG
#define DBG(x...)printf(x);
#define DBGPAUSE()getc()
#define DBGPAUSE()getchar()
#else
#define DBG(x...)
#define DBGPAUSE()
#endif
// NOTE: Global so that modules can link with this
unsigned long long textAddress = 0;
unsigned long long textSection = 0;
UInt64 textAddress = 0;
UInt64 textSection = 0;
void* symbols_module_start = (void*)0xFFFFFFFF;// Global, value is populated by the makefile with actual address
else
{
// The module does not have a valid start function
printf("Unable to start %s\n", SYMBOLS_MODULE); getc();
printf("Unable to start %s\n", SYMBOLS_MODULE); getchar();
}
}
}
else // The module does not have a valid start function. This may be a library.
{
printf("WARNING: Unable to start %s\n", module);
getc();
getchar();
}
#else
else msglog("WARNING: Unable to start %s\n", module);
}
#if CONFIG_MODULE_DEBUG
verbose("Unable to locate symbol %s\n", name);
getc();
printf("Unable to locate symbol %s\n", name);
getchar();
#endif
if(strcmp(name, VOID_SYMBOL) == 0) return 0xFFFFFFFF;
else
{
verbose("Invalid mach magic 0x%X\n", ((struct mach_header*)binary)->magic);
//getc();
//getchar();
return NULL;
}
/*if(((struct mach_header*)binary)->filetype != MH_DYLIB)
{
printf("Module is not a dylib. Unable to load.\n");
getc();
getchar();
return NULL; // Module is in the incorrect format
}*/
// Rebase the module before binding it.
if(dyldInfoCommand->rebase_off)rebase_macho(binary, (char*)dyldInfoCommand->rebase_off,dyldInfoCommand->rebase_size);
// Bind all symbols.
if(dyldInfoCommand->bind_off)bind_macho(binary, (char*)dyldInfoCommand->bind_off,dyldInfoCommand->bind_size);
if(dyldInfoCommand->weak_bind_off)bind_macho(binary, (char*)dyldInfoCommand->weak_bind_off,dyldInfoCommand->weak_bind_size);
if(dyldInfoCommand->lazy_bind_off)bind_macho(binary, (char*)dyldInfoCommand->lazy_bind_off,dyldInfoCommand->lazy_bind_size);
if(dyldInfoCommand->bind_off)bind_macho(binary, (UInt8*)dyldInfoCommand->bind_off,dyldInfoCommand->bind_size);
if(dyldInfoCommand->weak_bind_off)bind_macho(binary, (UInt8*)dyldInfoCommand->weak_bind_off,dyldInfoCommand->weak_bind_size);
if(dyldInfoCommand->lazy_bind_off)bind_macho(binary, (UInt8*)dyldInfoCommand->lazy_bind_off,dyldInfoCommand->lazy_bind_size);
}
return module_start;
}
UInt32 read_uleb(UInt8* bind_stream, unsigned int* i)
{
// Read in offset
UInt32 tmp = 0;
UInt8 bits = 0;
do
{
if(bits < sizeof(UInt32)*8) // hack
{
tmp |= (bind_stream[++(*i)] & 0x7f) << bits;
bits += 7;
}
else
{
++(*i);
}
}
while(bind_stream[*i] & 0x80);
return tmp;
}
// Based on code from dylibinfo.cpp and ImageLoaderMachOCompressed.cpp
// NOTE: this uses 32bit values, and not 64bit values.
// There is a possibility that this could cause issues,
// however the modules are 32 bits, so it shouldn't matter too much
void bind_macho(void* base, char* bind_stream, UInt32 size)
void bind_macho(void* base, UInt8* bind_stream, UInt32 size)
{
bind_stream += (UInt32)base;
UInt32 symbolAddr = 0xFFFFFFFF;
// Temperary variables
UInt8 bits = 0;
UInt32 tmp = 0;
UInt32 tmp2 = 0;
UInt32 index = 0;
break;
case BIND_OPCODE_SET_DYLIB_ORDINAL_ULEB:
libraryOrdinal = 0;
bits = 0;
do
{
libraryOrdinal |= (bind_stream[++i] & 0x7f) << bits;
bits += 7;
}
while(bind_stream[i] & 0x80);
libraryOrdinal = read_uleb(bind_stream, &i);
break;
case BIND_OPCODE_SET_DYLIB_SPECIAL_IMM:
break;
case BIND_OPCODE_SET_ADDEND_SLEB:
addend = 0;
bits = 0;
do
{
addend |= (bind_stream[++i] & 0x7f) << bits;
bits += 7;
}
while(bind_stream[i] & 0x80);
addend = read_uleb(bind_stream, &i);
if(!(bind_stream[i-1] & 0x40)) addend *= -1;
break;
while(index <= immediate);
segmentAddress = segCommand->fileoff;
// Read in offset
tmp = 0;
bits = 0;
do
{
tmp |= (bind_stream[++i] & 0x7f) << bits;
bits += 7;
}
while(bind_stream[i] & 0x80);
segmentAddress += tmp;
segmentAddress += read_uleb(bind_stream, &i);
break;
case BIND_OPCODE_ADD_ADDR_ULEB:
// Read in offset
tmp = 0;
bits = 0;
do
{
tmp |= (bind_stream[++i] & 0x7f) << bits;
bits += 7;
}
while(bind_stream[i] & 0x80);
segmentAddress += tmp;
segmentAddress += read_uleb(bind_stream, &i);
break;
case BIND_OPCODE_DO_BIND:
else
{
printf("Unable to bind symbol %s\n", symbolName);
getc();
getchar();
}
segmentAddress += sizeof(void*);
case BIND_OPCODE_DO_BIND_ADD_ADDR_ULEB:
// Read in offset
tmp = 0;
bits = 0;
do
{
tmp |= (bind_stream[++i] & 0x7f) << bits;
bits += 7;
}
while(bind_stream[i] & 0x80);
tmp = read_uleb(bind_stream, &i);
if(symbolAddr != 0xFFFFFFFF)
{
else
{
printf("Unable to bind symbol %s\n", symbolName);
getc();
getchar();
}
segmentAddress += tmp + sizeof(void*);
else
{
printf("Unable to bind symbol %s\n", symbolName);
getc();
getchar();
}
segmentAddress += (immediate * sizeof(void*)) + sizeof(void*);
break;
case BIND_OPCODE_DO_BIND_ULEB_TIMES_SKIPPING_ULEB:
tmp = 0;
bits = 0;
do
{
tmp |= (bind_stream[++i] & 0x7f) << bits;
bits += 7;
}
while(bind_stream[i] & 0x80);
tmp = read_uleb(bind_stream, &i);
tmp2 = read_uleb(bind_stream, &i);
tmp2 = 0;
bits = 0;
do
{
tmp2 |= (bind_stream[++i] & 0x7f) << bits;
bits += 7;
}
while(bind_stream[i] & 0x80);
if(symbolAddr != 0xFFFFFFFF)
{
for(index = 0; index < tmp; index++)
else
{
printf("Unable to bind symbol %s\n", symbolName);
getc();
getchar();
}
break;
}
#if CONFIG_MODULE_DEBUG
//print_hook_list();
//getc();
//getchar();
#endif
}
hooks = hooks->next;
}
}
#endif
/********************************************************************************/
/*dyld / Linker Interface*/
/*dyld / Linker Interface*/
/********************************************************************************/
void dyld_stub_binder()
{
printf("ERROR: dyld_stub_binder was called, should have been take care of by the linker.\n");
getc();
getchar();
}
#else /* CONFIG_MODULES */
branches/iFabio/Chameleon/i386/boot2/modules.h
1515
1616
1717
18
19
18
19
2020
2121
2222
2323
2424
2525
26
26
2727
2828
2929
......
8484
8585
8686
87
87
8888
8989
9090
#define MODULE_PATH"/Extra/modules/"
#define SYMBOLS_MODULE "Symbols.dylib"
#define VOID_SYMBOL"dyld_void_start"
extern unsigned long long textAddress;
extern unsigned long long textSection;
extern UInt64 textAddress;
extern UInt64 textSection;
typedef struct symbolList_t
{
char* symbol;
unsigned int addr;
UInt64 addr;
struct symbolList_t* next;
} symbolList_t;
char is64);
voidrebase_macho(void* base, char* rebase_stream, UInt32 size);
inline voidrebase_location(UInt32* location, char* base, int type);
voidbind_macho(void* base, char* bind_stream, UInt32 size);
voidbind_macho(void* base, UInt8* bind_stream, UInt32 size);
inline voidbind_location(UInt32* location, char* value, UInt32 addend, int type);
branches/iFabio/Chameleon/i386/boot2/gui.c
10581058
10591059
10601060
1061
1061
1062
10621063
10631064
10641065
......
16081609
16091610
16101611
1611
1612
16121613
16131614
16141615
}
}
struct putc_info {
struct putc_info //Azi: same as below
{
char * str;
char * last_str;
};
updateVRAM();
key = getc();
key = getchar();
if( key == kUpArrowkey )
if( currentline > 0 )
branches/iFabio/Chameleon/i386/boot2/gui.h
4141
4242
4343
44
44
4545
4646
4747
enum {
kBackspaceKey= 0x08,
kTabKey= 0x09,
kReturnKey= 0x0d,
kReturnKey= '\n',
kEscapeKey= 0x1b,
kUpArrowkey= 0x4800,
kDownArrowkey= 0x5000,
branches/iFabio/Chameleon/i386/boot2/ramdisk.c
290290
291291
292292
293
293
294294
295295
296296
......
303303
304304
305305
306
306
307307
308308
309309
setCursorPosition(0, 0, 1);
showInfoRAMDisk();
printf("\n\nPress any key to continue.\n");
getc();
getchar();
setActiveDisplayPage(0);
}
else
printf("\n?rd m <filename> - mount ramdisk image\n?rd u - unmount ramdisk image");
printf("\n?rd e - enable bt(0,0) alias\n?rd d - disable bt(0,0) alias");
printf("\n\nPress any key to continue.\n");
getc();
getchar();
setActiveDisplayPage(0);
}
}
branches/iFabio/Chameleon/i386/boot2/options.c
911911
912912
913913
914
914
915915
916916
917917
......
13831383
13841384
13851385
1386
1386
13871387
13881388
13891389
......
14501450
14511451
14521452
1453
1453
14541454
14551455
14561456
......
15011501
15021502
15031503
1504
1504
15051505
15061506
15071507
// reset cursor co-ords
gui.debug.cursor = pos( gui.screen.width - 160 , 10 );
}
key = getc();
key = getchar();
updateMenu( key, (void **) &menuBVR );
newShowPrompt = (gDeviceCount == 0) || (menuBVR->flags & kBVFlagNativeBoot);
printf("[Type %s%sq to quit viewer]", (line_offset > 0) ? "p for previous page, " : "", (*bp != '\1') ? "space for next page, " : "");
}
c = getc();
c = getchar();
if (c == 'q' || c == 'Q') {
break;
}
printf("Typical boot devices are 80 (First HD), 81 (Second HD)\n");
printf("Enter two-digit hexadecimal boot device [%02x]: ", bootdevice);
do {
key = getc();
key = getchar();
switch (key & kASCIIKeyMask) {
case kBackspaceKey:
if (digitsI > 0) {
bool promptForRescanOption(void)
{
printf("\nWould you like to enable media rescan option?\nPress ENTER to enable or any key to skip.\n");
if (getc() == kReturnKey) {
if (getchar() == kReturnKey) {
return true;
} else {
return false;
branches/iFabio/Chameleon/i386/libsa/libsa.h
7070
7171
7272
73
7473
7574
7675
......
9594
9695
9796
98
97
9998
10099
101100
return ((c >= '0' && c <= '9') || (c >= 'A' && c <= 'F') || (c >= 'a' && c <= 'f'));
}
//Azi: TODO - add more ponctuation characters as needed; at least these two, i need for PartNo.
static inline int ispunct(int c)
{
return (c == '.' || c == '-');
extern int strncmp(const char * s1, const char * s2, size_t n);
extern char * strcpy(char * s1, const char * s2);
extern char * strncpy(char * s1, const char * s2, size_t n);
extern char * strlcpy(char * s1, const char * s2, size_t n);
extern size_t strlcpy(char * s1, const char * s2, size_t n);
extern char * strstr(const char *in, const char *str);
extern int atoi(const char * str);
extern int ptol(const char * str);
branches/iFabio/Chameleon/i386/libsa/string.c
186186
187187
188188
189
189
190190
191191
192
193192
194193
195194
196
195
197196
198197
199198
return ret;
}
char *
size_t
strlcpy(char * s1, const char * s2, size_t n)
{
register char *ret = s1;
while (n && (*s1++ = *s2++))
n--;
if (!n) *--s1=0;
return ret;
return strlen(s2);
}
char *
branches/iFabio/Chameleon/i386/util/openUp.c
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
/*
* Copyright (c) 2001 Apple Computer, Inc. All rights reserved.
*
* @APPLE_LICENSE_HEADER_START@
*
* The contents of this file constitute Original Code as defined in and
* are subject to the Apple Public Source License Version 1.1 (the
* "License"). You may not use this file except in compliance with the
* License. Please obtain a copy of the License at
* http://www.apple.com/publicsource and read it before using this file.
*
* This Original Code and all software distributed under the License are
* distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
* EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
* INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
* License for the specific language governing rights and limitations
* under the License.
*
* @APPLE_LICENSE_HEADER_END@
*/
/*
* Shantonu Sen <<EMAIL REMOVED>>
* openUp.c - program to set the "first-open-window" field of a volume
*
* Get the directory ID for the first argument, and set it as word 2
* of the Finder Info fields for the volume it lives on
*
* cc -o openUp openUp.c
* Usage: openUp /Volumes/Foo/OpenMe/
*
*/
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <sys/attr.h>
#include <sys/stat.h>
#include <sys/mount.h>
#include <memory.h>
struct directoryinfo {
long unsigned length;
uintptr_t dirid; // changed from: u_int32_t dirid;
};
struct volumeinfo {
long unsigned length;
uintptr_t finderinfo[8]; // changed from: u_int32_t finderinfo[8];
};
int main(int argc, char *argv[]) {
char *path = NULL;
struct attrlist alist;
struct directoryinfo dirinfo;
struct volumeinfo volinfo;
struct statfs sfs;
path = argv[1];
bzero(&alist, sizeof(alist));
alist.bitmapcount = 5;
alist.commonattr = ATTR_CMN_OBJID;
getattrlist(path, &alist, &dirinfo, sizeof(dirinfo), 0);
printf("directory id: %lu\n", dirinfo.dirid);
statfs(path, &sfs);
printf("mountpoint: %s\n", sfs.f_mntonname);
alist.commonattr = ATTR_CMN_FNDRINFO;
alist.volattr = ATTR_VOL_INFO;
getattrlist(sfs.f_mntonname, &alist, &volinfo, sizeof(volinfo), 0);
volinfo.finderinfo[2] = dirinfo.dirid;
setattrlist(sfs.f_mntonname, &alist, volinfo.finderinfo, sizeof(volinfo.finderinfo), 0);
return EXIT_SUCCESS;
}
branches/iFabio/Chameleon/Make.rules
1616
1717
1818
19
20
21
19
20
2221
2322
24
25
26
2723
28
29
30
3124
3225
3326
......
7669
7770
7871
79
80
81
82
83
84
8572
8673
8774
8875
8976
90
91
92
93
94
95
96
9777
9878
9979
NASM = $(shell which nasm) -p $(SRCROOT)/autoconf.inc
# CFLAGS= -O $(MORECPP) -arch i386 -g
CFLAGS= $(CONFIG_OPTIMIZATION_LEVEL) $(MORECPP) -g -Wmost -Werror
CPPFLAGS = -fno-exceptions -fno-rtti
CFLAGS= $(CONFIG_OPTIMIZATION_LEVEL) -g -Wmost -Werror
CPPFLAGS = $(MORECPP) -g -Wmost -Werror -fno-exceptions -fno-rtti
DEFINES=
CONFIG = hd
#LIBDIR = libsa
#INC = -I. -I$(LIBDIR)
#
# Common makefile targets.
#
-MD -dependency-file $(OBJROOT)/$*.d
@md -u $(OBJROOT)/Makedep -f -d $(OBJROOT)/$*.d
#$(OBJROOT)/.s.o:
#@echo "\t[AS] $<"
#@cc $(CPPFLAGS) -c $(INC) -arch i386 -o $(OBJROOT)/$(@F) $<
# This breaks make, must use make all (FIXME)
$(OBJROOT)/boot2.o:
@echo "\t[AS] boot2.s"
@cc $(CPPFLAGS) -Wa,-n -c $(INC) -arch i386 -o $(OBJROOT)/$(@F) boot2.s \
-MD -dependency-file $*.d
@md -u $(OBJROOT)/Makedep -f -d $*.d
#$(OBJROOT)/boot_modules.o:
#@echo "\t[AS] boot_modules.s"
#@cc $(CPPFLAGS) -Wa,-n -c $(INC) -arch i386 -o $(OBJROOT)/$(@F) $(SYMROOT)/boot_modules.s \
# -MD -dependency-file $*.d
#@md -u $(OBJROOT)/Makedep -f -d $*.d
$(OBJROOT)/%.o: %.s
@echo "\t[AS] $<"

Archive Download the corresponding diff file

Revision: 303