blob: 64056a2a1a2ff627888f730eb8223d24f93b56a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
|
:config:
segments:
- [0x06, 0x857E80]
- [0x07, 0x800000]
header:
code:
- '#include <libultraship.h>'
header:
- '#include <libultraship.h>'
- '#include <libultra/gbi.h>'
- '#include <align_asset_macro.h>'
references_packed_displaylists: true
d_course_toads_turnpike_dl_0:
symbol: d_course_toads_turnpike_dl_0
type: gfx
offset: 0x0
d_course_toads_turnpike_dl_60:
symbol: d_course_toads_turnpike_dl_60
type: gfx
offset: 0x60
d_course_toads_turnpike_dl_80:
symbol: d_course_toads_turnpike_dl_80
type: gfx
offset: 0x80
d_course_toads_turnpike_dl_158:
symbol: d_course_toads_turnpike_dl_158
type: gfx
offset: 0x158
d_course_toads_turnpike_dl_1F8:
symbol: d_course_toads_turnpike_dl_1F8
type: gfx
offset: 0x1F8
d_course_toads_turnpike_dl_2D0:
symbol: d_course_toads_turnpike_dl_2D0
type: gfx
offset: 0x2D0
d_course_toads_turnpike_dl_380:
symbol: d_course_toads_turnpike_dl_380
type: gfx
offset: 0x380
d_course_toads_turnpike_dl_438:
symbol: d_course_toads_turnpike_dl_438
type: gfx
offset: 0x438
d_course_toads_turnpike_dl_4E8:
symbol: d_course_toads_turnpike_dl_4E8
type: gfx
offset: 0x4E8
d_course_toads_turnpike_dl_5B8:
symbol: d_course_toads_turnpike_dl_5B8
type: gfx
offset: 0x5B8
d_course_toads_turnpike_dl_668:
symbol: d_course_toads_turnpike_dl_668
type: gfx
offset: 0x668
d_course_toads_turnpike_dl_718:
symbol: d_course_toads_turnpike_dl_718
type: gfx
offset: 0x718
d_course_toads_turnpike_dl_7D8:
symbol: d_course_toads_turnpike_dl_7D8
type: gfx
offset: 0x7D8
d_course_toads_turnpike_dl_878:
symbol: d_course_toads_turnpike_dl_878
type: gfx
offset: 0x878
d_course_toads_turnpike_dl_948:
symbol: d_course_toads_turnpike_dl_948
type: gfx
offset: 0x948
d_course_toads_turnpike_dl_9F0:
symbol: d_course_toads_turnpike_dl_9F0
type: gfx
offset: 0x9F0
d_course_toads_turnpike_dl_AC8:
symbol: d_course_toads_turnpike_dl_AC8
type: gfx
offset: 0xAC8
d_course_toads_turnpike_dl_B88:
symbol: d_course_toads_turnpike_dl_B88
type: gfx
offset: 0xB88
d_course_toads_turnpike_dl_C70:
symbol: d_course_toads_turnpike_dl_C70
type: gfx
offset: 0xC70
d_course_toads_turnpike_dl_D00:
symbol: d_course_toads_turnpike_dl_D00
type: gfx
offset: 0xD00
d_course_toads_turnpike_dl_DD0:
symbol: d_course_toads_turnpike_dl_DD0
type: gfx
offset: 0xDD0
d_course_toads_turnpike_dl_E70:
symbol: d_course_toads_turnpike_dl_E70
type: gfx
offset: 0xE70
d_course_toads_turnpike_dl_F18:
symbol: d_course_toads_turnpike_dl_F18
type: gfx
offset: 0xF18
d_course_toads_turnpike_dl_FA8:
symbol: d_course_toads_turnpike_dl_FA8
type: gfx
offset: 0xFA8
d_course_toads_turnpike_dl_1070:
symbol: d_course_toads_turnpike_dl_1070
type: gfx
offset: 0x1070
d_course_toads_turnpike_dl_1118:
symbol: d_course_toads_turnpike_dl_1118
type: gfx
offset: 0x1118
d_course_toads_turnpike_dl_11C0:
symbol: d_course_toads_turnpike_dl_11C0
type: gfx
offset: 0x11C0
d_course_toads_turnpike_dl_1250:
symbol: d_course_toads_turnpike_dl_1250
type: gfx
offset: 0x1250
d_course_toads_turnpike_dl_1310:
symbol: d_course_toads_turnpike_dl_1310
type: gfx
offset: 0x1310
d_course_toads_turnpike_dl_13E0:
symbol: d_course_toads_turnpike_dl_13E0
type: gfx
offset: 0x13E0
d_course_toads_turnpike_dl_1468:
symbol: d_course_toads_turnpike_dl_1468
type: gfx
offset: 0x1468
d_course_toads_turnpike_dl_1510:
symbol: d_course_toads_turnpike_dl_1510
type: gfx
offset: 0x1510
d_course_toads_turnpike_dl_15A8:
symbol: d_course_toads_turnpike_dl_15A8
type: gfx
offset: 0x15A8
d_course_toads_turnpike_dl_1678:
symbol: d_course_toads_turnpike_dl_1678
type: gfx
offset: 0x1678
d_course_toads_turnpike_dl_1708:
symbol: d_course_toads_turnpike_dl_1708
type: gfx
offset: 0x1708
d_course_toads_turnpike_dl_17F8:
symbol: d_course_toads_turnpike_dl_17F8
type: gfx
offset: 0x17F8
d_course_toads_turnpike_dl_18C0:
symbol: d_course_toads_turnpike_dl_18C0
type: gfx
offset: 0x18C0
d_course_toads_turnpike_dl_19C0:
symbol: d_course_toads_turnpike_dl_19C0
type: gfx
offset: 0x19C0
d_course_toads_turnpike_dl_1A60:
symbol: d_course_toads_turnpike_dl_1A60
type: gfx
offset: 0x1A60
d_course_toads_turnpike_dl_1B50:
symbol: d_course_toads_turnpike_dl_1B50
type: gfx
offset: 0x1B50
d_course_toads_turnpike_dl_1C10:
symbol: d_course_toads_turnpike_dl_1C10
type: gfx
offset: 0x1C10
d_course_toads_turnpike_dl_1D18:
symbol: d_course_toads_turnpike_dl_1D18
type: gfx
offset: 0x1D18
d_course_toads_turnpike_dl_1DC0:
symbol: d_course_toads_turnpike_dl_1DC0
type: gfx
offset: 0x1DC0
d_course_toads_turnpike_dl_1E80:
symbol: d_course_toads_turnpike_dl_1E80
type: gfx
offset: 0x1E80
d_course_toads_turnpike_dl_1F40:
symbol: d_course_toads_turnpike_dl_1F40
type: gfx
offset: 0x1F40
d_course_toads_turnpike_dl_2030:
symbol: d_course_toads_turnpike_dl_2030
type: gfx
offset: 0x2030
d_course_toads_turnpike_dl_20F8:
symbol: d_course_toads_turnpike_dl_20F8
type: gfx
offset: 0x20F8
d_course_toads_turnpike_dl_21C8:
symbol: d_course_toads_turnpike_dl_21C8
type: gfx
offset: 0x21C8
d_course_toads_turnpike_dl_22A8:
symbol: d_course_toads_turnpike_dl_22A8
type: gfx
offset: 0x22A8
d_course_toads_turnpike_dl_2358:
symbol: d_course_toads_turnpike_dl_2358
type: gfx
offset: 0x2358
d_course_toads_turnpike_dl_2440:
symbol: d_course_toads_turnpike_dl_2440
type: gfx
offset: 0x2440
d_course_toads_turnpike_dl_2530:
symbol: d_course_toads_turnpike_dl_2530
type: gfx
offset: 0x2530
d_course_toads_turnpike_dl_2628:
symbol: d_course_toads_turnpike_dl_2628
type: gfx
offset: 0x2628
d_course_toads_turnpike_dl_26D8:
symbol: d_course_toads_turnpike_dl_26D8
type: gfx
offset: 0x26D8
d_course_toads_turnpike_dl_27D0:
symbol: d_course_toads_turnpike_dl_27D0
type: gfx
offset: 0x27D0
d_course_toads_turnpike_dl_2898:
symbol: d_course_toads_turnpike_dl_2898
type: gfx
offset: 0x2898
d_course_toads_turnpike_dl_2960:
symbol: d_course_toads_turnpike_dl_2960
type: gfx
offset: 0x2960
d_course_toads_turnpike_dl_2A00:
symbol: d_course_toads_turnpike_dl_2A00
type: gfx
offset: 0x2A00
d_course_toads_turnpike_dl_2AF0:
symbol: d_course_toads_turnpike_dl_2AF0
type: gfx
offset: 0x2AF0
d_course_toads_turnpike_dl_2B88:
symbol: d_course_toads_turnpike_dl_2B88
type: gfx
offset: 0x2B88
d_course_toads_turnpike_dl_2C38:
symbol: d_course_toads_turnpike_dl_2C38
type: gfx
offset: 0x2C38
d_course_toads_turnpike_dl_2CC0:
symbol: d_course_toads_turnpike_dl_2CC0
type: gfx
offset: 0x2CC0
d_course_toads_turnpike_dl_2DB8:
symbol: d_course_toads_turnpike_dl_2DB8
type: gfx
offset: 0x2DB8
d_course_toads_turnpike_dl_2E50:
symbol: d_course_toads_turnpike_dl_2E50
type: gfx
offset: 0x2E50
d_course_toads_turnpike_dl_2EF0:
symbol: d_course_toads_turnpike_dl_2EF0
type: gfx
offset: 0x2EF0
d_course_toads_turnpike_dl_2F78:
symbol: d_course_toads_turnpike_dl_2F78
type: gfx
offset: 0x2F78
d_course_toads_turnpike_dl_3030:
symbol: d_course_toads_turnpike_dl_3030
type: gfx
offset: 0x3030
d_course_toads_turnpike_dl_30F8:
symbol: d_course_toads_turnpike_dl_30F8
type: gfx
offset: 0x30F8
d_course_toads_turnpike_dl_3190:
symbol: d_course_toads_turnpike_dl_3190
type: gfx
offset: 0x3190
d_course_toads_turnpike_dl_3228:
symbol: d_course_toads_turnpike_dl_3228
type: gfx
offset: 0x3228
d_course_toads_turnpike_dl_32F0:
symbol: d_course_toads_turnpike_dl_32F0
type: gfx
offset: 0x32F0
d_course_toads_turnpike_dl_33A0:
symbol: d_course_toads_turnpike_dl_33A0
type: gfx
offset: 0x33A0
d_course_toads_turnpike_dl_3438:
symbol: d_course_toads_turnpike_dl_3438
type: gfx
offset: 0x3438
d_course_toads_turnpike_dl_34D0:
symbol: d_course_toads_turnpike_dl_34D0
type: gfx
offset: 0x34D0
d_course_toads_turnpike_dl_3570:
symbol: d_course_toads_turnpike_dl_3570
type: gfx
offset: 0x3570
d_course_toads_turnpike_dl_3618:
symbol: d_course_toads_turnpike_dl_3618
type: gfx
offset: 0x3618
d_course_toads_turnpike_dl_36A8:
symbol: d_course_toads_turnpike_dl_36A8
type: gfx
offset: 0x36A8
d_course_toads_turnpike_dl_3758:
symbol: d_course_toads_turnpike_dl_3758
type: gfx
offset: 0x3758
d_course_toads_turnpike_dl_37F0:
symbol: d_course_toads_turnpike_dl_37F0
type: gfx
offset: 0x37F0
d_course_toads_turnpike_dl_3910:
symbol: d_course_toads_turnpike_dl_3910
type: gfx
offset: 0x3910
d_course_toads_turnpike_dl_39C8:
symbol: d_course_toads_turnpike_dl_39C8
type: gfx
offset: 0x39C8
d_course_toads_turnpike_dl_3AD8:
symbol: d_course_toads_turnpike_dl_3AD8
type: gfx
offset: 0x3AD8
d_course_toads_turnpike_unknown_waypoints:
symbol: d_course_toads_turnpike_unknown_waypoints
type: mk64:TRACK_WAYPOINTS
offset: 0x3B80
count: 54
d_course_toads_turnpike_track_waypoints:
symbol: d_course_toads_turnpike_track_waypoints
type: mk64:TRACK_WAYPOINTS
offset: 0x3D30
count: 913
d_course_toads_turnpike_unk_windshield1:
symbol: d_course_toads_turnpike_unk_windshield1
type: texture
offset: 0x59B8
width: 32
height: 32
format: rgba16
ctype: u16
d_course_toads_turnpike_unk_windshield2:
symbol: d_course_toads_turnpike_unk_windshield2
type: texture
offset: 0x61B8
width: 32
height: 32
format: rgba16
ctype: u16
d_course_toads_turnpike_truck_box1:
symbol: d_course_toads_turnpike_truck_box1
type: texture
offset: 0x69B8
width: 32
height: 32
format: rgba16
ctype: u16
d_course_toads_turnpike_truck1_headlights:
symbol: d_course_toads_turnpike_truck1_headlights
type: texture
offset: 0x71B8
width: 32
height: 32
format: rgba16
ctype: u16
d_course_toads_turnpike_truck1_tyre:
symbol: d_course_toads_turnpike_truck1_tyre
type: texture
offset: 0x79B8
width: 32
height: 32
format: rgba16
ctype: u16
d_course_toads_turnpike_truck1_cab:
symbol: d_course_toads_turnpike_truck1_cab
type: texture
offset: 0x81B8
width: 32
height: 32
format: rgba16
ctype: u16
d_course_toads_turnpike_truck1_cab_side:
symbol: d_course_toads_turnpike_truck1_cab_side
type: texture
offset: 0x89B8
width: 32
height: 32
format: rgba16
ctype: u16
d_course_toads_turnpike_bus_back_lod0:
symbol: d_course_toads_turnpike_bus_back_lod0
type: texture
offset: 0x91B8
width: 64
height: 32
format: rgba16
ctype: u16
d_course_toads_turnpike_bus_side:
symbol: d_course_toads_turnpike_bus_side
type: texture
offset: 0xA1B8
width: 64
height: 32
format: rgba16
ctype: u16
d_course_toads_turnpike_bus_door_lod0:
symbol: d_course_toads_turnpike_bus_door_lod0
type: texture
offset: 0xB1B8
width: 32
height: 32
format: rgba16
ctype: u16
d_course_toads_turnpike_bus_window:
symbol: d_course_toads_turnpike_bus_window
type: texture
offset: 0xB9B8
width: 32
height: 32
format: rgba16
ctype: u16
d_course_toads_turnpike_bus_front_lod0:
symbol: d_course_toads_turnpike_bus_front_lod0
type: texture
offset: 0xC1B8
width: 64
height: 32
format: rgba16
ctype: u16
d_course_toads_turnpike_black:
symbol: d_course_toads_turnpike_black
type: texture
offset: 0xD1B8
width: 32
height: 32
format: rgba16
ctype: u16
d_course_toads_turnpike_bus_driver_window:
symbol: d_course_toads_turnpike_bus_driver_window
type: texture
offset: 0xD9B8
width: 32
height: 32
format: rgba16
ctype: u16
d_course_toads_turnpike_bus_door_lod1:
symbol: d_course_toads_turnpike_bus_door_lod1
type: texture
offset: 0xE1B8
width: 32
height: 32
format: rgba16
ctype: u16
d_course_toads_turnpike_bus_side_lod1:
symbol: d_course_toads_turnpike_bus_side_lod1
type: texture
offset: 0xE9B8
width: 32
height: 32
format: rgba16
ctype: u16
d_course_toads_turnpike_bus_front_lod1:
symbol: d_course_toads_turnpike_bus_front_lod1
type: texture
offset: 0xF1B8
width: 32
height: 32
format: rgba16
ctype: u16
d_course_toads_turnpike_bus_back_lod1:
symbol: d_course_toads_turnpike_bus_back_lod1
type: texture
offset: 0xF9B8
width: 32
height: 32
format: rgba16
ctype: u16
d_course_toads_turnpike_tanker_truck_stripe:
symbol: d_course_toads_turnpike_tanker_truck_stripe
type: texture
offset: 0x101B8
width: 32
height: 32
format: rgba16
ctype: u16
d_course_toads_turnpike_tanker_truck_windshield:
symbol: d_course_toads_turnpike_tanker_truck_windshield
type: texture
offset: 0x109B8
width: 32
height: 32
format: rgba16
ctype: u16
d_course_toads_turnpike_tanker_truck_front:
symbol: d_course_toads_turnpike_tanker_truck_front
type: texture
offset: 0x111B8
width: 32
height: 32
format: rgba16
ctype: u16
d_course_toads_turnpike_tanker_truck_headlights:
symbol: d_course_toads_turnpike_tanker_truck_headlights
type: texture
offset: 0x119B8
width: 32
height: 32
format: rgba16
ctype: u16
d_course_toads_turnpike_tanker_truck_bumper:
symbol: d_course_toads_turnpike_tanker_truck_bumper
type: texture
offset: 0x121B8
width: 32
height: 32
format: rgba16
ctype: u16
d_course_toads_turnpike_tanker_truck_side_back_lod1:
symbol: d_course_toads_turnpike_tanker_truck_side_back_lod1
type: texture
offset: 0x129B8
width: 32
height: 32
format: rgba16
ctype: u16
d_course_toads_turnpike_tanker_truck_back_lod1:
symbol: d_course_toads_turnpike_tanker_truck_back_lod1
type: texture
offset: 0x131B8
width: 32
height: 32
format: rgba16
ctype: u16
d_course_toads_turnpike_tanker_truck_side_front_lod1:
symbol: d_course_toads_turnpike_tanker_truck_side_front_lod1
type: texture
offset: 0x139B8
width: 32
height: 32
format: rgba16
ctype: u16
d_course_toads_turnpike_tanker_truck_front_lod1:
symbol: d_course_toads_turnpike_tanker_truck_front_lod1
type: texture
offset: 0x141B8
width: 32
height: 32
format: rgba16
ctype: u16
d_course_toads_turnpike_truck_box2:
symbol: d_course_toads_turnpike_truck_box2
type: texture
offset: 0x149B8
width: 32
height: 32
format: rgba16
ctype: u16
d_course_toads_turnpike_truck_box3:
symbol: d_course_toads_turnpike_truck_box3
type: texture
offset: 0x151B8
width: 32
height: 32
format: rgba16
ctype: u16
d_course_toads_turnpike_car_headlights:
symbol: d_course_toads_turnpike_car_headlights
type: texture
offset: 0x159B8
width: 32
height: 32
format: rgba16
ctype: u16
d_course_toads_turnpike_car_taillights:
symbol: d_course_toads_turnpike_car_taillights
type: texture
offset: 0x161B8
width: 32
height: 32
format: rgba16
ctype: u16
d_course_toads_turnpike_car_front_lod1:
symbol: d_course_toads_turnpike_car_front_lod1
type: texture
offset: 0x169B8
width: 32
height: 32
format: rgba16
ctype: u16
d_course_toads_turnpike_car_back_lod1:
symbol: d_course_toads_turnpike_car_back_lod1
type: texture
offset: 0x171B8
width: 32
height: 32
format: rgba16
ctype: u16
d_course_toads_turnpike_car_side_lod1:
symbol: d_course_toads_turnpike_car_side_lod1
type: texture
offset: 0x179B8
width: 32
height: 32
format: rgba16
ctype: u16
d_course_toads_turnpike_truck_model_lod0:
symbol: d_course_toads_turnpike_truck_model_lod0
type: vtx
offset: 0x181B8
count: 8
d_course_toads_turnpike_truck_unknown_model1:
symbol: d_course_toads_turnpike_truck_unknown_model1
type: vtx
offset: 0x18238
count: 8
d_course_toads_turnpike_truck_unknown_model2:
symbol: d_course_toads_turnpike_truck_unknown_model2
type: vtx
offset: 0x182B8
count: 12
d_course_toads_turnpike_truck_unknown_model3:
symbol: d_course_toads_turnpike_truck_unknown_model3
type: vtx
offset: 0x18378
count: 12
d_course_toads_turnpike_truck_unknown_model4:
symbol: d_course_toads_turnpike_truck_unknown_model4
type: vtx
offset: 0x18438
count: 28
d_course_toads_turnpike_truck_unknown_model5:
symbol: d_course_toads_turnpike_truck_unknown_model5
type: vtx
offset: 0x185F8
count: 10
d_course_toads_turnpike_truck_unknown_model6:
symbol: d_course_toads_turnpike_truck_unknown_model6
type: vtx
offset: 0x18698
count: 31
d_course_toads_turnpike_truck_unknown_model7:
symbol: d_course_toads_turnpike_truck_unknown_model7
type: vtx
offset: 0x18888
count: 10
d_course_toads_turnpike_truck_unknown_model8:
symbol: d_course_toads_turnpike_truck_unknown_model8
type: vtx
offset: 0x18928
count: 14
d_course_toads_turnpike_truck_unknown_model9:
symbol: d_course_toads_turnpike_truck_unknown_model9
type: vtx
offset: 0x18A08
count: 4
d_course_toads_turnpike_truck_unknown_model10:
symbol: d_course_toads_turnpike_truck_unknown_model10
type: vtx
offset: 0x18A48
count: 8
d_course_toads_turnpike_truck_unknown_model11:
symbol: d_course_toads_turnpike_truck_unknown_model11
type: vtx
offset: 0x18AC8
count: 20
d_course_toads_turnpike_truck_unknown_model12:
symbol: d_course_toads_turnpike_truck_unknown_model12
type: vtx
offset: 0x18C08
count: 15
d_course_toads_turnpike_truck_unknown_model13:
symbol: d_course_toads_turnpike_truck_unknown_model13
type: vtx
offset: 0x18CF8
count: 12
d_course_toads_turnpike_dl_18DB8:
symbol: d_course_toads_turnpike_dl_18DB8
type: gfx
offset: 0x18DB8
d_course_toads_turnpike_dl_18E38:
symbol: d_course_toads_turnpike_dl_18E38
type: gfx
offset: 0x18E38
d_course_toads_turnpike_dl_18EB8:
symbol: d_course_toads_turnpike_dl_18EB8
type: gfx
offset: 0x18EB8
d_course_toads_turnpike_dl_18F58:
symbol: d_course_toads_turnpike_dl_18F58
type: gfx
offset: 0x18F58
d_course_toads_turnpike_dl_18FF8:
symbol: d_course_toads_turnpike_dl_18FF8
type: gfx
offset: 0x18FF8
d_course_toads_turnpike_dl_19020:
symbol: d_course_toads_turnpike_dl_19020
type: gfx
offset: 0x19020
d_course_toads_turnpike_dl_19030:
symbol: d_course_toads_turnpike_dl_19030
type: gfx
offset: 0x19030
d_course_toads_turnpike_dl_190E8:
symbol: d_course_toads_turnpike_dl_190E8
type: gfx
offset: 0x190E8
d_course_toads_turnpike_dl_19168:
symbol: d_course_toads_turnpike_dl_19168
type: gfx
offset: 0x19168
d_course_toads_turnpike_dl_192B0:
symbol: d_course_toads_turnpike_dl_192B0
type: gfx
offset: 0x192B0
d_course_toads_turnpike_dl_19390:
symbol: d_course_toads_turnpike_dl_19390
type: gfx
offset: 0x19390
d_course_toads_turnpike_dl_19450:
symbol: d_course_toads_turnpike_dl_19450
type: gfx
offset: 0x19450
d_course_toads_turnpike_dl_194E0:
symbol: d_course_toads_turnpike_dl_194E0
type: gfx
offset: 0x194E0
d_course_toads_turnpike_dl_19518:
symbol: d_course_toads_turnpike_dl_19518
type: gfx
offset: 0x19518
d_course_toads_turnpike_truck_model_lod1:
symbol: d_course_toads_turnpike_truck_model_lod1
type: vtx
offset: 0x19528
count: 16
d_course_toads_turnpike_truck_unknown_model14:
symbol: d_course_toads_turnpike_truck_unknown_model14
type: vtx
offset: 0x19628
count: 16
d_course_toads_turnpike_truck_unknown_model15:
symbol: d_course_toads_turnpike_truck_unknown_model15
type: vtx
offset: 0x19728
count: 20
d_course_toads_turnpike_truck_unknown_model16:
symbol: d_course_toads_turnpike_truck_unknown_model16
type: vtx
offset: 0x19868
count: 12
d_course_toads_turnpike_truck_unknown_model17:
symbol: d_course_toads_turnpike_truck_unknown_model17
type: vtx
offset: 0x19928
count: 12
d_course_toads_turnpike_truck_unknown_model18:
symbol: d_course_toads_turnpike_truck_unknown_model18
type: vtx
offset: 0x199E8
count: 27
d_course_toads_turnpike_truck_unknown_model19:
symbol: d_course_toads_turnpike_truck_unknown_model19
type: vtx
offset: 0x19B98
count: 18
d_course_toads_turnpike_truck_unknown_model20:
symbol: d_course_toads_turnpike_truck_unknown_model20
type: vtx
offset: 0x19CB8
count: 4
d_course_toads_turnpike_dl_19CF8:
symbol: d_course_toads_turnpike_dl_19CF8
type: gfx
offset: 0x19CF8
d_course_toads_turnpike_dl_19D68:
symbol: d_course_toads_turnpike_dl_19D68
type: gfx
offset: 0x19D68
d_course_toads_turnpike_dl_19DD8:
symbol: d_course_toads_turnpike_dl_19DD8
type: gfx
offset: 0x19DD8
d_course_toads_turnpike_dl_19DF0:
symbol: d_course_toads_turnpike_dl_19DF0
type: gfx
offset: 0x19DF0
d_course_toads_turnpike_dl_19E00:
symbol: d_course_toads_turnpike_dl_19E00
type: gfx
offset: 0x19E00
d_course_toads_turnpike_dl_19E38:
symbol: d_course_toads_turnpike_dl_19E38
type: gfx
offset: 0x19E38
d_course_toads_turnpike_dl_19EA0:
symbol: d_course_toads_turnpike_dl_19EA0
type: gfx
offset: 0x19EA0
d_course_toads_turnpike_dl_19F08:
symbol: d_course_toads_turnpike_dl_19F08
type: gfx
offset: 0x19F08
d_course_toads_turnpike_dl_1A040:
symbol: d_course_toads_turnpike_dl_1A040
type: gfx
offset: 0x1A040
d_course_toads_turnpike_dl_1A068:
symbol: d_course_toads_turnpike_dl_1A068
type: gfx
offset: 0x1A068
d_course_toads_turnpike_truck_model_lod2:
symbol: d_course_toads_turnpike_truck_model_lod2
type: vtx
offset: 0x1A078
count: 16
d_course_toads_turnpike_truck_unknown_model21:
symbol: d_course_toads_turnpike_truck_unknown_model21
type: vtx
offset: 0x1A178
count: 4
d_course_toads_turnpike_truck_unknown_model22:
symbol: d_course_toads_turnpike_truck_unknown_model22
type: vtx
offset: 0x1A1B8
count: 12
d_course_toads_turnpike_truck_unknown_model23:
symbol: d_course_toads_turnpike_truck_unknown_model23
type: vtx
offset: 0x1A278
count: 20
d_course_toads_turnpike_truck_unknown_model24:
symbol: d_course_toads_turnpike_truck_unknown_model24
type: vtx
offset: 0x1A3B8
count: 16
d_course_toads_turnpike_dl_1A4B8:
symbol: d_course_toads_turnpike_dl_1A4B8
type: gfx
offset: 0x1A4B8
d_course_toads_turnpike_dl_1A528:
symbol: d_course_toads_turnpike_dl_1A528
type: gfx
offset: 0x1A528
d_course_toads_turnpike_dl_1A5E0:
symbol: d_course_toads_turnpike_dl_1A5E0
type: gfx
offset: 0x1A5E0
d_course_toads_turnpike_dl_1A5F8:
symbol: d_course_toads_turnpike_dl_1A5F8
type: gfx
offset: 0x1A5F8
d_course_toads_turnpike_dl_1A608:
symbol: d_course_toads_turnpike_dl_1A608
type: gfx
offset: 0x1A608
d_course_toads_turnpike_dl_1A640:
symbol: d_course_toads_turnpike_dl_1A640
type: gfx
offset: 0x1A640
d_course_toads_turnpike_dl_1A6B0:
symbol: d_course_toads_turnpike_dl_1A6B0
type: gfx
offset: 0x1A6B0
d_course_toads_turnpike_dl_1A6C8:
symbol: d_course_toads_turnpike_dl_1A6C8
type: gfx
offset: 0x1A6C8
d_course_toads_turnpike_bus_model_lod0:
symbol: d_course_toads_turnpike_bus_model_lod0
type: vtx
offset: 0x1A6D8
count: 16
d_course_toads_turnpike_bus_unknown_model1:
symbol: d_course_toads_turnpike_bus_unknown_model1
type: vtx
offset: 0x1A7D8
count: 8
d_course_toads_turnpike_bus_unknown_model2:
symbol: d_course_toads_turnpike_bus_unknown_model2
type: vtx
offset: 0x1A858
count: 8
d_course_toads_turnpike_bus_unknown_model3:
symbol: d_course_toads_turnpike_bus_unknown_model3
type: vtx
offset: 0x1A8D8
count: 8
d_course_toads_turnpike_bus_unknown_model4:
symbol: d_course_toads_turnpike_bus_unknown_model4
type: vtx
offset: 0x1A958
count: 10
d_course_toads_turnpike_bus_unknown_model5:
symbol: d_course_toads_turnpike_bus_unknown_model5
type: vtx
offset: 0x1A9F8
count: 6
d_course_toads_turnpike_bus_unknown_model6:
symbol: d_course_toads_turnpike_bus_unknown_model6
type: vtx
offset: 0x1AA58
count: 4
d_course_toads_turnpike_bus_unknown_model7:
symbol: d_course_toads_turnpike_bus_unknown_model7
type: vtx
offset: 0x1AA98
count: 20
d_course_toads_turnpike_bus_unknown_model8:
symbol: d_course_toads_turnpike_bus_unknown_model8
type: vtx
offset: 0x1ABD8
count: 21
d_course_toads_turnpike_bus_unknown_model9:
symbol: d_course_toads_turnpike_bus_unknown_model9
type: vtx
offset: 0x1AD28
count: 8
d_course_toads_turnpike_bus_unknown_model10:
symbol: d_course_toads_turnpike_bus_unknown_model10
type: vtx
offset: 0x1ADA8
count: 32
d_course_toads_turnpike_bus_unknown_model11:
symbol: d_course_toads_turnpike_bus_unknown_model11
type: vtx
offset: 0x1AFA8
count: 32
d_course_toads_turnpike_bus_unknown_model12:
symbol: d_course_toads_turnpike_bus_unknown_model12
type: vtx
offset: 0x1B1A8
count: 10
d_course_toads_turnpike_bus_unknown_model13:
symbol: d_course_toads_turnpike_bus_unknown_model13
type: vtx
offset: 0x1B248
count: 8
d_course_toads_turnpike_bus_unknown_model14:
symbol: d_course_toads_turnpike_bus_unknown_model14
type: vtx
offset: 0x1B2C8
count: 24
d_course_toads_turnpike_bus_unknown_model15:
symbol: d_course_toads_turnpike_bus_unknown_model15
type: vtx
offset: 0x1B448
count: 24
d_course_toads_turnpike_dl_1B5C8:
symbol: d_course_toads_turnpike_dl_1B5C8
type: gfx
offset: 0x1B5C8
d_course_toads_turnpike_dl_1B658:
symbol: d_course_toads_turnpike_dl_1B658
type: gfx
offset: 0x1B658
d_course_toads_turnpike_dl_1B6D8:
symbol: d_course_toads_turnpike_dl_1B6D8
type: gfx
offset: 0x1B6D8
d_course_toads_turnpike_dl_1B758:
symbol: d_course_toads_turnpike_dl_1B758
type: gfx
offset: 0x1B758
d_course_toads_turnpike_dl_1B778:
symbol: d_course_toads_turnpike_dl_1B778
type: gfx
offset: 0x1B778
d_course_toads_turnpike_dl_1B788:
symbol: d_course_toads_turnpike_dl_1B788
type: gfx
offset: 0x1B788
d_course_toads_turnpike_dl_1B810:
symbol: d_course_toads_turnpike_dl_1B810
type: gfx
offset: 0x1B810
d_course_toads_turnpike_dl_1B8A0:
symbol: d_course_toads_turnpike_dl_1B8A0
type: gfx
offset: 0x1B8A0
d_course_toads_turnpike_dl_1BC78:
symbol: d_course_toads_turnpike_dl_1BC78
type: gfx
offset: 0x1BC78
d_course_toads_turnpike_dl_1BD48:
symbol: d_course_toads_turnpike_dl_1BD48
type: gfx
offset: 0x1BD48
d_course_toads_turnpike_dl_1BE18:
symbol: d_course_toads_turnpike_dl_1BE18
type: gfx
offset: 0x1BE18
d_course_toads_turnpike_dl_1BE48:
symbol: d_course_toads_turnpike_dl_1BE48
type: gfx
offset: 0x1BE48
d_course_toads_turnpike_bus_model_lod1:
symbol: d_course_toads_turnpike_bus_model_lod1
type: vtx
offset: 0x1BE58
count: 8
d_course_toads_turnpike_bus_unknown_model16:
symbol: d_course_toads_turnpike_bus_unknown_model16
type: vtx
offset: 0x1BED8
count: 8
d_course_toads_turnpike_bus_unknown_model17:
symbol: d_course_toads_turnpike_bus_unknown_model17
type: vtx
offset: 0x1BF58
count: 8
d_course_toads_turnpike_bus_unknown_model18:
symbol: d_course_toads_turnpike_bus_unknown_model18
type: vtx
offset: 0x1BFD8
count: 8
d_course_toads_turnpike_bus_unknown_model19:
symbol: d_course_toads_turnpike_bus_unknown_model19
type: vtx
offset: 0x1C058
count: 4
d_course_toads_turnpike_bus_unknown_model20:
symbol: d_course_toads_turnpike_bus_unknown_model20
type: vtx
offset: 0x1C098
count: 4
d_course_toads_turnpike_bus_unknown_model21:
symbol: d_course_toads_turnpike_bus_unknown_model21
type: vtx
offset: 0x1C0D8
count: 4
d_course_toads_turnpike_bus_unknown_model22:
symbol: d_course_toads_turnpike_bus_unknown_model22
type: vtx
offset: 0x1C118
count: 6
d_course_toads_turnpike_bus_unknown_model23:
symbol: d_course_toads_turnpike_bus_unknown_model23
type: vtx
offset: 0x1C178
count: 32
d_course_toads_turnpike_bus_unknown_model24:
symbol: d_course_toads_turnpike_bus_unknown_model24
type: vtx
offset: 0x1C378
count: 31
d_course_toads_turnpike_bus_unknown_model25:
symbol: d_course_toads_turnpike_bus_unknown_model25
type: vtx
offset: 0x1C568
count: 12
d_course_toads_turnpike_dl_1C628:
symbol: d_course_toads_turnpike_dl_1C628
type: gfx
offset: 0x1C628
d_course_toads_turnpike_dl_1C688:
symbol: d_course_toads_turnpike_dl_1C688
type: gfx
offset: 0x1C688
d_course_toads_turnpike_dl_1C6E8:
symbol: d_course_toads_turnpike_dl_1C6E8
type: gfx
offset: 0x1C6E8
d_course_toads_turnpike_dl_1C700:
symbol: d_course_toads_turnpike_dl_1C700
type: gfx
offset: 0x1C700
d_course_toads_turnpike_dl_1C710:
symbol: d_course_toads_turnpike_dl_1C710
type: gfx
offset: 0x1C710
d_course_toads_turnpike_dl_1C770:
symbol: d_course_toads_turnpike_dl_1C770
type: gfx
offset: 0x1C770
d_course_toads_turnpike_dl_1C7D0:
symbol: d_course_toads_turnpike_dl_1C7D0
type: gfx
offset: 0x1C7D0
d_course_toads_turnpike_dl_1CA88:
symbol: d_course_toads_turnpike_dl_1CA88
type: gfx
offset: 0x1CA88
d_course_toads_turnpike_dl_1CAA8:
symbol: d_course_toads_turnpike_dl_1CAA8
type: gfx
offset: 0x1CAA8
d_course_toads_turnpike_bus_model_lod2:
symbol: d_course_toads_turnpike_bus_model_lod2
type: vtx
offset: 0x1CAB8
count: 8
d_course_toads_turnpike_bus_unknown_model26:
symbol: d_course_toads_turnpike_bus_unknown_model26
type: vtx
offset: 0x1CB38
count: 8
d_course_toads_turnpike_bus_unknown_model27:
symbol: d_course_toads_turnpike_bus_unknown_model27
type: vtx
offset: 0x1CBB8
count: 4
d_course_toads_turnpike_bus_unknown_model28:
symbol: d_course_toads_turnpike_bus_unknown_model28
type: vtx
offset: 0x1CBF8
count: 4
d_course_toads_turnpike_bus_unknown_model29:
symbol: d_course_toads_turnpike_bus_unknown_model29
type: vtx
offset: 0x1CC38
count: 4
d_course_toads_turnpike_bus_unknown_model30:
symbol: d_course_toads_turnpike_bus_unknown_model30
type: vtx
offset: 0x1CC78
count: 8
d_course_toads_turnpike_bus_unknown_model31:
symbol: d_course_toads_turnpike_bus_unknown_model31
type: vtx
offset: 0x1CCF8
count: 10
d_course_toads_turnpike_dl_1CD98:
symbol: d_course_toads_turnpike_dl_1CD98
type: gfx
offset: 0x1CD98
d_course_toads_turnpike_dl_1CDF8:
symbol: d_course_toads_turnpike_dl_1CDF8
type: gfx
offset: 0x1CDF8
d_course_toads_turnpike_dl_1CE58:
symbol: d_course_toads_turnpike_dl_1CE58
type: gfx
offset: 0x1CE58
d_course_toads_turnpike_dl_1CE70:
symbol: d_course_toads_turnpike_dl_1CE70
type: gfx
offset: 0x1CE70
d_course_toads_turnpike_dl_1CE80:
symbol: d_course_toads_turnpike_dl_1CE80
type: gfx
offset: 0x1CE80
d_course_toads_turnpike_dl_1D008:
symbol: d_course_toads_turnpike_dl_1D008
type: gfx
offset: 0x1D008
d_course_toads_turnpike_dl_1D018:
symbol: d_course_toads_turnpike_dl_1D018
type: gfx
offset: 0x1D018
d_course_toads_turnpike_tanker_truck_model_lod0:
symbol: d_course_toads_turnpike_tanker_truck_model_lod0
type: vtx
offset: 0x1D028
count: 16
d_course_toads_turnpike_tanker_truck_unknown_model1:
symbol: d_course_toads_turnpike_tanker_truck_unknown_model1
type: vtx
offset: 0x1D128
count: 16
d_course_toads_turnpike_tanker_truck_unknown_model2:
symbol: d_course_toads_turnpike_tanker_truck_unknown_model2
type: vtx
offset: 0x1D228
count: 16
d_course_toads_turnpike_tanker_truck_unknown_model3:
symbol: d_course_toads_turnpike_tanker_truck_unknown_model3
type: vtx
offset: 0x1D328
count: 20
d_course_toads_turnpike_tanker_truck_unknown_model4:
symbol: d_course_toads_turnpike_tanker_truck_unknown_model4
type: vtx
offset: 0x1D468
count: 20
d_course_toads_turnpike_tanker_truck_unknown_model5:
symbol: d_course_toads_turnpike_tanker_truck_unknown_model5
type: vtx
offset: 0x1D5A8
count: 32
d_course_toads_turnpike_tanker_truck_unknown_model6:
symbol: d_course_toads_turnpike_tanker_truck_unknown_model6
type: vtx
offset: 0x1D7A8
count: 24
d_course_toads_turnpike_tanker_truck_unknown_model7:
symbol: d_course_toads_turnpike_tanker_truck_unknown_model7
type: vtx
offset: 0x1D928
count: 18
d_course_toads_turnpike_tanker_truck_unknown_model8:
symbol: d_course_toads_turnpike_tanker_truck_unknown_model8
type: vtx
offset: 0x1DA48
count: 12
d_course_toads_turnpike_tanker_truck_unknown_model9:
symbol: d_course_toads_turnpike_tanker_truck_unknown_model9
type: vtx
offset: 0x1DB08
count: 32
d_course_toads_turnpike_tanker_truck_unknown_model10:
symbol: d_course_toads_turnpike_tanker_truck_unknown_model10
type: vtx
offset: 0x1DD08
count: 4
d_course_toads_turnpike_tanker_truck_unknown_model11:
symbol: d_course_toads_turnpike_tanker_truck_unknown_model11
type: vtx
offset: 0x1DD48
count: 12
d_course_toads_turnpike_tanker_truck_unknown_model12:
symbol: d_course_toads_turnpike_tanker_truck_unknown_model12
type: vtx
offset: 0x1DE08
count: 24
d_course_toads_turnpike_tanker_truck_unknown_model13:
symbol: d_course_toads_turnpike_tanker_truck_unknown_model13
type: vtx
offset: 0x1DF88
count: 24
d_course_toads_turnpike_tanker_truck_unknown_model14:
symbol: d_course_toads_turnpike_tanker_truck_unknown_model14
type: vtx
offset: 0x1E108
count: 24
d_course_toads_turnpike_dl_1E288:
symbol: d_course_toads_turnpike_dl_1E288
type: gfx
offset: 0x1E288
d_course_toads_turnpike_dl_1E318:
symbol: d_course_toads_turnpike_dl_1E318
type: gfx
offset: 0x1E318
d_course_toads_turnpike_dl_1E3A8:
symbol: d_course_toads_turnpike_dl_1E3A8
type: gfx
offset: 0x1E3A8
d_course_toads_turnpike_dl_1E438:
symbol: d_course_toads_turnpike_dl_1E438
type: gfx
offset: 0x1E438
d_course_toads_turnpike_dl_1E458:
symbol: d_course_toads_turnpike_dl_1E458
type: gfx
offset: 0x1E458
d_course_toads_turnpike_dl_1E468:
symbol: d_course_toads_turnpike_dl_1E468
type: gfx
offset: 0x1E468
d_course_toads_turnpike_dl_1E508:
symbol: d_course_toads_turnpike_dl_1E508
type: gfx
offset: 0x1E508
d_course_toads_turnpike_dl_1E810:
symbol: d_course_toads_turnpike_dl_1E810
type: gfx
offset: 0x1E810
d_course_toads_turnpike_dl_1E8A0:
symbol: d_course_toads_turnpike_dl_1E8A0
type: gfx
offset: 0x1E8A0
d_course_toads_turnpike_dl_1E970:
symbol: d_course_toads_turnpike_dl_1E970
type: gfx
offset: 0x1E970
d_course_toads_turnpike_dl_1EA40:
symbol: d_course_toads_turnpike_dl_1EA40
type: gfx
offset: 0x1EA40
d_course_toads_turnpike_dl_1EB10:
symbol: d_course_toads_turnpike_dl_1EB10
type: gfx
offset: 0x1EB10
d_course_toads_turnpike_dl_1EB48:
symbol: d_course_toads_turnpike_dl_1EB48
type: gfx
offset: 0x1EB48
d_course_toads_turnpike_tanker_truck_model_lod1:
symbol: d_course_toads_turnpike_tanker_truck_model_lod1
type: vtx
offset: 0x1EB58
count: 8
d_course_toads_turnpike_tanker_truck_unknown_model15:
symbol: d_course_toads_turnpike_tanker_truck_unknown_model15
type: vtx
offset: 0x1EBD8
count: 4
d_course_toads_turnpike_tanker_truck_unknown_model16:
symbol: d_course_toads_turnpike_tanker_truck_unknown_model16
type: vtx
offset: 0x1EC18
count: 8
d_course_toads_turnpike_tanker_truck_unknown_model17:
symbol: d_course_toads_turnpike_tanker_truck_unknown_model17
type: vtx
offset: 0x1EC98
count: 4
d_course_toads_turnpike_tanker_truck_unknown_model18:
symbol: d_course_toads_turnpike_tanker_truck_unknown_model18
type: vtx
offset: 0x1ECD8
count: 16
d_course_toads_turnpike_tanker_truck_unknown_model19:
symbol: d_course_toads_turnpike_tanker_truck_unknown_model19
type: vtx
offset: 0x1EDD8
count: 32
d_course_toads_turnpike_tanker_truck_unknown_model20:
symbol: d_course_toads_turnpike_tanker_truck_unknown_model20
type: vtx
offset: 0x1EFD8
count: 24
d_course_toads_turnpike_tanker_truck_unknown_model21:
symbol: d_course_toads_turnpike_tanker_truck_unknown_model21
type: vtx
offset: 0x1F158
count: 18
d_course_toads_turnpike_tanker_truck_unknown_model22:
symbol: d_course_toads_turnpike_tanker_truck_unknown_model22
type: vtx
offset: 0x1F278
count: 12
d_course_toads_turnpike_tanker_truck_unknown_model23:
symbol: d_course_toads_turnpike_tanker_truck_unknown_model23
type: vtx
offset: 0x1F338
count: 30
d_course_toads_turnpike_tanker_truck_unknown_model24:
symbol: d_course_toads_turnpike_tanker_truck_unknown_model24
type: vtx
offset: 0x1F518
count: 4
d_course_toads_turnpike_tanker_truck_unknown_model25:
symbol: d_course_toads_turnpike_tanker_truck_unknown_model25
type: vtx
offset: 0x1F558
count: 8
d_course_toads_turnpike_tanker_truck_unknown_model26:
symbol: d_course_toads_turnpike_tanker_truck_unknown_model26
type: vtx
offset: 0x1F5D8
count: 4
d_course_toads_turnpike_tanker_truck_unknown_model27:
symbol: d_course_toads_turnpike_tanker_truck_unknown_model27
type: vtx
offset: 0x1F618
count: 8
d_course_toads_turnpike_tanker_truck_unknown_model28:
symbol: d_course_toads_turnpike_tanker_truck_unknown_model28
type: vtx
offset: 0x1F698
count: 4
d_course_toads_turnpike_tanker_truck_unknown_model29:
symbol: d_course_toads_turnpike_tanker_truck_unknown_model29
type: vtx
offset: 0x1F6D8
count: 12
d_course_toads_turnpike_tanker_truck_unknown_model30:
symbol: d_course_toads_turnpike_tanker_truck_unknown_model30
type: vtx
offset: 0x1F798
count: 4
d_course_toads_turnpike_dl_1F7D8:
symbol: d_course_toads_turnpike_dl_1F7D8
type: gfx
offset: 0x1F7D8
d_course_toads_turnpike_dl_1F850:
symbol: d_course_toads_turnpike_dl_1F850
type: gfx
offset: 0x1F850
d_course_toads_turnpike_dl_1F8C0:
symbol: d_course_toads_turnpike_dl_1F8C0
type: gfx
offset: 0x1F8C0
d_course_toads_turnpike_dl_1F938:
symbol: d_course_toads_turnpike_dl_1F938
type: gfx
offset: 0x1F938
d_course_toads_turnpike_dl_1F9A8:
symbol: d_course_toads_turnpike_dl_1F9A8
type: gfx
offset: 0x1F9A8
d_course_toads_turnpike_dl_1F9D0:
symbol: d_course_toads_turnpike_dl_1F9D0
type: gfx
offset: 0x1F9D0
d_course_toads_turnpike_dl_1F9E0:
symbol: d_course_toads_turnpike_dl_1F9E0
type: gfx
offset: 0x1F9E0
d_course_toads_turnpike_dl_1FCD8:
symbol: d_course_toads_turnpike_dl_1FCD8
type: gfx
offset: 0x1FCD8
d_course_toads_turnpike_dl_1FD58:
symbol: d_course_toads_turnpike_dl_1FD58
type: gfx
offset: 0x1FD58
d_course_toads_turnpike_dl_1FDD0:
symbol: d_course_toads_turnpike_dl_1FDD0
type: gfx
offset: 0x1FDD0
d_course_toads_turnpike_dl_1FE50:
symbol: d_course_toads_turnpike_dl_1FE50
type: gfx
offset: 0x1FE50
d_course_toads_turnpike_dl_1FEC8:
symbol: d_course_toads_turnpike_dl_1FEC8
type: gfx
offset: 0x1FEC8
d_course_toads_turnpike_dl_1FF50:
symbol: d_course_toads_turnpike_dl_1FF50
type: gfx
offset: 0x1FF50
d_course_toads_turnpike_dl_1FFC8:
symbol: d_course_toads_turnpike_dl_1FFC8
type: gfx
offset: 0x1FFC8
d_course_toads_turnpike_dl_20008:
symbol: d_course_toads_turnpike_dl_20008
type: gfx
offset: 0x20008
d_course_toads_turnpike_tanker_truck_model_lod2:
symbol: d_course_toads_turnpike_tanker_truck_model_lod2
type: vtx
offset: 0x20018
count: 14
d_course_toads_turnpike_tanker_truck_unknown_model31:
symbol: d_course_toads_turnpike_tanker_truck_unknown_model31
type: vtx
offset: 0x200F8
count: 12
d_course_toads_turnpike_tanker_truck_unknown_model32:
symbol: d_course_toads_turnpike_tanker_truck_unknown_model32
type: vtx
offset: 0x201B8
count: 21
d_course_toads_turnpike_tanker_truck_unknown_model33:
symbol: d_course_toads_turnpike_tanker_truck_unknown_model33
type: vtx
offset: 0x20308
count: 4
d_course_toads_turnpike_dl_20348:
symbol: d_course_toads_turnpike_dl_20348
type: gfx
offset: 0x20348
d_course_toads_turnpike_dl_20450:
symbol: d_course_toads_turnpike_dl_20450
type: gfx
offset: 0x20450
d_course_toads_turnpike_dl_204F8:
symbol: d_course_toads_turnpike_dl_204F8
type: gfx
offset: 0x204F8
d_course_toads_turnpike_dl_20510:
symbol: d_course_toads_turnpike_dl_20510
type: gfx
offset: 0x20510
d_course_toads_turnpike_dl_20520:
symbol: d_course_toads_turnpike_dl_20520
type: gfx
offset: 0x20520
d_course_toads_turnpike_dl_20598:
symbol: d_course_toads_turnpike_dl_20598
type: gfx
offset: 0x20598
d_course_toads_turnpike_dl_205A8:
symbol: d_course_toads_turnpike_dl_205A8
type: gfx
offset: 0x205A8
d_course_toads_turnpike_car_model_lod0:
symbol: d_course_toads_turnpike_car_model_lod0
type: vtx
offset: 0x205B8
count: 16
d_course_toads_turnpike_car_unknown_model1:
symbol: d_course_toads_turnpike_car_unknown_model1
type: vtx
offset: 0x206B8
count: 16
d_course_toads_turnpike_car_unknown_model2:
symbol: d_course_toads_turnpike_car_unknown_model2
type: vtx
offset: 0x207B8
count: 10
d_course_toads_turnpike_car_unknown_model3:
symbol: d_course_toads_turnpike_car_unknown_model3
type: vtx
offset: 0x20858
count: 10
d_course_toads_turnpike_car_unknown_model4:
symbol: d_course_toads_turnpike_car_unknown_model4
type: vtx
offset: 0x208F8
count: 24
d_course_toads_turnpike_car_unknown_model5:
symbol: d_course_toads_turnpike_car_unknown_model5
type: vtx
offset: 0x20A78
count: 8
d_course_toads_turnpike_car_unknown_model6:
symbol: d_course_toads_turnpike_car_unknown_model6
type: vtx
offset: 0x20AF8
count: 4
d_course_toads_turnpike_car_unknown_model7:
symbol: d_course_toads_turnpike_car_unknown_model7
type: vtx
offset: 0x20B38
count: 32
d_course_toads_turnpike_car_unknown_model8:
symbol: d_course_toads_turnpike_car_unknown_model8
type: vtx
offset: 0x20D38
count: 32
d_course_toads_turnpike_car_unknown_model9:
symbol: d_course_toads_turnpike_car_unknown_model9
type: vtx
offset: 0x20F38
count: 32
d_course_toads_turnpike_car_unknown_model10:
symbol: d_course_toads_turnpike_car_unknown_model10
type: vtx
offset: 0x21138
count: 23
d_course_toads_turnpike_car_unknown_model11:
symbol: d_course_toads_turnpike_car_unknown_model11
type: vtx
offset: 0x212A8
count: 10
d_course_toads_turnpike_car_unknown_model12:
symbol: d_course_toads_turnpike_car_unknown_model12
type: vtx
offset: 0x21348
count: 12
d_course_toads_turnpike_car_unknown_model13:
symbol: d_course_toads_turnpike_car_unknown_model13
type: vtx
offset: 0x21408
count: 12
d_course_toads_turnpike_car_unknown_model14:
symbol: d_course_toads_turnpike_car_unknown_model14
type: vtx
offset: 0x214C8
count: 12
d_course_toads_turnpike_car_unknown_model15:
symbol: d_course_toads_turnpike_car_unknown_model15
type: vtx
offset: 0x21588
count: 12
d_course_toads_turnpike_dl_21648:
symbol: d_course_toads_turnpike_dl_21648
type: gfx
offset: 0x21648
d_course_toads_turnpike_dl_216D8:
symbol: d_course_toads_turnpike_dl_216D8
type: gfx
offset: 0x216D8
d_course_toads_turnpike_dl_21768:
symbol: d_course_toads_turnpike_dl_21768
type: gfx
offset: 0x21768
d_course_toads_turnpike_dl_21780:
symbol: d_course_toads_turnpike_dl_21780
type: gfx
offset: 0x21780
d_course_toads_turnpike_dl_21790:
symbol: d_course_toads_turnpike_dl_21790
type: gfx
offset: 0x21790
d_course_toads_turnpike_dl_21820:
symbol: d_course_toads_turnpike_dl_21820
type: gfx
offset: 0x21820
d_course_toads_turnpike_dl_218B0:
symbol: d_course_toads_turnpike_dl_218B0
type: gfx
offset: 0x218B0
d_course_toads_turnpike_dl_21950:
symbol: d_course_toads_turnpike_dl_21950
type: gfx
offset: 0x21950
d_course_toads_turnpike_dl_21A28:
symbol: d_course_toads_turnpike_dl_21A28
type: gfx
offset: 0x21A28
d_course_toads_turnpike_dl_21C78:
symbol: d_course_toads_turnpike_dl_21C78
type: gfx
offset: 0x21C78
d_course_toads_turnpike_dl_21CD0:
symbol: d_course_toads_turnpike_dl_21CD0
type: gfx
offset: 0x21CD0
d_course_toads_turnpike_dl_21D28:
symbol: d_course_toads_turnpike_dl_21D28
type: gfx
offset: 0x21D28
d_course_toads_turnpike_dl_21D80:
symbol: d_course_toads_turnpike_dl_21D80
type: gfx
offset: 0x21D80
d_course_toads_turnpike_dl_21DD8:
symbol: d_course_toads_turnpike_dl_21DD8
type: gfx
offset: 0x21DD8
d_course_toads_turnpike_dl_21E28:
symbol: d_course_toads_turnpike_dl_21E28
type: gfx
offset: 0x21E28
d_course_toads_turnpike_car_model_lod1:
symbol: d_course_toads_turnpike_car_model_lod1
type: vtx
offset: 0x21E38
count: 16
d_course_toads_turnpike_car_unknown_model16:
symbol: d_course_toads_turnpike_car_unknown_model16
type: vtx
offset: 0x21F38
count: 16
d_course_toads_turnpike_car_unknown_model17:
symbol: d_course_toads_turnpike_car_unknown_model17
type: vtx
offset: 0x22038
count: 16
d_course_toads_turnpike_car_unknown_model18:
symbol: d_course_toads_turnpike_car_unknown_model18
type: vtx
offset: 0x22138
count: 8
d_course_toads_turnpike_car_unknown_model19:
symbol: d_course_toads_turnpike_car_unknown_model19
type: vtx
offset: 0x221B8
count: 8
d_course_toads_turnpike_car_unknown_model20:
symbol: d_course_toads_turnpike_car_unknown_model20
type: vtx
offset: 0x22238
count: 24
d_course_toads_turnpike_car_unknown_model21:
symbol: d_course_toads_turnpike_car_unknown_model21
type: vtx
offset: 0x223B8
count: 8
d_course_toads_turnpike_car_unknown_model22:
symbol: d_course_toads_turnpike_car_unknown_model22
type: vtx
offset: 0x22438
count: 4
d_course_toads_turnpike_car_unknown_model23:
symbol: d_course_toads_turnpike_car_unknown_model23
type: vtx
offset: 0x22478
count: 31
d_course_toads_turnpike_car_unknown_model24:
symbol: d_course_toads_turnpike_car_unknown_model24
type: vtx
offset: 0x22668
count: 32
d_course_toads_turnpike_car_unknown_model25:
symbol: d_course_toads_turnpike_car_unknown_model25
type: vtx
offset: 0x22868
count: 22
d_course_toads_turnpike_car_unknown_model26:
symbol: d_course_toads_turnpike_car_unknown_model26
type: vtx
offset: 0x229C8
count: 10
d_course_toads_turnpike_dl_22A68:
symbol: d_course_toads_turnpike_dl_22A68
type: gfx
offset: 0x22A68
d_course_toads_turnpike_dl_22AF8:
symbol: d_course_toads_turnpike_dl_22AF8
type: gfx
offset: 0x22AF8
d_course_toads_turnpike_dl_22B88:
symbol: d_course_toads_turnpike_dl_22B88
type: gfx
offset: 0x22B88
d_course_toads_turnpike_dl_22BA0:
symbol: d_course_toads_turnpike_dl_22BA0
type: gfx
offset: 0x22BA0
d_course_toads_turnpike_dl_22BB0:
symbol: d_course_toads_turnpike_dl_22BB0
type: gfx
offset: 0x22BB0
d_course_toads_turnpike_dl_22C50:
symbol: d_course_toads_turnpike_dl_22C50
type: gfx
offset: 0x22C50
d_course_toads_turnpike_dl_22C88:
symbol: d_course_toads_turnpike_dl_22C88
type: gfx
offset: 0x22C88
d_course_toads_turnpike_dl_22CC0:
symbol: d_course_toads_turnpike_dl_22CC0
type: gfx
offset: 0x22CC0
d_course_toads_turnpike_dl_22D60:
symbol: d_course_toads_turnpike_dl_22D60
type: gfx
offset: 0x22D60
d_course_toads_turnpike_dl_22E38:
symbol: d_course_toads_turnpike_dl_22E38
type: gfx
offset: 0x22E38
d_course_toads_turnpike_dl_23040:
symbol: d_course_toads_turnpike_dl_23040
type: gfx
offset: 0x23040
d_course_toads_turnpike_dl_23078:
symbol: d_course_toads_turnpike_dl_23078
type: gfx
offset: 0x23078
d_course_toads_turnpike_car_model_lod2:
symbol: d_course_toads_turnpike_car_model_lod2
type: vtx
offset: 0x23088
count: 8
d_course_toads_turnpike_car_unknown_model27:
symbol: d_course_toads_turnpike_car_unknown_model27
type: vtx
offset: 0x23108
count: 8
d_course_toads_turnpike_car_unknown_model28:
symbol: d_course_toads_turnpike_car_unknown_model28
type: vtx
offset: 0x23188
count: 4
d_course_toads_turnpike_car_unknown_model29:
symbol: d_course_toads_turnpike_car_unknown_model29
type: vtx
offset: 0x231C8
count: 16
d_course_toads_turnpike_car_unknown_model30:
symbol: d_course_toads_turnpike_car_unknown_model30
type: vtx
offset: 0x232C8
count: 8
d_course_toads_turnpike_car_unknown_model31:
symbol: d_course_toads_turnpike_car_unknown_model31
type: vtx
offset: 0x23348
count: 27
d_course_toads_turnpike_car_unknown_model32:
symbol: d_course_toads_turnpike_car_unknown_model32
type: vtx
offset: 0x234F8
count: 4
d_course_toads_turnpike_dl_23538:
symbol: d_course_toads_turnpike_dl_23538
type: gfx
offset: 0x23538
d_course_toads_turnpike_dl_23600:
symbol: d_course_toads_turnpike_dl_23600
type: gfx
offset: 0x23600
d_course_toads_turnpike_dl_23678:
symbol: d_course_toads_turnpike_dl_23678
type: gfx
offset: 0x23678
d_course_toads_turnpike_dl_237D8:
symbol: d_course_toads_turnpike_dl_237D8
type: gfx
offset: 0x237D8
d_course_toads_turnpike_dl_237F8:
symbol: d_course_toads_turnpike_dl_237F8
type: gfx
offset: 0x237F8
d_course_toads_turnpike_dl_23808:
symbol: d_course_toads_turnpike_dl_23808
type: gfx
offset: 0x23808
d_course_toads_turnpike_dl_23838:
symbol: d_course_toads_turnpike_dl_23838
type: gfx
offset: 0x23838
d_course_toads_turnpike_dl_23848:
symbol: d_course_toads_turnpike_dl_23848
type: gfx
offset: 0x23848
d_course_toads_turnpike_dl_23858:
symbol: d_course_toads_turnpike_dl_23858
type: gfx
offset: 0x23858
d_course_toads_turnpike_dl_238A0:
symbol: d_course_toads_turnpike_dl_238A0
type: gfx
offset: 0x238A0
d_course_toads_turnpike_dl_238E8:
symbol: d_course_toads_turnpike_dl_238E8
type: gfx
offset: 0x238E8
d_course_toads_turnpike_dl_23930:
symbol: d_course_toads_turnpike_dl_23930
type: gfx
offset: 0x23930
d_course_toads_turnpike_item_box_spawns:
symbol: d_course_toads_turnpike_item_box_spawns
type: mk64:spawn_data
offset: 0x23AE0
count: 17
d_course_toads_turnpike_addr:
symbol: d_course_toads_turnpike_addr
type: mk64:track_sections
offset: 0x23B68
count: 23
|