blob: 563f0445c8e28d9166b79ae52b1638c6f0b79fa9 (
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
|
#pragma once
#include <libultraship.h>
#include <align_asset_macro.h>
static const ALIGN_ASSET(2) char gTextureSignShellShot0[] = "__OTR__other_textures/sign_shell_shot_0";
static const ALIGN_ASSET(2) char gTextureSignShellShot1[] = "__OTR__other_textures/sign_shell_shot_1";
static const ALIGN_ASSET(2) char gTextureGrayCheckerboard[] = "__OTR__other_textures/gray_checkerboard";
static const ALIGN_ASSET(2) char gTextureGrayCobblestone[] = "__OTR__other_textures/gray_cobblestone";
static const ALIGN_ASSET(2) char gTexture64275C[] = "__OTR__other_textures/texture_64275C";
static const ALIGN_ASSET(2) char gTexture64286C[] = "__OTR__other_textures/texture_64286C";
static const ALIGN_ASSET(2) char gTexture642978[] = "__OTR__other_textures/texture_642978";
static const ALIGN_ASSET(2) char gTextureSignBlue64[] = "__OTR__other_textures/sign_blue_64";
static const ALIGN_ASSET(2) char gTextureCheckerboardYellowPink[] = "__OTR__other_textures/checkerboard_yellow_pink";
static const ALIGN_ASSET(2) char gTexture64313C[] = "__OTR__other_textures/texture_64313C";
static const ALIGN_ASSET(2) char gTextureCheckerboardYellowBlue[] = "__OTR__other_textures/checkerbord_yellow_blue";
static const ALIGN_ASSET(2) char gTexture643430[] = "__OTR__other_textures/texture_643430";
static const ALIGN_ASSET(2) char gTexture643A34[] = "__OTR__other_textures/texture_643A34";
static const ALIGN_ASSET(2) char gTexture643B3C[] = "__OTR__other_textures/texture_643B3C";
static const ALIGN_ASSET(2) char gTexture6442D4[] = "__OTR__other_textures/texture_6442D4";
static const ALIGN_ASSET(2) char gTexture64440C[] = "__OTR__other_textures/texture_64440C";
static const ALIGN_ASSET(2) char gTexture6446AC[] = "__OTR__other_textures/texture_6446AC";
static const ALIGN_ASSET(2) char gTexture6447C4[] = "__OTR__other_textures/texture_6447C4";
static const ALIGN_ASSET(2) char gTextureCheckerboardBlackWhite[] = "__OTR__other_textures/checkerboard_black_white";
static const ALIGN_ASSET(2) char gTexture6449D4[] = "__OTR__other_textures/texture_6449D4";
static const ALIGN_ASSET(2) char gTexture645134[] = "__OTR__other_textures/texture_645134";
static const ALIGN_ASSET(2) char gTexture645660[] = "__OTR__other_textures/texture_645660";
static const ALIGN_ASSET(2) char gTexture6457D8[] = "__OTR__other_textures/texture_6457D8";
static const ALIGN_ASSET(2) char gTextureCheckerboardBlueGreen[] = "__OTR__other_textures/checkerboard_blue_green";
static const ALIGN_ASSET(2) char gTextureNumberYellowBlue1[] = "__OTR__other_textures/number_yellow_blue_1";
static const ALIGN_ASSET(2) char gTextureNumberYellowBlue2[] = "__OTR__other_textures/number_yellow_blue_2";
static const ALIGN_ASSET(2) char gTextureNumberYellowBlue3[] = "__OTR__other_textures/number_yellow_blue_3";
static const ALIGN_ASSET(2) char gTextureNumberYellowBlue4[] = "__OTR__other_textures/number_yellow_blue_4";
static const ALIGN_ASSET(2) char gTexture64619C[] = "__OTR__other_textures/texture_64619C";
static const ALIGN_ASSET(2) char gTexture6462C0[] = "__OTR__other_textures/texture_6462C0";
static const ALIGN_ASSET(2) char gTexture64647C[] = "__OTR__other_textures/texture_64647C";
static const ALIGN_ASSET(2) char gTexture646CA8[] = "__OTR__other_textures/texture_646CA8";
static const ALIGN_ASSET(2) char gTexture6473E4[] = "__OTR__other_textures/texture_6473E4";
static const ALIGN_ASSET(2) char gTexture647994[] = "__OTR__other_textures/texture_647994";
static const ALIGN_ASSET(2) char gTexture647F4C[] = "__OTR__other_textures/texture_647F4C";
static const ALIGN_ASSET(2) char gTexture648508[] = "__OTR__other_textures/texture_648508";
static const ALIGN_ASSET(2) char gTextureGrass1[] = "__OTR__other_textures/grass_1";
static const ALIGN_ASSET(2) char gTextureWoodDoor0[] = "__OTR__other_textures/wood_door_0";
static const ALIGN_ASSET(2) char gTextureWoodDoor1[] = "__OTR__other_textures/wood_door_1";
static const ALIGN_ASSET(2) char gTextureGrass2[] = "__OTR__other_textures/grass_2";
static const ALIGN_ASSET(2) char gTextureMooMooFarmSignLeft[] = "__OTR__other_textures/gTextureMooMooFarmSignLeft";
static const ALIGN_ASSET(2) char gTextureMooMooFarmSignRight[] = "__OTR__other_textures/gTextureMooMooFarmSignRight";
static const ALIGN_ASSET(2) char gTexture64ACAC[] = "__OTR__other_textures/texture_64ACAC";
static const ALIGN_ASSET(2) char gTexture64AF50[] = "__OTR__other_textures/texture_64AF50";
static const ALIGN_ASSET(2) char gTexture64B090[] = "__OTR__other_textures/texture_64B090";
static const ALIGN_ASSET(2) char gTexture64B3F8[] = "__OTR__other_textures/texture_64B3F8";
static const ALIGN_ASSET(2) char gTexture64B54C[] = "__OTR__other_textures/texture_64B54C";
static const ALIGN_ASSET(2) char gTexture64B8D8[] = "__OTR__other_textures/texture_64B8D8";
static const ALIGN_ASSET(2) char gTexture64BA50[] = "__OTR__other_textures/texture_64BA50";
static const ALIGN_ASSET(2) char gTexture64BB60[] = "__OTR__other_textures/texture_64BB60";
static const ALIGN_ASSET(2) char gTexture64BCCC[] = "__OTR__other_textures/texture_64BCCC";
static const ALIGN_ASSET(2) char gTexture64C11C[] = "__OTR__other_textures/texture_64C11C";
static const ALIGN_ASSET(2) char gTexture64C7B4[] = "__OTR__other_textures/texture_64C7B4";
static const ALIGN_ASSET(2) char gTexture64CC20[] = "__OTR__other_textures/texture_64CC20";
static const ALIGN_ASSET(2) char gTextureSignMergingLanes[] = "__OTR__other_textures/sign_merging_lanes";
static const ALIGN_ASSET(2) char gTextureGrass3[] = "__OTR__other_textures/grass_3";
static const ALIGN_ASSET(2) char gTextureGrass4[] = "__OTR__other_textures/grass_4";
static const ALIGN_ASSET(2) char gTextureGrass5[] = "__OTR__other_textures/grass_5";
static const ALIGN_ASSET(2) char gTextureGrass6[] = "__OTR__other_textures/grass_6";
static const ALIGN_ASSET(2) char gTextureSignNintendo0[] = "__OTR__other_textures/sign_nintendo_0";
static const ALIGN_ASSET(2) char gTextureSignNintendo1[] = "__OTR__other_textures/sign_nintendo_1";
static const ALIGN_ASSET(2) char gTextureGrass7[] = "__OTR__other_textures/grass_7";
static const ALIGN_ASSET(2) char gTexture64F9E8[] = "__OTR__other_textures/texture_64F9E8";
static const ALIGN_ASSET(2) char gTexture64FBF4[] = "__OTR__other_textures/texture_64FBF4";
static const ALIGN_ASSET(2) char gTexture64FE68[] = "__OTR__other_textures/texture_64FE68";
static const ALIGN_ASSET(2) char gTextureWoodBridgeSlats[] = "__OTR__other_textures/wood_bridge_slats";
static const ALIGN_ASSET(2) char gTextureFlagRed[] = "__OTR__other_textures/flag_red";
static const ALIGN_ASSET(2) char gTexture65100C[] = "__OTR__other_textures/texture_65100C";
static const ALIGN_ASSET(2) char gTexture65112C[] = "__OTR__other_textures/texture_65112C";
static const ALIGN_ASSET(2) char gTexture65127C[] = "__OTR__other_textures/texture_65127C";
static const ALIGN_ASSET(2) char gTexture651428[] = "__OTR__other_textures/texture_651428";
static const ALIGN_ASSET(2) char gTexture651984[] = "__OTR__other_textures/texture_651984";
static const ALIGN_ASSET(2) char gTexture651B20[] = "__OTR__other_textures/texture_651B20";
static const ALIGN_ASSET(2) char gTexture651F40[] = "__OTR__other_textures/texture_651F40";
static const ALIGN_ASSET(2) char gTexture6522E0[] = "__OTR__other_textures/texture_6522E0";
static const ALIGN_ASSET(2) char gTexture6528DC[] = "__OTR__other_textures/texture_6528DC";
static const ALIGN_ASSET(2) char gTexture652B54[] = "__OTR__other_textures/texture_652B54";
static const ALIGN_ASSET(2) char gTexture65315C[] = "__OTR__other_textures/texture_65315C";
static const ALIGN_ASSET(2) char gTexture653608[] = "__OTR__other_textures/texture_653608";
static const ALIGN_ASSET(2) char gTexture653DB0[] = "__OTR__other_textures/texture_653DB0";
static const ALIGN_ASSET(2) char gTexture654460[] = "__OTR__other_textures/texture_654460";
static const ALIGN_ASSET(2) char gTexture654F74[] = "__OTR__other_textures/texture_654F74";
static const ALIGN_ASSET(2) char gTexture655998[] = "__OTR__other_textures/texture_655998";
static const ALIGN_ASSET(2) char gTexture655F38[] = "__OTR__other_textures/texture_655F38";
static const ALIGN_ASSET(2) char gTexture656AF4[] = "__OTR__other_textures/texture_656AF4";
static const ALIGN_ASSET(2) char gTexture6575C8[] = "__OTR__other_textures/texture_6575C8";
static const ALIGN_ASSET(2) char gTexture658370[] = "__OTR__other_textures/texture_658370";
static const ALIGN_ASSET(2) char gTexture65912C[] = "__OTR__other_textures/texture_65912C";
static const ALIGN_ASSET(2) char gTexture659EE8[] = "__OTR__other_textures/texture_659EE8";
static const ALIGN_ASSET(2) char gTexture65ADE0[] = "__OTR__other_textures/texture_65ADE0";
static const ALIGN_ASSET(2) char gTexture65BB3C[] = "__OTR__other_textures/texture_65BB3C";
static const ALIGN_ASSET(2) char gTexture65C8DC[] = "__OTR__other_textures/texture_65C8DC";
static const ALIGN_ASSET(2) char gTexture65D5D4[] = "__OTR__other_textures/texture_65D5D4";
static const ALIGN_ASSET(2) char gTexture65E2EC[] = "__OTR__other_textures/texture_65E2EC";
static const ALIGN_ASSET(2) char gTexture65E59C[] = "__OTR__other_textures/texture_65E59C";
static const ALIGN_ASSET(2) char gTexture65EAEC[] = "__OTR__other_textures/texture_65EAEC";
static const ALIGN_ASSET(2) char gTexture65EE38[] = "__OTR__other_textures/texture_65EE38";
static const ALIGN_ASSET(2) char gTexture65FB18[] = "__OTR__other_textures/texture_65FB18";
static const ALIGN_ASSET(2) char gTextureSignPinkArrow[] = "__OTR__other_textures/sign_pink_arrow";
static const ALIGN_ASSET(2) char gTextureCrownJewelBlue[] = "__OTR__other_textures/crown_jewel_blue";
static const ALIGN_ASSET(2) char gTextureCrown[] = "__OTR__other_textures/crown";
static const ALIGN_ASSET(2) char gTextureCrownJewelPink[] = "__OTR__other_textures/crown_jewel_pink";
static const ALIGN_ASSET(2) char gTexture6607C0[] = "__OTR__other_textures/texture_6607C0";
static const ALIGN_ASSET(2) char gTexture6608C8[] = "__OTR__other_textures/texture_6608C8";
static const ALIGN_ASSET(2) char gTexture6609D0[] = "__OTR__other_textures/texture_6609D0";
static const ALIGN_ASSET(2) char gTexture660D8C[] = "__OTR__other_textures/texture_660D8C";
static const ALIGN_ASSET(2) char gTextureRoofTile[] = "__OTR__other_textures/roof_tile";
static const ALIGN_ASSET(2) char gTextureCastleBricks[] = "__OTR__other_textures/castle_bricks";
static const ALIGN_ASSET(2) char gTextureCastleBridge[] = "__OTR__other_textures/castle_bridge";
static const ALIGN_ASSET(2) char gTextureGrass8[] = "__OTR__other_textures/grass_8";
static const ALIGN_ASSET(2) char gTextureGrass9[] = "__OTR__other_textures/grass_9";
static const ALIGN_ASSET(2) char gTexture66262C[] = "__OTR__other_textures/texture_66262C";
static const ALIGN_ASSET(2) char gTexture662924[] = "__OTR__other_textures/texture_662924";
static const ALIGN_ASSET(2) char gTexture662A34[] = "__OTR__other_textures/texture_662A34";
static const ALIGN_ASSET(2) char gTextureSignToadYellow[] = "__OTR__other_textures/sign_toad_yellow";
static const ALIGN_ASSET(2) char gTextureSignToadGreen[] = "__OTR__other_textures/sign_toad_green";
static const ALIGN_ASSET(2) char gTextureSignToadRed[] = "__OTR__other_textures/sign_toad_red";
static const ALIGN_ASSET(2) char gTexture663F90[] = "__OTR__other_textures/texture_663F90";
static const ALIGN_ASSET(2) char gTexture6640B4[] = "__OTR__other_textures/texture_6640B4";
static const ALIGN_ASSET(2) char gTexture6642A4[] = "__OTR__other_textures/texture_6642A4";
static const ALIGN_ASSET(2) char gTexture664408[] = "__OTR__other_textures/texture_664408";
static const ALIGN_ASSET(2) char gTexture6646B8[] = "__OTR__other_textures/texture_6646B8";
static const ALIGN_ASSET(2) char gTextureSignKoopaAir0[] = "__OTR__other_textures/sign_koopa_air_0";
static const ALIGN_ASSET(2) char gTextureSignKoopaAir1[] = "__OTR__other_textures/sign_koopa_air_1";
static const ALIGN_ASSET(2) char gTextureBricksRed[] = "__OTR__other_textures/bricks_red";
static const ALIGN_ASSET(2) char gTexture665C0C[] = "__OTR__other_textures/texture_665C0C";
static const ALIGN_ASSET(2) char gTexture6661AC[] = "__OTR__other_textures/texture_6661AC";
static const ALIGN_ASSET(2) char gTexture6663A4[] = "__OTR__other_textures/texture_6663A4";
static const ALIGN_ASSET(2) char gTextureSignBowser0[] = "__OTR__other_textures/sign_bowser_0";
static const ALIGN_ASSET(2) char gTextureSignBowser1[] = "__OTR__other_textures/sign_bowser_1";
static const ALIGN_ASSET(2) char gTextureGrass10[] = "__OTR__other_textures/grass_10";
static const ALIGN_ASSET(2) char gTextureGrass11[] = "__OTR__other_textures/grass_11";
static const ALIGN_ASSET(2) char gTexture667BAC[] = "__OTR__other_textures/texture_667BAC";
static const ALIGN_ASSET(2) char gTexture668228[] = "__OTR__other_textures/texture_668228";
static const ALIGN_ASSET(2) char gTexture668358[] = "__OTR__other_textures/texture_668358";
static const ALIGN_ASSET(2) char gTexture6684F8[] = "__OTR__other_textures/texture_6684F8";
static const ALIGN_ASSET(2) char gTexture668608[] = "__OTR__other_textures/texture_668608";
static const ALIGN_ASSET(2) char gTexture668728[] = "__OTR__other_textures/texture_668728";
static const ALIGN_ASSET(2) char gTexture668920[] = "__OTR__other_textures/texture_668920";
static const ALIGN_ASSET(2) char gTextureGrass12[] = "__OTR__other_textures/grass_12";
static const ALIGN_ASSET(2) char gTexture669570[] = "__OTR__other_textures/texture_669570";
static const ALIGN_ASSET(2) char gTexture66A3DC[] = "__OTR__other_textures/texture_66A3DC";
static const ALIGN_ASSET(2) char gTexture66ABA4[] = "__OTR__other_textures/texture_66ABA4";
static const ALIGN_ASSET(2) char gTexture66AEB8[] = "__OTR__other_textures/texture_66AEB8";
static const ALIGN_ASSET(2) char gTextureSignLuigiFace0[] = "__OTR__other_textures/sign_luigi_face_0";
static const ALIGN_ASSET(2) char gTextureSignLuigiFace1[] = "__OTR__other_textures/sign_luigi_face_1";
static const ALIGN_ASSET(2) char gTextureSignLuigis0[] = "__OTR__other_textures/sign_luigis_0";
static const ALIGN_ASSET(2) char gTextureSignLuigis1[] = "__OTR__other_textures/sign_luigis_1";
static const ALIGN_ASSET(2) char gTextureSignMarioStar0[] = "__OTR__other_textures/sign_mario_star_0";
static const ALIGN_ASSET(2) char gTextureSignMarioStar1[] = "__OTR__other_textures/sign_mario_star_1";
static const ALIGN_ASSET(2) char gTexture66C7A8[] = "__OTR__other_textures/texture_66C7A8";
static const ALIGN_ASSET(2) char gTexture66C8F4[] = "__OTR__other_textures/texture_66C8F4";
static const ALIGN_ASSET(2) char gTexture66CA98[] = "__OTR__other_textures/texture_66CA98";
static const ALIGN_ASSET(2) char gTexture66CD64[] = "__OTR__other_textures/texture_66CD64";
static const ALIGN_ASSET(2) char gTexture66D024[] = "__OTR__other_textures/texture_66D024";
static const ALIGN_ASSET(2) char gTextureFlagRed2[] = "__OTR__other_textures/flag_red_2";
static const ALIGN_ASSET(2) char gTexture66D698[] = "__OTR__other_textures/texture_66D698";
static const ALIGN_ASSET(2) char gTextureCheckerboardPink[] = "__OTR__other_textures/checkerboard_pink";
static const ALIGN_ASSET(2) char gTexture66DB60[] = "__OTR__other_textures/texture_66DB60";
static const ALIGN_ASSET(2) char gTexture66DD38[] = "__OTR__other_textures/texture_66DD38";
static const ALIGN_ASSET(2) char gTextureSignNintendoRed0[] = "__OTR__other_textures/sign_nintendo_red_0";
static const ALIGN_ASSET(2) char gTextureSignNintendoRed1[] = "__OTR__other_textures/sign_nintendo_red_1";
static const ALIGN_ASSET(2) char gTexture66E608[] = "__OTR__other_textures/texture_66E608";
static const ALIGN_ASSET(2) char gTexture66EBF0[] = "__OTR__other_textures/texture_66EBF0";
static const ALIGN_ASSET(2) char gTexture66ED38[] = "__OTR__other_textures/texture_66ED38";
static const ALIGN_ASSET(2) char gTextureStainglassPeach0[] = "__OTR__other_textures/stainglass_peach_0";
static const ALIGN_ASSET(2) char gTextureStainglassPeach1[] = "__OTR__other_textures/stainglass_peach_1";
static const ALIGN_ASSET(2) char gTexture670AC8[] = "__OTR__other_textures/texture_670AC8";
static const ALIGN_ASSET(2) char gTexture671A88[] = "__OTR__other_textures/texture_671A88";
static const ALIGN_ASSET(2) char gTextureRailroadTrack[] = "__OTR__other_textures/railroad_track";
static const ALIGN_ASSET(2) char gTextureRailroadCrossingTrack[] = "__OTR__other_textures/railroad_crossing_track";
static const ALIGN_ASSET(2) char gTexture67291C[] = "__OTR__other_textures/texture_67291C";
static const ALIGN_ASSET(2) char gTextureRainbow[] = "__OTR__other_textures/rainbow";
static const ALIGN_ASSET(2) char gTexture673118[] = "__OTR__other_textures/texture_673118";
static const ALIGN_ASSET(2) char gTexture6733CC[] = "__OTR__other_textures/texture_6733CC";
static const ALIGN_ASSET(2) char gTexture6735DC[] = "__OTR__other_textures/texture_6735DC";
static const ALIGN_ASSET(2) char gTexture673990[] = "__OTR__other_textures/texture_673990";
static const ALIGN_ASSET(2) char gTexture673C68[] = "__OTR__other_textures/texture_673C68";
static const ALIGN_ASSET(2) char gTexture673FF8[] = "__OTR__other_textures/texture_673FF8";
static const ALIGN_ASSET(2) char gTexture674354[] = "__OTR__other_textures/texture_674354";
static const ALIGN_ASSET(2) char gTexture6747C4[] = "__OTR__other_textures/texture_6747C4";
static const ALIGN_ASSET(2) char gTexture67490C[] = "__OTR__other_textures/texture_67490C";
static const ALIGN_ASSET(2) char gTexture674B28[] = "__OTR__other_textures/texture_674B28";
static const ALIGN_ASSET(2) char gTexture674D58[] = "__OTR__other_textures/texture_674D58";
static const ALIGN_ASSET(2) char gTexture675064[] = "__OTR__other_textures/texture_675064";
static const ALIGN_ASSET(2) char gTexture675220[] = "__OTR__other_textures/texture_675220";
static const ALIGN_ASSET(2) char gTexture675434[] = "__OTR__other_textures/texture_675434";
static const ALIGN_ASSET(2) char gTextureRoad0[] = "__OTR__other_textures/road_0";
static const ALIGN_ASSET(2) char gTextureRoad1[] = "__OTR__other_textures/road_1";
static const ALIGN_ASSET(2) char gTextureRoad2[] = "__OTR__other_textures/road_2";
static const ALIGN_ASSET(2) char gTextureRoad3[] = "__OTR__other_textures/road_3";
static const ALIGN_ASSET(2) char gTextureRoad4[] = "__OTR__other_textures/road_4";
static const ALIGN_ASSET(2) char gTextureRoad5[] = "__OTR__other_textures/road_5";
static const ALIGN_ASSET(2) char gTextureRoadFinish0[] = "__OTR__other_textures/road_finish_0";
static const ALIGN_ASSET(2) char gTextureRoadFinish1[] = "__OTR__other_textures/road_finish_1";
static const ALIGN_ASSET(2) char gTexture676C6C[] = "__OTR__other_textures/texture_676C6C";
static const ALIGN_ASSET(2) char gTexture676D7C[] = "__OTR__other_textures/texture_676D7C";
static const ALIGN_ASSET(2) char gTexture676EA8[] = "__OTR__other_textures/texture_676EA8";
static const ALIGN_ASSET(2) char gTexture676FB0[] = "__OTR__other_textures/texture_676FB0";
static const ALIGN_ASSET(2) char gTexture6774D8[] = "__OTR__other_textures/texture_6774D8";
static const ALIGN_ASSET(2) char gTexture6775EC[] = "__OTR__other_textures/texture_6775EC";
static const ALIGN_ASSET(2) char gTextureFenceBarbedWire[] = "__OTR__other_textures/fence_barbed_wire";
static const ALIGN_ASSET(2) char gTexture677A40[] = "__OTR__other_textures/texture_677A40";
static const ALIGN_ASSET(2) char gTextureSignFallingRocks[] = "__OTR__other_textures/sign_falling_rocks";
static const ALIGN_ASSET(2) char gTextureSignBackside[] = "__OTR__other_textures/sign_backside";
static const ALIGN_ASSET(2) char gTexture677F04[] = "__OTR__other_textures/texture_677F04";
static const ALIGN_ASSET(2) char gTexture678118[] = "__OTR__other_textures/texture_678118";
static const ALIGN_ASSET(2) char gTexture67842C[] = "__OTR__other_textures/texture_67842C";
static const ALIGN_ASSET(2) char gTexture67893C[] = "__OTR__other_textures/texture_67893C";
static const ALIGN_ASSET(2) char gTexture678CC8[] = "__OTR__other_textures/texture_678CC8";
static const ALIGN_ASSET(2) char gTexture679258[] = "__OTR__other_textures/texture_679258";
static const ALIGN_ASSET(2) char gTexture67973C[] = "__OTR__other_textures/texture_67973C";
static const ALIGN_ASSET(2) char gTexture679C04[] = "__OTR__other_textures/texture_679C04";
static const ALIGN_ASSET(2) char gTexture679D34[] = "__OTR__other_textures/texture_679D34";
static const ALIGN_ASSET(2) char gTextureStarOutline[] = "__OTR__other_textures/star_outline";
static const ALIGN_ASSET(2) char gTexture67A1B8[] = "__OTR__other_textures/texture_67A1B8";
static const ALIGN_ASSET(2) char gTexture67A370[] = "__OTR__other_textures/texture_67A370";
static const ALIGN_ASSET(2) char gTexture67A91C[] = "__OTR__other_textures/texture_67A91C";
static const ALIGN_ASSET(2) char gTexture67ADF0[] = "__OTR__other_textures/texture_67ADF0";
static const ALIGN_ASSET(2) char gTexture67B388[] = "__OTR__other_textures/texture_67B388";
static const ALIGN_ASSET(2) char gTexture67B75C[] = "__OTR__other_textures/texture_67B75C";
static const ALIGN_ASSET(2) char gTexture67B864[] = "__OTR__other_textures/texture_67B864";
static const ALIGN_ASSET(2) char gTexture67B9B0[] = "__OTR__other_textures/texture_67B9B0";
static const ALIGN_ASSET(2) char gTexture67BBD8[] = "__OTR__other_textures/texture_67BBD8";
static const ALIGN_ASSET(2) char gTexture67BEE8[] = "__OTR__other_textures/texture_67BEE8";
static const ALIGN_ASSET(2) char gTextureSandFinish[] = "__OTR__other_textures/sand_finish";
static const ALIGN_ASSET(2) char gTextureWaves0[] = "__OTR__other_textures/waves_0";
static const ALIGN_ASSET(2) char gTextureWaves1[] = "__OTR__other_textures/waves_1";
static const ALIGN_ASSET(2) char gTextureWaves2[] = "__OTR__other_textures/waves_2";
static const ALIGN_ASSET(2) char gTexture67D304[] = "__OTR__other_textures/texture_67D304";
static const ALIGN_ASSET(2) char gTexture67DC20[] = "__OTR__other_textures/texture_67DC20";
static const ALIGN_ASSET(2) char gTexture67E010[] = "__OTR__other_textures/texture_67E010";
static const ALIGN_ASSET(2) char gTexture67E428[] = "__OTR__other_textures/texture_67E428";
static const ALIGN_ASSET(2) char gTexture67EEAC[] = "__OTR__other_textures/texture_67EEAC";
static const ALIGN_ASSET(2) char gTexture67EFEC[] = "__OTR__other_textures/texture_67EFEC";
static const ALIGN_ASSET(2) char gTexture67F15C[] = "__OTR__other_textures/texture_67F15C";
static const ALIGN_ASSET(2) char gTexture67F450[] = "__OTR__other_textures/texture_67F450";
static const ALIGN_ASSET(2) char gTextureSignWarioFace[] = "__OTR__other_textures/sign_wario_face";
static const ALIGN_ASSET(2) char gTexture67FE0C[] = "__OTR__other_textures/texture_67FE0C";
static const ALIGN_ASSET(2) char gTextureSignWelcome0[] = "__OTR__other_textures/sign_welcome_0";
static const ALIGN_ASSET(2) char gTextureSignWelcome1[] = "__OTR__other_textures/sign_welcome_1";
static const ALIGN_ASSET(2) char gTextureSignWoodenBack0[] = "__OTR__other_textures/sign_wooden_back_0";
static const ALIGN_ASSET(2) char gTextureSignWoodenBack1[] = "__OTR__other_textures/sign_wooden_back_1";
static const ALIGN_ASSET(2) char gTextureWheelSteamEngine[] = "__OTR__other_textures/wheel_steam_engine";
static const ALIGN_ASSET(2) char gTextureWheelSteamEngineReal[] = "__OTR__other_textures/wheel_steam_engine_real";
static const ALIGN_ASSET(2) char gTexture68272C[] = "__OTR__other_textures/texture_68272C";
static const ALIGN_ASSET(2) char gTexture682928[] = "__OTR__other_textures/texture_682928";
static const ALIGN_ASSET(2) char gTexture682B24[] = "__OTR__other_textures/texture_682B24";
static const ALIGN_ASSET(2) char gTexture682D20[] = "__OTR__other_textures/texture_682D20";
static const ALIGN_ASSET(2) char gTexture682F1C[] = "__OTR__other_textures/texture_682F1C";
static const ALIGN_ASSET(2) char gTexture683118[] = "__OTR__other_textures/texture_683118";
static const ALIGN_ASSET(2) char gTexture683314[] = "__OTR__other_textures/texture_683314";
static const ALIGN_ASSET(2) char gTexture6835F0[] = "__OTR__other_textures/texture_6835F0";
static const ALIGN_ASSET(2) char gTexture683844[] = "__OTR__other_textures/texture_683844";
static const ALIGN_ASSET(2) char gTextureFencePostWooden[] = "__OTR__other_textures/fence_post_wooden";
static const ALIGN_ASSET(2) char gTexture6846DC[] = "__OTR__other_textures/texture_6846DC";
static const ALIGN_ASSET(2) char gTextureFenceRope[] = "__OTR__other_textures/fence_rope";
static const ALIGN_ASSET(2) char gTexture685108[] = "__OTR__other_textures/texture_685108";
static const ALIGN_ASSET(2) char gTextureSignWoodRedArrow[] = "__OTR__other_textures/sign_wood_red_arrow";
static const ALIGN_ASSET(2) char gTexture685AC0[] = "__OTR__other_textures/texture_685AC0";
static const ALIGN_ASSET(2) char gTextureSignGreenArrow[] = "__OTR__other_textures/sign_green_arrow";
static const ALIGN_ASSET(2) char gTexture6864E8[] = "__OTR__other_textures/texture_6864E8";
static const ALIGN_ASSET(2) char gTexture686CF0[] = "__OTR__other_textures/texture_686CF0";
static const ALIGN_ASSET(2) char gTexture6875A8[] = "__OTR__other_textures/texture_6875A8";
static const ALIGN_ASSET(2) char gTexture687EE8[] = "__OTR__other_textures/texture_687EE8";
static const ALIGN_ASSET(2) char gTexture68876C[] = "__OTR__other_textures/texture_68876C";
static const ALIGN_ASSET(2) char gTexture689230[] = "__OTR__other_textures/texture_689230";
static const ALIGN_ASSET(2) char gTexture689C00[] = "__OTR__other_textures/texture_689C00";
static const ALIGN_ASSET(2) char gTexture68A484[] = "__OTR__other_textures/texture_68A484";
static const ALIGN_ASSET(2) char gTexture68AC5C[] = "__OTR__other_textures/texture_68AC5C";
static const ALIGN_ASSET(2) char gTexture68B6A4[] = "__OTR__other_textures/texture_68B6A4";
static const ALIGN_ASSET(2) char gTexture68BE6C[] = "__OTR__other_textures/texture_68BE6C";
static const ALIGN_ASSET(2) char gTexture68C310[] = "__OTR__other_textures/texture_68C310";
static const ALIGN_ASSET(2) char gTexture68C620[] = "__OTR__other_textures/texture_68C620";
static const ALIGN_ASSET(2) char gTexture68C79C[] = "__OTR__other_textures/texture_68C79C";
static const ALIGN_ASSET(2) char gTexture68C944[] = "__OTR__other_textures/texture_68C944";
static const ALIGN_ASSET(2) char gTexture68CA94[] = "__OTR__other_textures/texture_68CA94";
static const ALIGN_ASSET(2) char gTexture68CC0C[] = "__OTR__other_textures/texture_68CC0C";
static const ALIGN_ASSET(2) char gTexture68CDA0[] = "__OTR__other_textures/texture_68CDA0";
static const ALIGN_ASSET(2) char gTextureSignYoshi[] = "__OTR__other_textures/sign_yoshi";
static const ALIGN_ASSET(2) char gTextureCheckerboardBlueGray[] = "__OTR__other_textures/checkerboard_blue_gray";
static const ALIGN_ASSET(2) char gTexture68D834[] = "__OTR__other_textures/texture_68D834";
static const ALIGN_ASSET(2) char gTexture68D940[] = "__OTR__other_textures/texture_68D940";
static const ALIGN_ASSET(2) char gTexture68DEC0[] = "__OTR__other_textures/texture_68DEC0";
static const ALIGN_ASSET(2) char gTexture68E2D0[] = "__OTR__other_textures/texture_68E2D0";
static const ALIGN_ASSET(2) char gTextureGreenShell0[] = "__OTR__other_textures/gTextureGreenShell0";
static const ALIGN_ASSET(2) char gTextureGreenShell1[] = "__OTR__other_textures/gTextureGreenShell1";
static const ALIGN_ASSET(2) char gTextureGreenShell2[] = "__OTR__other_textures/gTextureGreenShell2";
static const ALIGN_ASSET(2) char gTextureGreenShell3[] = "__OTR__other_textures/gTextureGreenShell3";
static const ALIGN_ASSET(2) char gTextureGreenShell4[] = "__OTR__other_textures/gTextureGreenShell4";
static const ALIGN_ASSET(2) char gTextureGreenShell5[] = "__OTR__other_textures/gTextureGreenShell5";
static const ALIGN_ASSET(2) char gTextureGreenShell6[] = "__OTR__other_textures/gTextureGreenShell6";
static const ALIGN_ASSET(2) char gTextureGreenShell7[] = "__OTR__other_textures/gTextureGreenShell7";
static const ALIGN_ASSET(2) char gTextureBlueShell0[] = "__OTR__other_textures/gTextureBlueShell0";
static const ALIGN_ASSET(2) char gTextureBlueShell1[] = "__OTR__other_textures/gTextureBlueShell1";
static const ALIGN_ASSET(2) char gTextureBlueShell2[] = "__OTR__other_textures/gTextureBlueShell2";
static const ALIGN_ASSET(2) char gTextureBlueShell3[] = "__OTR__other_textures/gTextureBlueShell3";
static const ALIGN_ASSET(2) char gTextureBlueShell4[] = "__OTR__other_textures/gTextureBlueShell4";
static const ALIGN_ASSET(2) char gTextureBlueShell5[] = "__OTR__other_textures/gTextureBlueShell5";
static const ALIGN_ASSET(2) char gTextureBlueShell6[] = "__OTR__other_textures/gTextureBlueShell6";
static const ALIGN_ASSET(2) char gTextureBlueShell7[] = "__OTR__other_textures/gTextureBlueShell7";
static const ALIGN_ASSET(2) char gTextureQuestionMarkYellow[] = "__OTR__other_textures/question_mark_yellow";
static const ALIGN_ASSET(2) char gTextureTrees1[] = "__OTR__other_textures/gTextureTrees1";
static const ALIGN_ASSET(2) char gTextureTrees2[] = "__OTR__other_textures/gTextureTrees2";
static const ALIGN_ASSET(2) char gTextureTrees3[] = "__OTR__other_textures/gTextureTrees3";
static const ALIGN_ASSET(2) char gTextureTrees4Left[] = "__OTR__other_textures/gTextureTrees4Left";
static const ALIGN_ASSET(2) char gTextureTrees4Right[] = "__OTR__other_textures/gTextureTrees4Right";
static const ALIGN_ASSET(2) char gTextureTrees5Left[] = "__OTR__other_textures/gTextureTrees5Left";
static const ALIGN_ASSET(2) char gTextureTrees5Right[] = "__OTR__other_textures/gTextureTrees5Right";
static const ALIGN_ASSET(2) char gTextureTrees6[] = "__OTR__other_textures/gTextureTrees6";
static const ALIGN_ASSET(2) char gTextureTrees7[] = "__OTR__other_textures/gTextureTrees7";
static const ALIGN_ASSET(2) char gTextureShrub[] = "__OTR__other_textures/shrub";
static const ALIGN_ASSET(2) char gTextureFrappeSnowlandTreeLeft[] = "__OTR__other_textures/gTextureFrappeSnowlandTreeLeft";
static const ALIGN_ASSET(2) char gTextureFrappeSnowlandTreeRight[] = "__OTR__other_textures/gTextureFrappeSnowlandTreeRight";
static const ALIGN_ASSET(2) char gTextureCow01Left[] = "__OTR__other_textures/gTextureCow01Left";
static const ALIGN_ASSET(2) char gTextureCow01Right[] = "__OTR__other_textures/gTextureCow01Right";
static const ALIGN_ASSET(2) char gTextureCow02Left[] = "__OTR__other_textures/gTextureCow02Left";
static const ALIGN_ASSET(2) char gTextureCow02Right[] = "__OTR__other_textures/gTextureCow02Right";
static const ALIGN_ASSET(2) char gTextureCow03Left[] = "__OTR__other_textures/gTextureCow03Left";
static const ALIGN_ASSET(2) char gTextureCow03Right[] = "__OTR__other_textures/gTextureCow03Right";
static const ALIGN_ASSET(2) char gTextureCow04Left[] = "__OTR__other_textures/gTextureCow04Left";
static const ALIGN_ASSET(2) char gTextureCow04Right[] = "__OTR__other_textures/gTextureCow04Right";
static const ALIGN_ASSET(2) char gTextureCow05Left[] = "__OTR__other_textures/gTextureCow05Left";
static const ALIGN_ASSET(2) char gTextureCow05Right[] = "__OTR__other_textures/gTextureCow05Right";
static const ALIGN_ASSET(2) char gTextureCactus1Left[] = "__OTR__other_textures/gTextureCactus1Left";
static const ALIGN_ASSET(2) char gTextureCactus1Right[] = "__OTR__other_textures/gTextureCactus1Right";
static const ALIGN_ASSET(2) char gTextureCactus2Left[] = "__OTR__other_textures/gTextureCactus2Left";
static const ALIGN_ASSET(2) char gTextureCactus2Right[] = "__OTR__other_textures/gTextureCactus2Right";
static const ALIGN_ASSET(2) char gTextureCactus3[] = "__OTR__other_textures/gTextureCactus3";
static const ALIGN_ASSET(2) char gTextureFinishLineBanner1[] = "__OTR__other_textures/gTextureFinishLineBanner1";
static const ALIGN_ASSET(2) char gTextureFinishLineBanner2[] = "__OTR__other_textures/gTextureFinishLineBanner2";
static const ALIGN_ASSET(2) char gTextureFinishLineBanner3[] = "__OTR__other_textures/gTextureFinishLineBanner3";
static const ALIGN_ASSET(2) char gTextureFinishLineBanner4[] = "__OTR__other_textures/gTextureFinishLineBanner4";
static const ALIGN_ASSET(2) char gTextureFinishLineBanner5[] = "__OTR__other_textures/gTextureFinishLineBanner5";
static const ALIGN_ASSET(2) char gTextureFinishLineBanner6[] = "__OTR__other_textures/gTextureFinishLineBanner6";
static const ALIGN_ASSET(2) char gTextureFinishLineBanner7[] = "__OTR__other_textures/gTextureFinishLineBanner7";
static const ALIGN_ASSET(2) char gTextureFinishLineBanner8[] = "__OTR__other_textures/gTextureFinishLineBanner8";
static const ALIGN_ASSET(2) char gTexturePiranhaPlant1[] = "__OTR__other_textures/gTexturePiranhaPlant1";
static const ALIGN_ASSET(2) char gTexturePiranhaPlant2[] = "__OTR__other_textures/gTexturePiranhaPlant2";
static const ALIGN_ASSET(2) char gTexturePiranhaPlant3[] = "__OTR__other_textures/gTexturePiranhaPlant3";
static const ALIGN_ASSET(2) char gTexturePiranhaPlant4[] = "__OTR__other_textures/gTexturePiranhaPlant4";
static const ALIGN_ASSET(2) char gTexturePiranhaPlant5[] = "__OTR__other_textures/gTexturePiranhaPlant5";
static const ALIGN_ASSET(2) char gTexturePiranhaPlant6[] = "__OTR__other_textures/gTexturePiranhaPlant6";
static const ALIGN_ASSET(2) char gTexturePiranhaPlant7[] = "__OTR__other_textures/gTexturePiranhaPlant7";
static const ALIGN_ASSET(2) char gTexturePiranhaPlant8[] = "__OTR__other_textures/gTexturePiranhaPlant8";
static const ALIGN_ASSET(2) char gTexturePiranhaPlant9[] = "__OTR__other_textures/gTexturePiranhaPlant9";
static const ALIGN_ASSET(2) char gTexture6997E0[] = "__OTR__other_textures/texture_6997E0";
static const ALIGN_ASSET(2) char gTextureDksJungleParkwayKiwanoFruit1[] = "__OTR__other_textures/gTextureDksJungleParkwayKiwanoFruit1";
static const ALIGN_ASSET(2) char gTextureDksJungleParkwayKiwanoFruit2[] = "__OTR__other_textures/gTextureDksJungleParkwayKiwanoFruit2";
static const ALIGN_ASSET(2) char gTextureDksJungleParkwayKiwanoFruit3[] = "__OTR__other_textures/gTextureDksJungleParkwayKiwanoFruit3";
static const ALIGN_ASSET(2) char gTextureKartShadow[] = "__OTR__other_textures/kart_shadow";
static const ALIGN_ASSET(2) char gTexture69B03C[] = "__OTR__other_textures/texture_69B03C";
static const ALIGN_ASSET(2) char gTexture69B140[] = "__OTR__other_textures/texture_69B140";
static const ALIGN_ASSET(2) char gTexture69B378[] = "__OTR__other_textures/texture_69B378";
static const ALIGN_ASSET(2) char gTexture69B960[] = "__OTR__other_textures/texture_69B960";
static const ALIGN_ASSET(2) char gTexture69BA28[] = "__OTR__other_textures/texture_69BA28";
static const ALIGN_ASSET(2) char gTextureBoingExclamation[] = "__OTR__other_textures/boing_exclamation";
static const ALIGN_ASSET(2) char gTexture69BE6C[] = "__OTR__other_textures/texture_69BE6C";
static const ALIGN_ASSET(2) char gTexture69BF54[] = "__OTR__other_textures/texture_69BF54";
static const ALIGN_ASSET(2) char gTexture69C090[] = "__OTR__other_textures/texture_69C090";
static const ALIGN_ASSET(2) char gTexture69C1E8[] = "__OTR__other_textures/texture_69C1E8";
static const ALIGN_ASSET(2) char gTexture69C354[] = "__OTR__other_textures/texture_69C354";
static const ALIGN_ASSET(2) char gTexture69C4E4[] = "__OTR__other_textures/texture_69C4E4";
static const ALIGN_ASSET(2) char gTexture69C80C[] = "__OTR__other_textures/texture_69C80C";
static const ALIGN_ASSET(2) char gTexture69C9C4[] = "__OTR__other_textures/texture_69C9C4";
static const ALIGN_ASSET(2) char gTexture69CB84[] = "__OTR__other_textures/texture_69CB84";
static const ALIGN_ASSET(2) char gTexture69CCEC[] = "__OTR__other_textures/texture_69CCEC";
static const ALIGN_ASSET(2) char gTexture69CEB8[] = "__OTR__other_textures/texture_69CEB8";
static const ALIGN_ASSET(2) char gTexture69D148[] = "__OTR__other_textures/texture_69D148";
static const ALIGN_ASSET(2) char gTexture69D4E0[] = "__OTR__other_textures/texture_69D4E0";
static const ALIGN_ASSET(2) char gTexture69D8FC[] = "__OTR__other_textures/texture_69D8FC";
static const ALIGN_ASSET(2) char gTexture69DCB4[] = "__OTR__other_textures/texture_69DCB4";
static const ALIGN_ASSET(2) char gTexture69DFA0[] = "__OTR__other_textures/texture_69DFA0";
static const ALIGN_ASSET(2) char gTexture69E25C[] = "__OTR__other_textures/texture_69E25C";
static const ALIGN_ASSET(2) char gTexture69E518[] = "__OTR__other_textures/texture_69E518";
static const ALIGN_ASSET(2) char gTexture69E7A8[] = "__OTR__other_textures/texture_69E7A8";
static const ALIGN_ASSET(2) char gTexture69EA18[] = "__OTR__other_textures/texture_69EA18";
static const ALIGN_ASSET(2) char gTexture69EC54[] = "__OTR__other_textures/texture_69EC54";
static const ALIGN_ASSET(2) char gTexture69EE38[] = "__OTR__other_textures/texture_69EE38";
static const ALIGN_ASSET(2) char gTexture69EFE0[] = "__OTR__other_textures/texture_69EFE0";
static const ALIGN_ASSET(2) char gTextureOnomatopoeiaCrash1[] = "__OTR__other_textures/gTextureOnomatopoeiaCrash1";
static const ALIGN_ASSET(2) char gTextureOnomatopoeiaCrash2[] = "__OTR__other_textures/gTextureOnomatopoeiaCrash2";
static const ALIGN_ASSET(2) char gTextureOnomatopoeiaWhrrrr1[] = "__OTR__other_textures/gTextureOnomatopoeiaWhrrrr1";
static const ALIGN_ASSET(2) char gTextureOnomatopoeiaWhrrrr2[] = "__OTR__other_textures/gTextureOnomatopoeiaWhrrrr2";
static const ALIGN_ASSET(2) char gTextureOnomatopoeiaPoomp1[] = "__OTR__other_textures/gTextureOnomatopoeiaPoomp1";
static const ALIGN_ASSET(2) char gTextureOnomatopoeiaPoomp2[] = "__OTR__other_textures/gTextureOnomatopoeiaPoomp2";
static const ALIGN_ASSET(2) char gTextureBalloon1[] = "__OTR__other_textures/gTextureBalloon1";
static const ALIGN_ASSET(2) char gTextureBalloon2[] = "__OTR__other_textures/gTextureBalloon2";
static const ALIGN_ASSET(2) char gTextureLightningBolt0[] = "__OTR__other_textures/lightning_zap_0";
static const ALIGN_ASSET(2) char gTextureLightningBolt1[] = "__OTR__other_textures/lightning_zap_1";
static const ALIGN_ASSET(2) char gTextureLakituNoLights1[] = "__OTR__other_textures/gTextureLakituNoLights1";
static const ALIGN_ASSET(2) char gTextureLakituNoLights2[] = "__OTR__other_textures/gTextureLakituNoLights2";
static const ALIGN_ASSET(2) char gTextureLakituNoLights3[] = "__OTR__other_textures/gTextureLakituNoLights3";
static const ALIGN_ASSET(2) char gTextureLakituNoLights4[] = "__OTR__other_textures/gTextureLakituNoLights4";
static const ALIGN_ASSET(2) char gTextureLakituNoLights5[] = "__OTR__other_textures/gTextureLakituNoLights5";
static const ALIGN_ASSET(2) char gTextureLakituNoLights6[] = "__OTR__other_textures/gTextureLakituNoLights6";
static const ALIGN_ASSET(2) char gTextureLakituNoLights7[] = "__OTR__other_textures/gTextureLakituNoLights7";
static const ALIGN_ASSET(2) char gTextureLakituNoLights8[] = "__OTR__other_textures/gTextureLakituNoLights8";
static const ALIGN_ASSET(2) char gTextureLakituRedLights01[] = "__OTR__other_textures/gTextureLakituRedLights01";
static const ALIGN_ASSET(2) char gTextureLakituRedLights02[] = "__OTR__other_textures/gTextureLakituRedLights02";
static const ALIGN_ASSET(2) char gTextureLakituRedLights03[] = "__OTR__other_textures/gTextureLakituRedLights03";
static const ALIGN_ASSET(2) char gTextureLakituRedLights04[] = "__OTR__other_textures/gTextureLakituRedLights04";
static const ALIGN_ASSET(2) char gTextureLakituRedLights05[] = "__OTR__other_textures/gTextureLakituRedLights05";
static const ALIGN_ASSET(2) char gTextureLakituRedLights06[] = "__OTR__other_textures/gTextureLakituRedLights06";
static const ALIGN_ASSET(2) char gTextureLakituRedLights07[] = "__OTR__other_textures/gTextureLakituRedLights07";
static const ALIGN_ASSET(2) char gTextureLakituRedLights08[] = "__OTR__other_textures/gTextureLakituRedLights08";
static const ALIGN_ASSET(2) char gTextureLakituRedLights09[] = "__OTR__other_textures/gTextureLakituRedLights09";
static const ALIGN_ASSET(2) char gTextureLakituRedLights10[] = "__OTR__other_textures/gTextureLakituRedLights10";
static const ALIGN_ASSET(2) char gTextureLakituRedLights11[] = "__OTR__other_textures/gTextureLakituRedLights11";
static const ALIGN_ASSET(2) char gTextureLakituRedLights12[] = "__OTR__other_textures/gTextureLakituRedLights12";
static const ALIGN_ASSET(2) char gTextureLakituRedLights13[] = "__OTR__other_textures/gTextureLakituRedLights13";
static const ALIGN_ASSET(2) char gTextureLakituRedLights14[] = "__OTR__other_textures/gTextureLakituRedLights14";
static const ALIGN_ASSET(2) char gTextureLakituRedLights15[] = "__OTR__other_textures/gTextureLakituRedLights15";
static const ALIGN_ASSET(2) char gTextureLakituRedLights16[] = "__OTR__other_textures/gTextureLakituRedLights16";
static const ALIGN_ASSET(2) char gTextureLakituBlueLight1[] = "__OTR__other_textures/gTextureLakituBlueLight1";
static const ALIGN_ASSET(2) char gTextureLakituBlueLight2[] = "__OTR__other_textures/gTextureLakituBlueLight2";
static const ALIGN_ASSET(2) char gTextureLakituBlueLight3[] = "__OTR__other_textures/gTextureLakituBlueLight3";
static const ALIGN_ASSET(2) char gTextureLakituBlueLight4[] = "__OTR__other_textures/gTextureLakituBlueLight4";
static const ALIGN_ASSET(2) char gTextureLakituBlueLight5[] = "__OTR__other_textures/gTextureLakituBlueLight5";
static const ALIGN_ASSET(2) char gTextureLakituBlueLight6[] = "__OTR__other_textures/gTextureLakituBlueLight6";
static const ALIGN_ASSET(2) char gTextureLakituBlueLight7[] = "__OTR__other_textures/gTextureLakituBlueLight7";
static const ALIGN_ASSET(2) char gTextureLakituBlueLight8[] = "__OTR__other_textures/gTextureLakituBlueLight8";
static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag01[] = "__OTR__other_textures/gTextureLakituCheckeredFlag01";
static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag02[] = "__OTR__other_textures/gTextureLakituCheckeredFlag02";
static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag03[] = "__OTR__other_textures/gTextureLakituCheckeredFlag03";
static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag04[] = "__OTR__other_textures/gTextureLakituCheckeredFlag04";
static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag05[] = "__OTR__other_textures/gTextureLakituCheckeredFlag05";
static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag06[] = "__OTR__other_textures/gTextureLakituCheckeredFlag06";
static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag07[] = "__OTR__other_textures/gTextureLakituCheckeredFlag07";
static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag08[] = "__OTR__other_textures/gTextureLakituCheckeredFlag08";
static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag09[] = "__OTR__other_textures/gTextureLakituCheckeredFlag09";
static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag10[] = "__OTR__other_textures/gTextureLakituCheckeredFlag10";
static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag11[] = "__OTR__other_textures/gTextureLakituCheckeredFlag11";
static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag12[] = "__OTR__other_textures/gTextureLakituCheckeredFlag12";
static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag13[] = "__OTR__other_textures/gTextureLakituCheckeredFlag13";
static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag14[] = "__OTR__other_textures/gTextureLakituCheckeredFlag14";
static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag15[] = "__OTR__other_textures/gTextureLakituCheckeredFlag15";
static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag16[] = "__OTR__other_textures/gTextureLakituCheckeredFlag16";
static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag17[] = "__OTR__other_textures/gTextureLakituCheckeredFlag17";
static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag18[] = "__OTR__other_textures/gTextureLakituCheckeredFlag18";
static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag19[] = "__OTR__other_textures/gTextureLakituCheckeredFlag19";
static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag20[] = "__OTR__other_textures/gTextureLakituCheckeredFlag20";
static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag21[] = "__OTR__other_textures/gTextureLakituCheckeredFlag21";
static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag22[] = "__OTR__other_textures/gTextureLakituCheckeredFlag22";
static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag23[] = "__OTR__other_textures/gTextureLakituCheckeredFlag23";
static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag24[] = "__OTR__other_textures/gTextureLakituCheckeredFlag24";
static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag25[] = "__OTR__other_textures/gTextureLakituCheckeredFlag25";
static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag26[] = "__OTR__other_textures/gTextureLakituCheckeredFlag26";
static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag27[] = "__OTR__other_textures/gTextureLakituCheckeredFlag27";
static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag28[] = "__OTR__other_textures/gTextureLakituCheckeredFlag28";
static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag29[] = "__OTR__other_textures/gTextureLakituCheckeredFlag29";
static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag30[] = "__OTR__other_textures/gTextureLakituCheckeredFlag30";
static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag31[] = "__OTR__other_textures/gTextureLakituCheckeredFlag31";
static const ALIGN_ASSET(2) char gTextureLakituCheckeredFlag32[] = "__OTR__other_textures/gTextureLakituCheckeredFlag32";
static const ALIGN_ASSET(2) char gTextureLakituSecondLap01[] = "__OTR__other_textures/gTextureLakituSecondLap01";
static const ALIGN_ASSET(2) char gTextureLakituSecondLap02[] = "__OTR__other_textures/gTextureLakituSecondLap02";
static const ALIGN_ASSET(2) char gTextureLakituSecondLap03[] = "__OTR__other_textures/gTextureLakituSecondLap03";
static const ALIGN_ASSET(2) char gTextureLakituSecondLap04[] = "__OTR__other_textures/gTextureLakituSecondLap04";
static const ALIGN_ASSET(2) char gTextureLakituSecondLap05[] = "__OTR__other_textures/gTextureLakituSecondLap05";
static const ALIGN_ASSET(2) char gTextureLakituSecondLap06[] = "__OTR__other_textures/gTextureLakituSecondLap06";
static const ALIGN_ASSET(2) char gTextureLakituSecondLap07[] = "__OTR__other_textures/gTextureLakituSecondLap07";
static const ALIGN_ASSET(2) char gTextureLakituSecondLap08[] = "__OTR__other_textures/gTextureLakituSecondLap08";
static const ALIGN_ASSET(2) char gTextureLakituSecondLap09[] = "__OTR__other_textures/gTextureLakituSecondLap09";
static const ALIGN_ASSET(2) char gTextureLakituSecondLap10[] = "__OTR__other_textures/gTextureLakituSecondLap10";
static const ALIGN_ASSET(2) char gTextureLakituSecondLap11[] = "__OTR__other_textures/gTextureLakituSecondLap11";
static const ALIGN_ASSET(2) char gTextureLakituSecondLap12[] = "__OTR__other_textures/gTextureLakituSecondLap12";
static const ALIGN_ASSET(2) char gTextureLakituSecondLap13[] = "__OTR__other_textures/gTextureLakituSecondLap13";
static const ALIGN_ASSET(2) char gTextureLakituSecondLap14[] = "__OTR__other_textures/gTextureLakituSecondLap14";
static const ALIGN_ASSET(2) char gTextureLakituSecondLap15[] = "__OTR__other_textures/gTextureLakituSecondLap15";
static const ALIGN_ASSET(2) char gTextureLakituSecondLap16[] = "__OTR__other_textures/gTextureLakituSecondLap16";
static const ALIGN_ASSET(2) char gTextureLakituFinalLap01[] = "__OTR__other_textures/gTextureLakituFinalLap01";
static const ALIGN_ASSET(2) char gTextureLakituFinalLap02[] = "__OTR__other_textures/gTextureLakituFinalLap02";
static const ALIGN_ASSET(2) char gTextureLakituFinalLap03[] = "__OTR__other_textures/gTextureLakituFinalLap03";
static const ALIGN_ASSET(2) char gTextureLakituFinalLap04[] = "__OTR__other_textures/gTextureLakituFinalLap04";
static const ALIGN_ASSET(2) char gTextureLakituFinalLap05[] = "__OTR__other_textures/gTextureLakituFinalLap05";
static const ALIGN_ASSET(2) char gTextureLakituFinalLap06[] = "__OTR__other_textures/gTextureLakituFinalLap06";
static const ALIGN_ASSET(2) char gTextureLakituFinalLap07[] = "__OTR__other_textures/gTextureLakituFinalLap07";
static const ALIGN_ASSET(2) char gTextureLakituFinalLap08[] = "__OTR__other_textures/gTextureLakituFinalLap08";
static const ALIGN_ASSET(2) char gTextureLakituFinalLap09[] = "__OTR__other_textures/gTextureLakituFinalLap09";
static const ALIGN_ASSET(2) char gTextureLakituFinalLap10[] = "__OTR__other_textures/gTextureLakituFinalLap10";
static const ALIGN_ASSET(2) char gTextureLakituFinalLap11[] = "__OTR__other_textures/gTextureLakituFinalLap11";
static const ALIGN_ASSET(2) char gTextureLakituFinalLap12[] = "__OTR__other_textures/gTextureLakituFinalLap12";
static const ALIGN_ASSET(2) char gTextureLakituFinalLap13[] = "__OTR__other_textures/gTextureLakituFinalLap13";
static const ALIGN_ASSET(2) char gTextureLakituFinalLap14[] = "__OTR__other_textures/gTextureLakituFinalLap14";
static const ALIGN_ASSET(2) char gTextureLakituFinalLap15[] = "__OTR__other_textures/gTextureLakituFinalLap15";
static const ALIGN_ASSET(2) char gTextureLakituFinalLap16[] = "__OTR__other_textures/gTextureLakituFinalLap16";
static const ALIGN_ASSET(2) char gTextureLakituReverse01[] = "__OTR__other_textures/gTextureLakituReverse01";
static const ALIGN_ASSET(2) char gTextureLakituReverse02[] = "__OTR__other_textures/gTextureLakituReverse02";
static const ALIGN_ASSET(2) char gTextureLakituReverse03[] = "__OTR__other_textures/gTextureLakituReverse03";
static const ALIGN_ASSET(2) char gTextureLakituReverse04[] = "__OTR__other_textures/gTextureLakituReverse04";
static const ALIGN_ASSET(2) char gTextureLakituReverse05[] = "__OTR__other_textures/gTextureLakituReverse05";
static const ALIGN_ASSET(2) char gTextureLakituReverse06[] = "__OTR__other_textures/gTextureLakituReverse06";
static const ALIGN_ASSET(2) char gTextureLakituReverse07[] = "__OTR__other_textures/gTextureLakituReverse07";
static const ALIGN_ASSET(2) char gTextureLakituReverse08[] = "__OTR__other_textures/gTextureLakituReverse08";
static const ALIGN_ASSET(2) char gTextureLakituReverse09[] = "__OTR__other_textures/gTextureLakituReverse09";
static const ALIGN_ASSET(2) char gTextureLakituReverse10[] = "__OTR__other_textures/gTextureLakituReverse10";
static const ALIGN_ASSET(2) char gTextureLakituReverse11[] = "__OTR__other_textures/gTextureLakituReverse11";
static const ALIGN_ASSET(2) char gTextureLakituReverse12[] = "__OTR__other_textures/gTextureLakituReverse12";
static const ALIGN_ASSET(2) char gTextureLakituReverse13[] = "__OTR__other_textures/gTextureLakituReverse13";
static const ALIGN_ASSET(2) char gTextureLakituReverse14[] = "__OTR__other_textures/gTextureLakituReverse14";
static const ALIGN_ASSET(2) char gTextureLakituReverse15[] = "__OTR__other_textures/gTextureLakituReverse15";
static const ALIGN_ASSET(2) char gTextureLakituReverse16[] = "__OTR__other_textures/gTextureLakituReverse16";
static const ALIGN_ASSET(2) char gTextureLakituFishing1[] = "__OTR__other_textures/gTextureLakituFishing1";
static const ALIGN_ASSET(2) char gTextureLakituFishing2[] = "__OTR__other_textures/gTextureLakituFishing2";
static const ALIGN_ASSET(2) char gTextureLakituFishing3[] = "__OTR__other_textures/gTextureLakituFishing3";
static const ALIGN_ASSET(2) char gTextureLakituFishing4[] = "__OTR__other_textures/gTextureLakituFishing4";
static const ALIGN_ASSET(2) char gTextureExhaust0[] = "__OTR__other_textures/exhaust_0";
static const ALIGN_ASSET(2) char gTextureExhaust1[] = "__OTR__other_textures/exhaust_1";
static const ALIGN_ASSET(2) char gTextureExhaust2[] = "__OTR__other_textures/exhaust_2";
static const ALIGN_ASSET(2) char gTextureExhaust3[] = "__OTR__other_textures/exhaust_3";
static const ALIGN_ASSET(2) char gTextureExhaust4[] = "__OTR__other_textures/exhaust_4";
static const ALIGN_ASSET(2) char gTextureExhaust5[] = "__OTR__other_textures/exhaust_5";
static const ALIGN_ASSET(2) char gTextureLogoMarioKart64[] = "__OTR__other_textures/logo_mario_kart_64";
static const ALIGN_ASSET(2) char gTextureCourseOutlineMarioRaceway[] = "__OTR__other_textures/gTextureCourseOutlineMarioRaceway";
static const ALIGN_ASSET(2) char gTextureCourseOutlineChocoMountain[] = "__OTR__other_textures/gTextureCourseOutlineChocoMountain";
static const ALIGN_ASSET(2) char gTextureCourseOutlineBowsersCastle[] = "__OTR__other_textures/gTextureCourseOutlineBowsersCastle";
static const ALIGN_ASSET(2) char gTextureCourseOutlineBansheeBoardwalk[] = "__OTR__other_textures/gTextureCourseOutlineBansheeBoardwalk";
static const ALIGN_ASSET(2) char gTextureCourseOutlineYoshiValley[] = "__OTR__other_textures/gTextureCourseOutlineYoshiValley";
static const ALIGN_ASSET(2) char gTextureCourseOutlineFrappeSnowland[] = "__OTR__other_textures/gTextureCourseOutlineFrappeSnowland";
static const ALIGN_ASSET(2) char gTextureCourseOutlineKoopaTroopaBeach[] = "__OTR__other_textures/gTextureCourseOutlineKoopaTroopaBeach";
static const ALIGN_ASSET(2) char gTextureCourseOutlineRoyalRaceway[] = "__OTR__other_textures/gTextureCourseOutlineRoyalRaceway";
static const ALIGN_ASSET(2) char gTextureCourseOutlineLuigiRaceway[] = "__OTR__other_textures/gTextureCourseOutlineLuigiRaceway";
static const ALIGN_ASSET(2) char gTextureCourseOutlineMooMooFarm[] = "__OTR__other_textures/gTextureCourseOutlineMooMooFarm";
static const ALIGN_ASSET(2) char gTextureCourseOutlineToadsTurnpike[] = "__OTR__other_textures/gTextureCourseOutlineToadsTurnpike";
static const ALIGN_ASSET(2) char gTextureCourseOutlineKalimariDesert[] = "__OTR__other_textures/gTextureCourseOutlineKalimariDesert";
static const ALIGN_ASSET(2) char gTextureCourseOutlineSherbetLand[] = "__OTR__other_textures/gTextureCourseOutlineSherbetLand";
static const ALIGN_ASSET(2) char gTextureCourseOutlineRainbowRoad[] = "__OTR__other_textures/gTextureCourseOutlineRainbowRoad";
static const ALIGN_ASSET(2) char gTextureCourseOutlineWarioStadium[] = "__OTR__other_textures/gTextureCourseOutlineWarioStadium";
static const ALIGN_ASSET(2) char gTextureCourseOutlineBlockFort[] = "__OTR__other_textures/gTextureCourseOutlineBlockFort";
static const ALIGN_ASSET(2) char gTextureCourseOutlineSkyscraper[] = "__OTR__other_textures/gTextureCourseOutlineSkyscraper";
static const ALIGN_ASSET(2) char gTextureCourseOutlineDoubleDeck[] = "__OTR__other_textures/gTextureCourseOutlineDoubleDeck";
static const ALIGN_ASSET(2) char gTextureCourseOutlineDksJungleParkway[] = "__OTR__other_textures/gTextureCourseOutlineDksJungleParkway";
static const ALIGN_ASSET(2) char gTextureCourseOutlineBigDonut[] = "__OTR__other_textures/gTextureCourseOutlineBigDonut";
|