-
Notifications
You must be signed in to change notification settings - Fork 0
/
symbol_addrs.txt
3561 lines (3475 loc) · 236 KB
/
symbol_addrs.txt
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
// DATA SYMBOLS
ETSpawn = 0x8008540C; // type:u8 size:36
DoraBlinkTable = 0x80085430; // type:u8 size:48
MeshIDTable = 0x80085460; // type:u8 size:2332
PickupSpawnList = 0x80085D7C; // type:u8 size:1008
MapPickupList2 = 0x8008616C; // type:u8 size:80
WatchOut = 0x800861BC; // type:u8 size:20
DemoString = 0x800861D0; // type:u8 size:20
PressStartString = 0x800861E4; // type:u8 size:20
Pause_Title = 0x800861F8; // type:u8 size:20
Pause_ExitGame = 0x8008620C; // type:u8 size:20
Pause_Areyousure = 0x80086220; // type:u8 size:20
Pause_No = 0x80086234; // type:u8 size:20
Pause_Yes = 0x80086248; // type:u8 size:20
Pause_Controls = 0x8008625C; // type:u8 size:20
Pause_Heartstun = 0x80086270; // type:u8 size:20
Pause_Healing = 0x80086284; // type:u8 size:20
Pause_TK = 0x80086298; // type:u8 size:20
Pause_Pickup = 0x800862AC; // type:u8 size:20
Pause_Run = 0x800862C0; // type:u8 size:20
Pause_ambient = 0x800862D4; // type:u8 size:20
Pause_sndefx = 0x800862E8; // type:u8 size:20
Pause_On = 0x800862FC; // type:u8 size:20
Pause_Off = 0x80086310; // type:u8 size:20
Pause_Resume = 0x80086324; // type:u8 size:20
Pause_Vibration = 0x80086338; // type:u8 size:20
MainMenu_Vibration_On = 0x8008634C; // type:u8 size:20
MainMenu_Vibration_Off = 0x80086360; // type:u8 size:20
MainMenu_NewMission = 0x80086374; // type:u8 size:20
MainMenu_LoadMission = 0x80086388; // type:u8 size:20
MainMenu_Option = 0x8008639C; // type:u8 size:20
MainMenu_Ambience = 0x800863B0; // type:u8 size:20
MainMenu_Sound = 0x800863C4; // type:u8 size:20
MainMenu_Controller_Config_A = 0x800863D8; // type:u8 size:20
MainMenu_Controller_Config_B = 0x800863EC; // type:u8 size:20
HUDPickupSpawn = 0x80086400; // type:u8 size:36
HUDHealthSpawn = 0x80086424; // type:u8 size:36
DynamicPreSpawn = 0x80086448; // type:u8 size:36
WorldList = 0x8008646C; // type:u8 size:180
WorldRedBooks = 0x80086520; // type:u8 size:108
TestWorld = 0x8008658C; // type:u8 size:40
XAMusicTable = 0x800865B4; // type:u8 size:48
XATable = 0x800865E4; // type:u8 size:576
MovieTable = 0x80086824; // type:u8 size:272
LanguageFirstLetter = 0x80086934; // type:u8 size:20
IdleAnimTable = 0x80086948; // type:u8 size:12
golddemoworld = 0x80086954; // type:u8 size:20
MenuServiceListCredits = 0x80086968; // type:u32 size:56
MenuServiceList = 0x800869A0; // type:u32 size:24
TIM_HAND = 0x800869B8; // type:u8 size:416
ascii_table = 0x80086B58; // type:u8 size:12
ascii_k_table = 0x80086B64; // type:u8 size:66
ParticleTextureData = 0x80086BA8; // type:u8 size:20
gOptionMenuStruct = 0x80086BBC; // type:u8 size:208
Collected_CinematicText = 0x80086C8C; // type:u8 size:20
CollectHealth_CinematicText = 0x80086CA0; // type:u8 size:20
CollectBones_CinematicText = 0x80086CB4; // type:u8 size:20
FindPuppies_CinematicText = 0x80086CC8; // type:u8 size:20
EndLevelPath_CinematicText = 0x80086CDC; // type:u8 size:20
BonusRound_CinematicText = 0x80086CF0; // type:u8 size:20
OpenCrates_CinematicText = 0x80086D04; // type:u8 size:20
Dig_CinematicText = 0x80086D18; // type:u8 size:20
LevelGoal_OverlayList = 0x80086D2C; // type:u8 size:1
CinematicTable_LevelGoal = 0x80086D30; // type:u8 size:20
Level_London_1a_CinematicText = 0x80086D44; // type:u8 size:20
Level_London_1b_CinematicText = 0x80086D58; // type:u8 size:20
Level_London_1c_CinematicText = 0x80086D6C; // type:u8 size:20
London1_ParagraphScriptTable = 0x80086D80; // type:u8 size:12
Level_1_Intro_Cinematic = 0x80086D8C; // type:u8 size:20
Level_2_Intro_Cinematic = 0x80086DA0; // type:u8 size:20
IntroLondon1ScriptTable_1_CinematicText = 0x80086DB4; // type:u8 size:20
IntroLondon1ScriptTable_2_CinematicText = 0x80086DC8; // type:u8 size:20
IntroLondon1ScriptTable_3_CinematicText = 0x80086DDC; // type:u8 size:20
IntroLondon1ScriptTable_4_CinematicText = 0x80086DF0; // type:u8 size:20
IntroLondon1ScriptTable_5_CinematicText = 0x80086E04; // type:u8 size:20
IntroLondon1ScriptTable_6_CinematicText = 0x80086E18; // type:u8 size:20
IntroLondon1ScriptTable_7_CinematicText = 0x80086E2C; // type:u8 size:20
IntroLondon1ScriptTable_8_CinematicText = 0x80086E40; // type:u8 size:20
IntroLondon1ScriptTable_9_CinematicText = 0x80086E54; // type:u8 size:20
IntroLondon1_ScriptTable = 0x80086E68; // type:u8 size:36
IntroLondon1_ImageTable = 0x80086E8C; // type:u8 size:36
London1_OverylayList = 0x80086EB0; // type:u8 size:9
CinematicTable_IntroLondon1 = 0x80086EBC; // type:u8 size:20
IntroPiccadillyScriptTable_1_CinematicText = 0x80086ED0; // type:u8 size:20
IntroPiccadillyScriptTable_2_CinematicText = 0x80086EE4; // type:u8 size:20
IntroPiccadillyScriptTable_3_CinematicText = 0x80086EF8; // type:u8 size:20
IntroPiccadillyScriptTable_4_CinematicText = 0x80086F0C; // type:u8 size:20
IntroPiccadillyScriptTable_5_CinematicText = 0x80086F20; // type:u8 size:20
IntroPiccadillyScriptTable_6_CinematicText = 0x80086F34; // type:u8 size:20
IntroPiccadillyScriptTable_7_CinematicText = 0x80086F48; // type:u8 size:20
IntroPiccadillyScriptTable_8_CinematicText = 0x80086F5C; // type:u8 size:20
IntroPiccadillyScriptTable_9_CinematicText = 0x80086F70; // type:u8 size:20
IntroPiccadillyScriptTable_10_CinematicText = 0x80086F84; // type:u8 size:20
IntroPiccadillyScriptTable_11_CinematicText = 0x80086F98; // type:u8 size:20
IntroPiccadillyScriptTable_12_CinematicText = 0x80086FAC; // type:u8 size:20
IntroPiccadillyScriptTable_13_CinematicText = 0x80086FC0; // type:u8 size:20
IntroPiccadilly_ScriptTable = 0x80086FD4; // type:u8 size:52
IntroPiccadilly_ImageTable = 0x80087008; // type:u8 size:52
IntroPiccadilly_OverylayList = 0x8008703C; // type:u8 size:13
CinematicTable_IntroPiccadilly = 0x8008704C; // type:u8 size:20
IntroCountrysideScriptTable_1_CinematicText = 0x80087060; // type:u8 size:20
IntroCountrysideScriptTable_2_CinematicText = 0x80087074; // type:u8 size:20
IntroCountrysideScriptTable_3_CinematicText = 0x80087088; // type:u8 size:20
IntroCountrysideScriptTable_4_CinematicText = 0x8008709C; // type:u8 size:20
IntroCountrysideScriptTable_5_CinematicText = 0x800870B0; // type:u8 size:20
IntroCountrysideScriptTable_6_CinematicText = 0x800870C4; // type:u8 size:20
IntroCountrysideScriptTable_7_CinematicText = 0x800870D8; // type:u8 size:20
IntroCountrysideScriptTable_8_CinematicText = 0x800870EC; // type:u8 size:20
IntroCountrysideScriptTable_9_CinematicText = 0x80087100; // type:u8 size:20
IntroCountrysideScriptTable_10_CinematicText = 0x80087114; // type:u8 size:20
IntroCountrysideScriptTable_11_CinematicText = 0x80087128; // type:u8 size:20
IntroCountrysideScriptTable_12_CinematicText = 0x8008713C; // type:u8 size:20
IntroCountrysideScriptTable_13_CinematicText = 0x80087150; // type:u8 size:20
IntroCountrysideScriptTable_14_CinematicText = 0x80087164; // type:u8 size:20
IntroCountrysideScriptTable_15_CinematicText = 0x80087178; // type:u8 size:20
IntroCountrysideScriptTable_16_CinematicText = 0x8008718C; // type:u8 size:20
IntroCountrysideScriptTable_17_CinematicText = 0x800871A0; // type:u8 size:20
IntroCountrysideScriptTable_18_CinematicText = 0x800871B4; // type:u8 size:20
IntroCountrysideScriptTable_19_CinematicText = 0x800871C8; // type:u8 size:20
IntroCountrysideScriptTable_20_CinematicText = 0x800871DC; // type:u8 size:20
IntroCountrysideScriptTable_21_CinematicText = 0x800871F0; // type:u8 size:20
IntroCountrysideScriptTable_22_CinematicText = 0x80087204; // type:u8 size:20
IntroCountryside_ScriptTable = 0x80087218; // type:u8 size:88
IntroCountryside_ImageTable = 0x80087270; // type:u8 size:88
IntroCountryside_OverylayList = 0x800872C8; // type:u8 size:22
CinematicTable_IntroCountryside = 0x800872E0; // type:u8 size:20
IntrolondonnightScriptTable_1_CinematicText = 0x800872F4; // type:u8 size:20
IntrolondonnightScriptTable_2_CinematicText = 0x80087308; // type:u8 size:20
IntrolondonnightScriptTable_3_CinematicText = 0x8008731C; // type:u8 size:20
IntrolondonnightScriptTable_4_CinematicText = 0x80087330; // type:u8 size:20
IntrolondonnightScriptTable_5_CinematicText = 0x80087344; // type:u8 size:20
IntrolondonnightScriptTable_6_CinematicText = 0x80087358; // type:u8 size:20
IntrolondonnightScriptTable_7_CinematicText = 0x8008736C; // type:u8 size:20
IntrolondonnightScriptTable_8_CinematicText = 0x80087380; // type:u8 size:20
IntrolondonnightScriptTable_9_CinematicText = 0x80087394; // type:u8 size:20
IntrolondonnightScriptTable_10_CinematicText = 0x800873A8; // type:u8 size:20
IntrolondonnightScriptTable_11_CinematicText = 0x800873BC; // type:u8 size:20
IntrolondonnightScriptTable_12_CinematicText = 0x800873D0; // type:u8 size:20
IntrolondonnightScriptTable_13_CinematicText = 0x800873E4; // type:u8 size:20
IntrolondonnightScriptTable_14_CinematicText = 0x800873F8; // type:u8 size:20
IntrolondonnightScriptTable_15_CinematicText = 0x8008740C; // type:u8 size:20
IntrolondonnightScriptTable_16_CinematicText = 0x80087420; // type:u8 size:20
IntrolondonnightScriptTable_17_CinematicText = 0x80087434; // type:u8 size:20
IntrolondonnightScriptTable_18_CinematicText = 0x80087448; // type:u8 size:20
IntrolondonnightScriptTable_19_CinematicText = 0x8008745C; // type:u8 size:20
IntrolondonnightScriptTable_20_CinematicText = 0x80087470; // type:u8 size:20
IntrolondonnightScriptTable_21_CinematicText = 0x80087484; // type:u8 size:20
IntrolondonnightScriptTable_22_CinematicText = 0x80087498; // type:u8 size:20
Introlondonnight_ScriptTable = 0x800874AC; // type:u8 size:56
Introlondonnight_ImageTable = 0x800874E4; // type:u8 size:56
Introlondonnight_OverylayList = 0x8008751C; // type:u8 size:23
CinematicTable_IntroLondonnight = 0x80087534; // type:u8 size:20
IntrowarehouseScriptTable_1_CinematicText = 0x80087548; // type:u8 size:20
IntrowarehouseScriptTable_2_CinematicText = 0x8008755C; // type:u8 size:20
IntrowarehouseScriptTable_3_CinematicText = 0x80087570; // type:u8 size:20
IntrowarehouseScriptTable_4_CinematicText = 0x80087584; // type:u8 size:20
IntrowarehouseScriptTable_5_CinematicText = 0x80087598; // type:u8 size:20
IntrowarehouseScriptTable_6_CinematicText = 0x800875AC; // type:u8 size:20
IntrowarehouseScriptTable_7_CinematicText = 0x800875C0; // type:u8 size:20
IntrowarehouseScriptTable_8_CinematicText = 0x800875D4; // type:u8 size:20
IntrowarehouseScriptTable_9_CinematicText = 0x800875E8; // type:u8 size:20
IntrowarehouseScriptTable_10_CinematicText = 0x800875FC; // type:u8 size:20
IntrowarehouseScriptTable_11_CinematicText = 0x80087610; // type:u8 size:20
IntrowarehouseScriptTable_12_CinematicText = 0x80087624; // type:u8 size:20
IntrowarehouseScriptTable_13_CinematicText = 0x80087638; // type:u8 size:20
IntrowarehouseScriptTable_14_CinematicText = 0x8008764C; // type:u8 size:20
IntrowarehouseScriptTable_15_CinematicText = 0x80087660; // type:u8 size:20
IntrowarehouseScriptTable_16_CinematicText = 0x80087674; // type:u8 size:20
IntrowarehouseScriptTable_17_CinematicText = 0x80087688; // type:u8 size:20
IntrowarehouseScriptTable_18_CinematicText = 0x8008769C; // type:u8 size:20
IntrowarehouseScriptTable_19_CinematicText = 0x800876B0; // type:u8 size:20
IntrowarehouseScriptTable_20_CinematicText = 0x800876C4; // type:u8 size:20
IntrowarehouseScriptTable_21_CinematicText = 0x800876D8; // type:u8 size:20
IntrowarehouseScriptTable_22_CinematicText = 0x800876EC; // type:u8 size:20
Introwarehouse_ScriptTable = 0x80087700; // type:u8 size:60
Introwarehouse_ImageTable = 0x8008773C; // type:u8 size:60
Introwarehouse_OverylayList = 0x80087778; // type:u8 size:24
CinematicTable_IntroWarehouse = 0x80087790; // type:u8 size:20
IntroendingScriptTable_1_CinematicText = 0x800877A4; // type:u8 size:20
IntroendingScriptTable_2_CinematicText = 0x800877B8; // type:u8 size:20
IntroendingScriptTable_3_CinematicText = 0x800877CC; // type:u8 size:20
IntroendingScriptTable_4_CinematicText = 0x800877E0; // type:u8 size:20
IntroendingScriptTable_5_CinematicText = 0x800877F4; // type:u8 size:20
IntroendingScriptTable_6_CinematicText = 0x80087808; // type:u8 size:20
IntroendingScriptTable_7_CinematicText = 0x8008781C; // type:u8 size:20
IntroendingScriptTable_8_CinematicText = 0x80087830; // type:u8 size:20
IntroendingScriptTable_9_CinematicText = 0x80087844; // type:u8 size:20
IntroendingScriptTable_10_CinematicText = 0x80087858; // type:u8 size:20
IntroendingScriptTable_11_CinematicText = 0x8008786C; // type:u8 size:20
IntroendingScriptTable_12_CinematicText = 0x80087880; // type:u8 size:20
IntroendingScriptTable_13_CinematicText = 0x80087894; // type:u8 size:20
IntroendingScriptTable_14_CinematicText = 0x800878A8; // type:u8 size:20
IntroendingScriptTable_15_CinematicText = 0x800878BC; // type:u8 size:20
IntroendingScriptTable_16_CinematicText = 0x800878D0; // type:u8 size:20
IntroendingScriptTable_17_CinematicText = 0x800878E4; // type:u8 size:20
IntroendingScriptTable_18_CinematicText = 0x800878F8; // type:u8 size:20
IntroendingScriptTable_19_CinematicText = 0x8008790C; // type:u8 size:20
IntroendingScriptTable_20_CinematicText = 0x80087920; // type:u8 size:20
IntroendingScriptTable_21_CinematicText = 0x80087934; // type:u8 size:20
IntroendingScriptTable_22_CinematicText = 0x80087948; // type:u8 size:20
Introending_ScriptTable = 0x8008795C; // type:u8 size:52
Introending_ImageTable = 0x80087990; // type:u8 size:52
Introending_OverylayList = 0x800879C4; // type:u8 size:22
CinematicTable_Ending = 0x800879DC; // type:u8 size:20
CinematicTable_Debug = 0x800879F0; // type:u8 size:20
CinematicTable = 0x80087A04; // type:u8 size:32
AITable = 0x80087A24; // type:u8 size:736
BootsSpawn = 0x80087D04; // type:u8 size:36
BootsBlinkTable = 0x80087D28; // type:u8 size:48
WorldActorPoolList = 0x80087D58; // type:u8 size:120
TestAnimData = 0x80087DD0; // type:u8 size:110
CameraNames = 0x80087E40; // type:u8 size:156
CameraWBNamesText = 0x80087EDC; // type:u8 size:12
StaticPressureTrigger = 0x80087EE8; // type:u8 size:40
timerplay = 0x80087F10; // type:u8 size:128
AudAttackSpawn = 0x80087F90; // type:u8 size:36
ProjectileSpawn = 0x80087FB4; // type:u8 size:72
AttachSpawn = 0x80087FFC; // type:u8 size:36
LocalStateTable = 0x80088020; // type:u8 size:32
gDBInsideColor = 0x80088244; // type:u8 size:12
gDBBorderColor = 0x80088250; // type:u8 size:12
gCDCallback = 0x8008825C; // type:u8 size:40
tracksarray = 0x80088284; // type:u8 size:8
gTextCurrentTextColor = 0x8008828C; // type:u8 size:12
LoadingScreens = 0x80088298; // type:u8 size:24
XAStateString = 0x800882B0; // type:u8 size:68
_TIM_CARD = 0x80088508;
sMcgui = 0x800886B4;
_ctype_ = 0x8008CA64;
CD_cbread = 0x8008CB04;
CD_read_dma_mode = 0x8008CB08;
debug_cause = 0x8008CBDC;
CD_cbsync = 0x8008CBEC;
CD_cbready = 0x8008CBF0;
CD_debug = 0x8008CBF4;
CD_status = 0x8008CBF8;
CD_status1 = 0x8008CBFC;
CD_nopen = 0x8008CC00;
CD_pos = 0x8008CC04;
CD_mode = 0x8008CC08;
CD_com = 0x8008CC09;
DS_active = 0x8008CC0C;
CD_comstr = 0x8008CC10;
CD_intstr = 0x8008CC90;
Hcount = 0x8008D014;
Vcount = 0x8008E144;
GPU_printf = 0x8008E1E0;
GEnv = 0x8008E1E4;
_qin = 0x8008E30C;
_qout = 0x8008E310;
rsin_tbl = 0x8008E344;
SQRT = 0x8008EB64;
rcossin_tbl = 0x8008F194;
ratan_tbl = 0x80093194;
_spu_EVdma = 0x80093B5C;
_spu_keystat = 0x80093B60;
_spu_trans_mode = 0x80093B64;
_spu_rev_flag = 0x80093B68;
_spu_rev_reserve_wa = 0x80093B6C;
_spu_rev_offsetaddr = 0x80093B70;
_spu_rev_attr = 0x80093B74;
_spu_RQvoice = 0x80093B88;
_spu_RQmask = 0x80093B8C;
_spu_voice_centerNote = 0x80093B90;
_spu_env = 0x80093BC0;
_spu_isCalled = 0x80093BC4;
_spu_RXX = 0x80093BD4;
_spu_tsa = 0x80093BEC;
_spu_transMode = 0x80093BF0;
_spu_addrMode = 0x80093BF4;
_spu_mem_mode = 0x80093BF8;
_spu_mem_mode_plus = 0x80093BFC;
_spu_mem_mode_unit = 0x80093C00;
_spu_mem_mode_unitM = 0x80093C04;
_spu_inTransfer = 0x80093C08;
_spu_transferCallback = 0x80093C0C;
_spu_IRQCallback = 0x80093C10;
_spu_AllocBlockNum = 0x80093C34;
_spu_AllocLastNum = 0x80093C38;
_spu_memList = 0x80093C3C;
_spu_zerobuf = 0x80093C44;
_spu_rev_startaddr = 0x80094164;
_padFuncNextPort = 0x800941BC;
_padFuncClrInfo = 0x800941C0;
_padFuncGetTxd = 0x800941C4;
_padFuncCurrLimit = 0x800941C8;
_padFuncPtr2Port = 0x800941CC;
_padFuncPort2Info = 0x800941D0;
_padFuncSendAuto = 0x800941D4;
_padFuncChkEng = 0x800941D8;
_padFuncRecvAuto = 0x800941DC;
_padFuncClrCmdNo = 0x800941E0;
_padFuncIntGun = 0x800941E4;
_padFuncSetGunPort = 0x800941E8;
_padFuncGetGunPos = 0x800941EC;
_padInfoDir = 0x800941F0;
_padIntExec = 0x800941F4;
_padGunExec = 0x800941F8;
_padSioChan = 0x800941FC;
_padSioState = 0x80094200;
_padTotalCurr = 0x80094204;
_padModeMtap = 0x80094208;
_padChanStart = 0x8009420C;
_padChanStop = 0x80094210;
_padFixResult = 0x80094214;
_padVsyncParam = 0x8009421C;
_padCalledIntPad = 0x8009422C;
// SDATA SYMBOLS
PATCH_WALK_SPEED = 0x80094264; // type:s32
PATCH_RUN_SPEED = 0x80094268; // type:s32
PATCH_JUMP_FORCE = 0x8009426C; // type:s32
SKATE_SPEED = 0x80094270; // type:s32
TESTDISTWALK = 0x80094274; // type:s32
TESTDISTRUN = 0x80094278; // type:s32
MINJUMPWALK = 0x8009427C; // type:s32
MINJUMPRUN = 0x80094280; // type:s32
UpdateETHSV = 0x80094284; // type:s32
TheIdleAnim = 0x80094288; // type:s32
Game_Health = 0x8009428C; // type:s32
Game_Lives = 0x80094290; // type:s32
ET_FlashState = 0x80094294; // type:s32
ET_FlashCount = 0x80094298; // type:s32
ET_FlashCountMax = 0x8009429C; // type:s32
ET_InvincibleCount = 0x800942A0; // type:s32
ET_InvincibleCountMax = 0x800942A4; // type:s32
DoraWaitState = 0x800942A8; // type:s32
PLAYER_WAIT_FLAG = 0x800942AC; // type:s32
HealFlag = 0x800942B0; // type:s32
RollTimer = 0x800942B4; // type:s32
RollContinue = 0x800942B8; // type:s32
RollFlag = 0x800942BC; // type:s32
SlideFlag = 0x800942C0; // type:s32
DiggingFlag = 0x800942C4; // type:s32
SkateFlag = 0x800942C8; // type:s32
DebugPauseMenuCount = 0x800942CC; // type:s32
eggETdir = 0x800942D0; // type:s32
gETEndLevel = 0x800942D4; // type:s32
TeleportTimer = 0x800942D8; // type:s32
DoraExpressionFile = 0x800942DC; // type:u8 size:4
DoraSkatesFile = 0x800942E0; // type:u8 size:4
DoraEyeFrame = 0x800942E4; // type:s32
DoraEyeTimer = 0x800942E8; // type:s32
BootsAndDoraRidingFlag = 0x800942EC; // type:s32
BootsAndDoraRidingDepth = 0x800942F0; // type:s32
BoatActorPtr = 0x800942F4; // type:u8 size:4
BoatParentActorPtr = 0x800942F8; // type:u8 size:4
TEMPXOFF = 0x800942FC; // type:s32
TEMPYOFF = 0x80094300; // type:s32
TEMPZOFF = 0x80094304; // type:s32
eggfingerjoint = 0x80094308; // type:s32
eggfingersize = 0x8009430C; // type:s32
TESTHEALMINSIZE = 0x80094310; // type:s32
TESTSHADOWOFFSET = 0x80094314; // type:s32
DIRMIN = 0x80094318; // type:s32
DIRMAX = 0x8009431C; // type:s32
NEWSIZE = 0x80094320; // type:s32
DIRSPD = 0x80094324; // type:s32
TESTSPEEDMULT = 0x80094328; // type:s32
TESTSPEEDDIV = 0x8009432C; // type:s32
SPEED_DIV = 0x80094330; // type:s32
TSTMULT = 0x80094334; // type:s32
TESTSLIDESPEED = 0x80094338; // type:s32
InventoryDropTimer = 0x80094340; // type:s32
ScrollR = 0x80094344; // type:s32
ScrollCamXPos = 0x80094348; // type:s32
ScrollCamYPos = 0x8009434C; // type:s32
ScrollCamZPos = 0x80094350; // type:s32
OldScrollCamXPos = 0x80094354; // type:s32
OldScrollCamYPos = 0x80094358; // type:s32
OldScrollCamZPos = 0x8009435C; // type:s32
MIND = 0x80094360; // type:s32
MINDIV = 0x80094364; // type:s32
CheckIdle = 0x80094368; // type:s32
egglevy = 0x8009436C; // type:s32
KLUDGEY = 0x80094370; // type:s32
CamXOffset = 0x80094374; // type:s32
CamZOffset = 0x80094378; // type:s32
CamYOffset = 0x8009437C; // type:s32
MainETTimer = 0x80094380; // type:s32
ETON = 0x80094384; // type:s32
HeartStunFlag = 0x80094388; // type:s32
HSTIMER = 0x8009438C; // type:s32
BOUNCESPEED = 0x80094390; // type:s32
PatchOldXSpeed = 0x80094394; // type:s32
PatchOldZSpeed = 0x80094398; // type:s32
debug_physics = 0x8009439C; // type:s32
PATCH_SPEED_MAG = 0x800943A0; // type:s32
eggfudge = 0x800943A4; // type:s32
eggendride = 0x800943A8; // type:s32
_stacksize = 0x800943AC; // type:u32
_ramsize = 0x800943B0; // type:u32
g_sizeofmeshidtable = 0x8009449C; // type:s32
NumActivePickupPool = 0x800944A0; // type:s32
NumExtraPickupList = 0x800944A4; // type:s32
P1 = 0x800944AC; // type:s32
P2 = 0x800944B0; // type:s32
LEAVEPICKUP_YDIST = 0x800944B4; // type:s32
LEAVEPICKUP_ZDIST = 0x800944B8; // type:s32
TESTSPEEDY = 0x800944BC; // type:s32
TESTSPIN = 0x800944C0; // type:s32
HUD_Health = 0x80094604; // type:s32
HUD_Lives = 0x80094608; // type:s32
HUDState = 0x8009460C; // type:s32
HudYOffset = 0x80094610; // type:s32
HudTimer = 0x80094614; // type:s32
StarsTextX = 0x80094618; // type:s32
StarsX = 0x8009461C; // type:s32
StarsY = 0x80094620; // type:s32
Puzzle1X = 0x80094624; // type:s32
Puzzle1Y = 0x80094628; // type:s32
Puzzle2X = 0x8009462C; // type:s32
Puzzle2Y = 0x80094630; // type:s32
Puzzle3X = 0x80094634; // type:s32
Puzzle3Y = 0x80094638; // type:s32
SteakTextX = 0x8009463C; // type:s32
SteakX = 0x80094640; // type:s32
CrateTextX = 0x80094644; // type:s32
CrateX = 0x80094648; // type:s32
LivesTextX = 0x8009464C; // type:s32
LifeX = 0x80094650; // type:s32
LifeY = 0x80094654; // type:s32
CrateY = 0x80094658; // type:s32
SteakY = 0x8009465C; // type:s32
MYVAL = 0x80094660; // type:s32
testredval = 0x80094664; // type:s32
TESTXP = 0x80094668; // type:s32
TESTYP = 0x8009466C; // type:s32
TESTFP = 0x80094670; // type:s32
TESTFP2 = 0x80094674; // type:s32
TESTSP = 0x80094678; // type:s32
tempvram = 0x8009467C; // type:s32
FCX = 0x80094680; // type:s32
FCY = 0x80094684; // type:s32
FCZ = 0x80094688; // type:s32
CCY = 0x8009468C; // type:s32
LivesAnimate = 0x80094690; // type:s32
PlantAnimate = 0x80094694; // type:s32
Health1Animate = 0x80094698; // type:s32
Health2Animate = 0x8009469C; // type:s32
Health3Animate = 0x800946A0; // type:s32
Health4Animate = 0x800946A4; // type:s32
Health5Animate = 0x800946A8; // type:s32
HEALTH_SPIN_TIME = 0x800946AC; // type:s32
LIVES_SPIN_TIME = 0x800946B0; // type:s32
PLANT_ANIM_TIME = 0x800946B4; // type:s32
HudOnScreenTimer = 0x800946B8; // type:s32
HudUpdateTimerReset = 0x800946BC; // type:s32
HUDUpdateTimer = 0x800946C0; // type:s32
NumInventoryActors = 0x800946C4; // type:s32
SelectedInventoryActor = 0x800946C8; // type:u8 size:4
exr = 0x800946CC; // type:s32
eyr = 0x800946D0; // type:s32
ezr = 0x800946D4; // type:s32
clearcamera = 0x800946D8; // type:s32
htx = 0x800946DC; // type:s32
hty = 0x800946E0; // type:s32
htz = 0x800946E4; // type:s32
ltx = 0x800946E8; // type:s32
lty = 0x800946EC; // type:s32
ltz = 0x800946F0; // type:s32
PlantX = 0x800946F4; // type:s32
PlantY = 0x800946F8; // type:s32
PlantZ = 0x800946FC; // type:s32
LivesX = 0x80094700; // type:s32
LivesY = 0x80094704; // type:s32
LivesZ = 0x80094708; // type:s32
HealthX = 0x8009470C; // type:s32
HealthY = 0x80094710; // type:s32
HealthZ = 0x80094714; // type:s32
HealthD = 0x80094718; // type:s32
HealthTX = 0x8009471C; // type:s32
HealthTY = 0x80094720; // type:s32
HealthTZ = 0x80094724; // type:s32
HealthTX2 = 0x80094728; // type:s32
HealthTY2 = 0x8009472C; // type:s32
HealthTZ2 = 0x80094730; // type:s32
HealthTX3 = 0x80094734; // type:s32
HealthTY3 = 0x80094738; // type:s32
HealthTZ3 = 0x8009473C; // type:s32
InventoryActorX = 0x80094740; // type:s32
InventoryActorY = 0x80094744; // type:s32
InventoryActorZ = 0x80094748; // type:s32
LivesTX = 0x8009474C; // type:s32
LivesTY = 0x80094750; // type:s32
LivesTZ = 0x80094754; // type:s32
PlantTX = 0x80094758; // type:s32
PlantTY = 0x8009475C; // type:s32
PlantTZ = 0x80094760; // type:s32
HUDMINY = 0x80094764; // type:s32
SpinFrame = 0x80094768; // type:s32
INVENTORYOFFSET = 0x8009476C; // type:s32
ghudr = 0x80094770; // type:s32
ghudg = 0x80094774; // type:s32
ghudb = 0x80094778; // type:s32
phudr = 0x8009477C; // type:s32
phudg = 0x80094780; // type:s32
phudb = 0x80094784; // type:s32
yhudr = 0x80094788; // type:s32
yhudg = 0x8009478C; // type:s32
yhudb = 0x80094790; // type:s32
EndOfLevelTimer = 0x80094798; // type:s32
EndMovieFlag = 0x8009479C; // type:s32
LevelNumStarsCollected = 0x800947A0; // type:s32
LevelNumReleaseActorsCollected = 0x800947A4; // type:s32
LevelNumStarsMax = 0x800947A8; // type:s32
BonusTimer = 0x800947AC; // type:s32
tempoffset = 0x800947B0; // type:s32
TESTENVCOLLISIONWIDTH = 0x800947B4; // type:s32
TESTSHADOWSIZE = 0x800947B8; // type:s32
TESTABILITYPROXIMITY = 0x800947BC; // type:s32
TESTBODYPROXIMITY = 0x800947C0; // type:s32
TESTDEPTHXOFF = 0x800947C4; // type:s32
TESTDEPTHZOFF = 0x800947C8; // type:s32
TESTDEPTHYOFF = 0x800947CC; // type:s32
LAST_MESH = 0x800948D0; // type:s32
NewsPaperGlobalType = 0x80094928; // type:s32
ScreenGrabFade = 0x8009492C; // type:s32
newspaperrow = 0x80094930; // type:s32
NewsPaperPauseFlag = 0x80094934; // type:s32
NewsPaperAngle = 0x80094938; // type:s32
DrawScreenGrabFlag = 0x8009493C; // type:s32
NEWSPAPER_SPIN_SPEED = 0x80094940; // type:s32
PaperScaleInc = 0x80094944; // type:s32
PaperScaleMin = 0x80094948; // type:s32
PaperScaleMid = 0x8009494C; // type:s32
PaperScaleMax = 0x80094950; // type:s32
PaperScaleDiv = 0x80094954; // type:s32
ScalePaper = 0x80094958; // type:s32
PaperWaitTimer = 0x8009495C; // type:s32
PaperState = 0x80094960; // type:s32
BENOTESTZ = 0x80094964; // type:s32
XROFFSET = 0x80094968; // type:s32
YROFFSET = 0x8009496C; // type:s32
FADEON = 0x80094970; // type:s32
FADETYPE = 0x80094974; // type:s32
waitforsemitrans = 0x80094978; // type:s32
MAXWAIT = 0x8009497C; // type:s32
FADE_SPEED = 0x80094980; // type:s32
START_FADE = 0x80094984; // type:s32
SCG_CREDITS = 0x80094988; // type:s32
SliderStartX = 0x8009498C; // type:s32
SliderStartY = 0x80094990; // type:s32
SliderWidth = 0x80094994; // type:s32
SliderHeight = 0x80094998; // type:s32
MusicVolume = 0x8009499C; // type:s32
EffectsVolume = 0x800949A0; // type:s32
PreviousMainMenuState = 0x800949A4; // type:s32
MainMenuState = 0x800949A8; // type:s32
MainMenuSelection = 0x800949AC; // type:s32
gMenuRumbleFlag = 0x800949C4; // type:s32
ShownTitleScreen = 0x800949C8; // type:s32
HundredLivesCheat = 0x800949CC; // type:s32
hundredlivescheatcount = 0x800949D0; // type:s32
creditscheatcount = 0x800949D4; // type:s32
LevelCheat = 0x800949D8; // type:s32
levelcheatcount = 0x800949DC; // type:s32
HLR = 0x800949E0; // type:s16
HLG = 0x800949E1; // type:s16
HLB = 0x800949E2; // type:s16
gJoypadPreset = 0x800949E4; // type:s32
gmenuworld = 0x800949E8; // type:s32
gmenulevel = 0x800949EC; // type:s32
gmemcardload = 0x800949F0; // type:s32
levelexists = 0x800949F4; // type:s32
MENUSTARTYPOS = 0x800949F8; // type:s32
RedBookTrack = 0x800949FC; // type:s32
LevelLoaded = 0x80094A00; // type:s32
oldgWorld = 0x80094A04; // type:u8 size:4
oldgLevel = 0x80094A08; // type:s32
golddemoworldindex = 0x80094A0C; // type:s32
viber = 0x80094A10; // type:s32
wtime = 0x80094A14; // type:s32
paddelay0 = 0x80094A18; // type:s32
paddelay1 = 0x80094A1C; // type:s32
TEMPX = 0x80094A24; // type:s32
MENU_TRIANGLE_XOFFSET = 0x80094A28; // type:s32
MENU_TRIANGLE_YOFFSET = 0x80094A2C; // type:s32
MENU_TRIANGLE_X = 0x80094A30; // type:s32
MENU_TRIANGLE_Y = 0x80094A34; // type:s32
CREDITSSTARTY = 0x80094A60; // type:s32
CreditsOffset = 0x80094A64; // type:s32
CreditsTimer = 0x80094A68; // type:s32
CreditsTimerMax = 0x80094A6C; // type:s32
TESTGRAVITY = 0x80094A84; // type:s32
AMIN = 0x80094A88; // type:s32
AMAX = 0x80094A8C; // type:s32
BMIN = 0x80094A90; // type:s32
BMAX = 0x80094A94; // type:s32
R = 0x80094A98; // type:s32
S = 0x80094A9C; // type:s32
T = 0x80094AA0; // type:s32
RainTimer = 0x80094AA4; // type:s32
MaxRainTimer = 0x80094AA8; // type:s32
RecordModeIndex = 0x80094AAC; // type:s32
RemainingMemory = 0x80094AB0; // type:s32
FreezeGame = 0x80094AB4; // type:s32
WIPESPEED = 0x80094AB8; // type:s32
LevelCompletionFlag = 0x80094ABC; // type:s32
gdebug_celsize = 0x80094AC0; // type:s32
gdebug_mapsize = 0x80094AC4; // type:s32
gdebug_actorpoolsize = 0x80094AC8; // type:s32
gdebug_staticactorsize = 0x80094ACC; // type:s32
gEndGameOvertimer = 0x80094AD0; // type:s32
pausewaitforallquedeone = 0x80094AD4; // type:s32
PauseFlag = 0x80094AD8; // type:s32
NoMemcard = 0x80094ADC; // type:u16
gGameFrameCount = 0x80094AE0; // type:u32
smallcam_counter = 0x80094AE4; // type:s32
reload = 0x80094AE8; // type:s32
BEGOODTIMER = 0x80094AEC; // type:s32
FaderFlag = 0x80094AF0; // type:s32
FaderTimer = 0x80094AF4; // type:s32
FaderTimerSpeed = 0x80094AF8; // type:s32
eggfpsx = 0x80094B00; // type:s32
eggfpsy = 0x80094B04; // type:s32
eggfpsw = 0x80094B08; // type:s32
eggfpsh = 0x80094B0C; // type:s32
DisplayLetterman = 0x80094B10; // type:s32
eggdrawplayer = 0x80094B14; // type:s32
eggdrawshadow = 0x80094B18; // type:s32
eggdrawfonts = 0x80094B1C; // type:s32
eggnum = 0x80094B20; // type:s32
cpfram = 0x80094B24; // type:s32
TCELL = 0x80094B28; // type:s32
TH1 = 0x80094B2C; // type:s32
TH2 = 0x80094B30; // type:s32
TH3 = 0x80094B34; // type:s32
TH4 = 0x80094B38; // type:s32
eggdumpheap = 0x80094B3C; // type:s32
BeamUpTimer = 0x80094B40; // type:s32
BeamUpTimerMax = 0x80094B44; // type:s32
BEAMUPMAX = 0x80094B48; // type:s32
BEAMWIPEMAX = 0x80094B4C; // type:s32
BEAMDOWNMAX = 0x80094B50; // type:s32
BeamTimer = 0x80094B54; // type:s32
DISSOLVESTATE = 0x80094B58; // type:s32
debug_videomodechange = 0x80094B5C; // type:s32
DebugPlayerCoords = 0x80094B60; // type:s32
ClearSortNTagFlag = 0x80094B64; // type:s32
EditWaterFlag = 0x80094B6C; // type:s32
WaterWireFlag = 0x80094B70; // type:s32
WaterTransType = 0x80094B74; // type:s32
ChangeWaterTransType = 0x80094B78; // type:s32
WaterTextureSelectionCounter = 0x80094B7C; // type:s32
WaterTextureSelection = 0x80094B80; // type:s32
WaterMenuSelection = 0x80094B84; // type:s32
WaterR = 0x80094B88; // type:s32
WaterG = 0x80094B8C; // type:s32
WaterB = 0x80094B90; // type:s32
WaterSpeed = 0x80094B94; // type:s32
DrawWaterEffectFlag = 0x80094BA0; // type:s32
eggdrawactor = 0x80094BA4; // type:s32
PausePositionOption = 0x80094BA8; // type:s32
Pkerning = 0x80094BAC; // type:s32
PauseMenuOption = 0x80094BB0; // type:u8 size:4
PauseMenuPrevOption = 0x80094BB4; // type:u8 size:4
YNOption = 0x80094BB8; // type:s32
pbw = 0x80094BBC; // type:s32
pbh = 0x80094BC0; // type:s32
pby = 0x80094BC4; // type:s32
cobw = 0x80094BC8; // type:s32
cobh = 0x80094BCC; // type:s32
coby = 0x80094BD0; // type:s32
cob_col1_x = 0x80094BD4; // type:s32
cob_col2_x = 0x80094BD8; // type:s32
cob_row1_y = 0x80094BDC; // type:s32
cob_y_spacing = 0x80094BE0; // type:s32
eggsndy = 0x80094BE4; // type:s32
OneShot = 0x80094BE8; // type:s32
SoundBank = 0x80094BEC; // type:s32
BootsExpressionFile = 0x80094C34; // type:u8 size:4
BootsEyeFrame = 0x80094C38; // type:s32
BootsEyeTimer = 0x80094C3C; // type:s32
BootsAnims1 = 0x80094C40; // type:s32
BootsAnims2 = 0x80094C44; // type:s32
BootsAnims3 = 0x80094C48; // type:s32
BootsSkateStatus = 0x80094C4C; // type:s32
BootsSlideFlag = 0x80094C50; // type:s32
BootsENVCollisionDist = 0x80094C54; // type:s32
SwiperWaitState = 0x80094C58; // type:s32
SwiperTraining = 0x80094C5C; // type:s32
SwiperTimer = 0x80094C60; // type:s32
eggtimer = 0x80094C64; // type:s32
DefaultSeq = 0x80094C68; // type:s32
STARTJOINT = 0x80094C6C; // type:s32
ENDJOINT = 0x80094C70; // type:s32
STARTJOINT2 = 0x80094C74; // type:s32
ENDJOINT2 = 0x80094C78; // type:s32
BENOTESTY = 0x80094C7C; // type:s16
TCAMX = 0x80094C7E; // type:s16
TCAMY = 0x80094C80; // type:s16
TCAMZ = 0x80094C82; // type:s16
SPINY = 0x80094C84; // type:s32
SPINDIST = 0x80094C88; // type:s32
TESTFAMY = 0x80094C8C; // type:s32
CameraCycle = 0x80094C90; // type:s32
Nemo_Cam_1_Locale = 0x80094C94; // type:s32
Nemo_Cam_1_Altitude = 0x80094C98; // type:s32
Nemo_Cam_1_DistanceOffset = 0x80094C9C; // type:s32
Nemo_Cam_1_TargetXOff = 0x80094CA0; // type:s32
Nemo_Cam_1_TargetYOff = 0x80094CA4; // type:s32
Nemo_Cam_1_TargetZOff = 0x80094CA8; // type:s32
currentcamerasetting = 0x80094CAC; // type:s32
CurrentCameraEnum = 0x80094CB0; // type:u8 size:4
PreviousCameraEnum = 0x80094CB4; // type:u8 size:4
tt_bestview = 0x80094CB8; // type:s16
ta_bestview = 0x80094CBA; // type:s16
di_bestview = 0x80094CBC; // type:s16
fp_offset = 0x80094CBE; // type:s16
ActivePauseCamera = 0x80094CC0; // type:s32
rCUR_BESTVIEW = 0x80094CC4; // type:s32
playerdist = 0x80094CC8; // type:s32
eggcamalt = 0x80094CDC; // type:s32
eggcamlocale = 0x80094CE0; // type:s32
eggtrackcamx = 0x80094CE4; // type:s32
eggtrackcamy = 0x80094CE8; // type:s32
eggtrackcamz = 0x80094CEC; // type:s32
egg_minscrollock_x = 0x80094CF0; // type:u32
egg_minscrollock_z = 0x80094CF4; // type:u32
eggcamdist = 0x80094CF8; // type:s32
EggCameraEditMode = 0x80094CFC; // type:s32
lo_vpx = 0x80094D00; // type:s32
lo_vpy = 0x80094D04; // type:s32
lo_vpz = 0x80094D08; // type:s32
lo_vrx = 0x80094D0C; // type:s32
lo_vry = 0x80094D10; // type:s32
lo_vrz = 0x80094D14; // type:s32
hi_vpx = 0x80094D18; // type:s32
hi_vpy = 0x80094D1C; // type:s32
hi_vpz = 0x80094D20; // type:s32
hi_vrx = 0x80094D24; // type:s32
hi_vry = 0x80094D28; // type:s32
hi_vrz = 0x80094D2C; // type:s32
MAX_CAMERA_X = 0x80094D30; // type:s32
MAX_CAMERA_Y = 0x80094D34; // type:s32
MAX_CAMERA_Z = 0x80094D38; // type:s32
MINCAM1X = 0x80094D3C; // type:s32
MAXCAM1X = 0x80094D40; // type:s32
MINCAM1Z = 0x80094D44; // type:s32
MAXCAM1Z = 0x80094D48; // type:s32
MINCAM2X = 0x80094D4C; // type:s32
MAXCAM2X = 0x80094D50; // type:s32
MINCAM2Z = 0x80094D54; // type:s32
MAXCAM2Z = 0x80094D58; // type:s32
MINCAM3X = 0x80094D5C; // type:s32
MAXCAM3X = 0x80094D60; // type:s32
MINCAM3Z = 0x80094D64; // type:s32
MAXCAM3Z = 0x80094D68; // type:s32
MINCAM4X = 0x80094D6C; // type:s32
MAXCAM4X = 0x80094D70; // type:s32
MINCAM4Z = 0x80094D74; // type:s32
MAXCAM4Z = 0x80094D78; // type:s32
TESTCAM1_SCROLLR = 0x80094D7C; // type:s32
TESTCAM2_SCROLLR = 0x80094D80; // type:s32
TESTCAM3_SCROLLR = 0x80094D84; // type:s32
TESTCAM4_SCROLLR = 0x80094D88; // type:s32
TESTCAM5_SCROLLR = 0x80094D8C; // type:s32
TESTCAM1_A = 0x80094D90; // type:s32
TESTCAM2_A = 0x80094D94; // type:s32
TESTCAM3_A = 0x80094D98; // type:s32
TESTCAM4_A = 0x80094D9C; // type:s32
TESTCAM5_A = 0x80094DA0; // type:s32
TESTCAM1_D = 0x80094DA4; // type:s32
TESTCAM2_D = 0x80094DA8; // type:s32
TESTCAM3_D = 0x80094DAC; // type:s32
TESTCAM4_D = 0x80094DB0; // type:s32
TESTCAM5_D = 0x80094DB4; // type:s32
C5Locale = 0x80094DB8; // type:s32
C5Dist = 0x80094DBC; // type:s32
C5A = 0x80094DC0; // type:s32
C5TOX = 0x80094DC4; // type:s32
C5TOY = 0x80094DC8; // type:s32
C5TOZ = 0x80094DCC; // type:s32
BEAM_AGGRESIVE = 0x80094DD0; // type:s32
ForceBeamCam = 0x80094DD4; // type:s32
CameraMenuSelection = 0x80094DD8; // type:s32
EditCameraFlag = 0x80094DDC; // type:s32
CameraSelection = 0x80094DE0; // type:s32
MoveVec = 0x80094DE4; // type:u8 size:8
gShake = 0x80094DEC; // type:u16
cd_distance = 0x80094DF0; // type:s32
cd_altitude = 0x80094DF4; // type:s32
cd_locale = 0x80094DF8; // type:u16
egg_gcamx = 0x80094DFC; // type:s32
egg_gcamy = 0x80094E00; // type:s32
egg_gcamz = 0x80094E04; // type:s32
GRAVITY = 0x80094E08; // type:s32
ACTUALCURRENTY = 0x80094E0C; // type:s32
TV1 = 0x80094E10; // type:s32
TV2 = 0x80094E14; // type:s32
TV3 = 0x80094E18; // type:s32
TV4 = 0x80094E1C; // type:s32
TWEAKY = 0x80094E20; // type:s32
SLIDE_ADD_VALUE = 0x80094E24; // type:s32
SLIDE_DEC_VALUE = 0x80094E28; // type:s32
NORMAL_DEC_VALUE = 0x80094E2C; // type:s32
TWEAKFRICTION = 0x80094E30; // type:s32
debugslope = 0x80094E44; // type:s32
TX1 = 0x80094E48; // type:s32
TX2 = 0x80094E4C; // type:s32
TX3 = 0x80094E50; // type:s32
TX4 = 0x80094E54; // type:s32
TESTH1 = 0x80094E58; // type:s32
TESTH2 = 0x80094E5C; // type:s32
TESTH3 = 0x80094E60; // type:s32
TESTH4 = 0x80094E64; // type:s32
TESTVAR = 0x80094E68; // type:s32
TWEAK_FRICTION_DIV = 0x80094E6C; // type:s32
twk_last_jpad_frame = 0x80094E70; // type:s32
OnSpringBoard = 0x80094E74; // type:s32
ActorInfoDisplayFlagENV = 0x80094E78; // type:s32
TESTFO = 0x80094E7C; // type:s32
DEFAULT_MAX_SPEED = 0x80094E80; // type:s32
numstaticpressuretriggers = 0x80094E84; // type:s32
gw1section1plants = 0x80094E88; // type:s32
gw1section2plants = 0x80094E8C; // type:s32
gw1section3plants = 0x80094E90; // type:s32
gw1section4clover = 0x80094E94; // type:s32
NumCameraTriggers = 0x80094E98; // type:s32
CineFileLoaded = 0x80094E9C; // type:s32
Cinematic_Flag = 0x80094EA0; // type:s32
Cinematic_OverylayIndex = 0x80094EA4; // type:s32
Cinematic_ParaOffset = 0x80094EA8; // type:s32
Cinematic_Timer = 0x80094EAC; // type:s32
Cinematic_TimerMax = 0x80094EB0; // type:s32
CinematicDisplayButton = 0x80094EB4; // type:s32
TEST_LANG = 0x80094EB8; // type:s32
TEST_PARAINDEX = 0x80094EBC; // type:s32
CinematicDisplayUpdateCount = 0x80094EC0; // type:s32
ScreenGrabFadeIn = 0x80094EC4; // type:s32
ScreenGrabFadeOut = 0x80094EC8; // type:s32
ScreenGrabFadeVal = 0x80094ECC; // type:s32
RequestSnapShot = 0x80094ED0; // type:s32
BGImageFLagReady = 0x80094ED4; // type:s32
CINE_Y1_OFFSET = 0x80094ED8; // type:s32
CINE_Y2_OFFSET = 0x80094EDC; // type:s32
CINE_Y3_OFFSET = 0x80094EE0; // type:s32
CINE_Y4_OFFSET = 0x80094EE4; // type:s32
CROSS_X = 0x80094EE8; // type:s32
CROSS_Y = 0x80094EEC; // type:s32
CinematicEndLevel = 0x80094EF0; // type:s32
CinematicIndex = 0x80094EF4; // type:s32
WaitForFadeOut = 0x80094EF8; // type:s32
IntroCineFirstTimeFlag = 0x80094EFC; // type:s32
ACTORS_ON = 0x80094F00; // type:s32
NumSpawnedActors = 0x80094F04; // type:s32
KEY_PROXIMITY_TOLERANCE = 0x80094F08; // type:s32
TESTR1 = 0x80094F0C; // type:s32
TESTR2 = 0x80094F10; // type:s32
TESTR3 = 0x80094F14; // type:s32
resetspawn = 0x80094F18; // type:s32
benodbug = 0x80094F1C; // type:s32
BENOSPAWN = 0x80094F20; // type:s32
TKSelectedActor = 0x80094F24; // type:u8 size:4
TKRiseOffset = 0x80094F28; // type:s32
TKSelectedActorFlag = 0x80094F2C; // type:s32
TESTTKSIZE = 0x80094F30; // type:s32
TKCursorMoveCount = 0x80094F34; // type:s32
TKCursorMoveCountMax = 0x80094F38; // type:s32
TKSaveY = 0x80094F3C; // type:s32
TKCycleAngle = 0x80094F40; // type:s32
TKCycleSpeed = 0x80094F44; // type:s32
TK_HOVER_Y_DISTANCE = 0x80094F48; // type:s32
TK_STARTING_DIST = 0x80094F4C; // type:s32
AUD_ATTACK_BRAIN_TIMER = 0x80094F50; // type:s32
AUD_ATTACK_BRAIN_TIMER2 = 0x80094F54; // type:s32
AudAttackMax = 0x80094F58; // type:s32
AudAttackRepeatRate = 0x80094F5C; // type:s32
AudAttackStartSize = 0x80094F60; // type:s32
AudAttackStartScale = 0x80094F64; // type:s32
AudAttackMaxScale = 0x80094F68; // type:s32
AudAttackScaleInc = 0x80094F6C; // type:s32
AUD_ATTACK_INITAL_SPEED = 0x80094F70; // type:s32
AUD_ATTACK_INITAL_SPEED2 = 0x80094F74; // type:s32
eggpathdist = 0x80094F78; // type:s32
eggyup = 0x80094F7C; // type:s32
eggangleadd = 0x80094F80; // type:s32
eggstop = 0x80094F84; // type:s32
egghop = 0x80094F88; // type:s32
egghoptime = 0x80094F8C; // type:s32
eggfalltime = 0x80094F90; // type:s32
egghedgebase = 0x80094F94; // type:s32
egghedgerandom = 0x80094F98; // type:s32
scurryframe = 0x80094F9C; // type:s32
nibbleframe = 0x80094FA0; // type:s32
projectileparent_instance_counter = 0x80094FA4; // type:s32
projxoff = 0x80094FA8; // type:s32
projyoff = 0x80094FAC; // type:s32
projzoff = 0x80094FB0; // type:s32
projframeoff = 0x80094FB4; // type:s32
eggtestangle = 0x80094FB8; // type:s32
egglob = 0x80094FBC; // type:s32
egglobspeed = 0x80094FC0; // type:s32
eggprojfire = 0x80094FC4; // type:s32
eggprojsize = 0x80094FC8; // type:s32
eggprojdepth = 0x80094FCC; // type:s32
BrainBombStartSize = 0x80094FD0; // type:s32
BrainBombStartScale = 0x80094FD4; // type:s32
BrainBombMaxScale = 0x80094FD8; // type:s32
BrainBombScaleInc = 0x80094FDC; // type:s32
BOMBTIMER = 0x80094FE0; // type:s32
eggtrackerhitdist = 0x80094FE4; // type:s32
eggang = 0x80094FE8; // type:s32
hh_instance_counter = 0x80094FEC; // type:s32
eggradius = 0x80094FF0; // type:s32
vehiclescrollresetradius = 0x80094FF4; // type:s32
drawvehiclemodel = 0x80094FF8; // type:s32
eggmindist = 0x80094FFC; // type:s32
eggacc = 0x80095000; // type:s32
eggdcc = 0x80095004; // type:s32
eggminspeed = 0x80095008; // type:s32
halting = 0x8009500C; // type:s32
GENERIC_ACC = 0x80095010; // type:s32
GENERIC_INITIAL_RUN = 0x80095014; // type:s32
GENERIC_DACC = 0x80095018; // type:s32
g_friendlylost = 0x8009501C; // type:s32
glookat = 0x80095020; // type:s32
benolob = 0x80095024; // type:s32
benolobspeed = 0x80095028; // type:s32
debugmaxfirstprim = 0x8009502C; // type:s32
debugmaxlastprim = 0x80095030; // type:s32
debugmaxntagsize = 0x80095034; // type:s32
debugfirstprim = 0x80095038; // type:s32
debuglastprim = 0x8009503C; // type:s32
debugntagsize = 0x80095040; // type:s32
TESTSEMITRANS = 0x80095044; // type:s32
DebugAlignedTexture = 0x80095058; // type:s32
GlobalSemiTrans = 0x8009505C; // type:s32
Global_TPage1 = 0x80095060; // type:s32
Global_TPage2 = 0x80095064; // type:s32
TPageAlign = 0x80095068; // type:s32
CellAttributesPtr = 0x8009506C; // type:u8 size:4
EditLevelState = 0x80095070; // type:s32
MainMenuStateSel = 0x80095074; // type:s32
EditCelRotation = 0x80095078; // type:s32
EditCelX = 0x8009507C; // type:s32
EditCelY = 0x80095080; // type:s32
EditCelZ = 0x80095084; // type:s32
EditCel = 0x80095088; // type:s32
EditSemiTrans = 0x8009508C; // type:s32
EditMode = 0x80095090; // type:s32
FlipFlopState = 0x80095094; // type:s32
FlashCounter = 0x80095098; // type:s32
CursorR = 0x8009509C; // type:s16
CursorG = 0x8009509D; // type:s16
CursorB = 0x8009509E; // type:s16
ISOCamDist = 0x800950A0; // type:s32
ISOCamDir = 0x800950A4; // type:s32
ISOPan = 0x800950A8; // type:s32
ISOCamHeight = 0x800950AC; // type:s32
MINISOPAN = 0x800950B0; // type:s32
MAXISOPAN = 0x800950B4; // type:s32
ObjectXPos = 0x800950B8; // type:s32
ObjectYPos = 0x800950BC; // type:s32
ObjectZPos = 0x800950C0; // type:s32
TESTTKX = 0x800950C4; // type:s32
TESTTKY = 0x800950C8; // type:s32
TESTTKZ = 0x800950CC; // type:s32
TESTLC = 0x800950D0; // type:s32
TESTDIST = 0x800950D4; // type:s32
TESTALT = 0x800950D8; // type:s32
CameraXOffset = 0x800950DC; // type:s32
CameraYOffset = 0x800950E0; // type:s32
CameraZOffset = 0x800950E4; // type:s32
CamDepth = 0x800950E8; // type:s32
TESTCameraLock = 0x800950EC; // type:s32
TESTTargetLock = 0x800950F0; // type:s32
TESTLocaleLock = 0x800950F4; // type:s32
g_draw_iso_world = 0x800950F8; // type:s32
ISOHL_R = 0x800950FC; // type:s16
ISOHL_G = 0x800950FD; // type:s16
ISOHL_B = 0x800950FE; // type:s16
ISO_R = 0x800950FF; // type:s16
ISO_G = 0x80095100; // type:s16
ISO_B = 0x80095101; // type:s16
PauseMode = 0x80095154; // type:s32
poolsize = 0x80095158; // type:s32
NumF3Cels = 0x8009515C; // type:s32
NumF4Cels = 0x80095160; // type:s32
NumG3Cels = 0x80095164; // type:s32
NumG4Cels = 0x80095168; // type:s32
NumFT3Cels = 0x8009516C; // type:s32
NumFT4Cels = 0x80095170; // type:s32
NumGT3Cels = 0x80095174; // type:s32
NumGT4Cels = 0x80095178; // type:s32
NumISOCels = 0x8009517C; // type:s32
requestMovieFlag = 0x80095180; // type:s32
requestMovieIndex = 0x80095184; // type:s32
MovieOnFlag = 0x80095188; // type:s32
MovieSpeed = 0x8009518C; // type:s32
Ring_Buff = 0x80095190; // type:s32
StrWidth = 0x80095194; // type:s32
StrHeight = 0x80095198; // type:s32
AfterCount = 0x8009519C; // type:s32
CurrentFrame = 0x800951A0; // type:s32
LastFrame = 0x800951A4; // type:s32
movie_volume = 0x800951A8; // type:u16
VideoReady = 0x800951AC; // type:s32
XA_Flag = 0x800951B0; // type:s32